:root {
    --edc-orange: #f67d28;
    --edc-dark-orange: #e56e1b;
    --edc-black: #212121;
    --edc-gray: #f5f5f5;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--edc-gray);
    overflow-x: hidden;
}

.countdown-section {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(33,33,33,0.80) 0%, rgba(33,33,33,0.70) 100%);
    color: white;
    position: relative;
}

.flame-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMDAgMTAwIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48cGF0aCBmaWxsPSJyZ2JhKDI0NiwgMTI1LCA0MCwgMC4wNSkiIGQ9Ik01MCwxMCBDNjUsMjAgODAsMTUgODUsMzUgQzkwLDYwIDgwLDgwIDUwLDkwIEMyMCw4MCAxMCw2MCAxNSwzNSBDMjAsMTUgMzUsMjAgNTAsMTAgWiIvPjwvc3ZnPg==');
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.logo {
    max-width: 180px;
    margin-bottom: 2rem;
    transition: all 0.5s ease;
}

/* Logo animations */
.logo-pulse {
    animation: logoPulse 2s infinite alternate;
}

@keyframes logoPulse {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 0px rgba(246, 125, 40, 0.7));
    }
    100% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 15px rgba(246, 125, 40, 0.7));
    }
}

.logo-float {
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.countdown-container {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    z-index: 1;
    position: relative;
}

.countdown-title {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.countdown-subtitle {
    color: var(--edc-orange);
    font-weight: 600;
    margin-bottom: 2rem;
}

.countdown-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--edc-orange);
    margin-bottom: 0;
    line-height: 1;
}

.countdown-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-top: 0.5rem;
    opacity: 0.8;
}

.social-icons {
    margin-top: 3rem;
}

.social-icons a {
    color: white;
    font-size: 1.5rem;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: var(--edc-orange);
    transform: translateY(-3px);
}

.footer {
    background-color: var(--edc-black);
    color: white;
    padding: 1.5rem 0;
}

.footer a {
    color: var(--edc-orange);
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

@media (max-width: 767.98px) {
    .countdown-number {
        font-size: 2rem;
    }
    
    .countdown-label {
        font-size: 0.8rem;
    }
}