* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    color: white;
}

#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
    object-fit: cover;
    object-position: center center;
    z-index: -2;
    will-change: transform;
}

#bg-video::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(201, 54, 37, 0.1) 0%, transparent 50%);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 11, 11, 0.7);
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(15px, 4vw, 20px);
}

/* Logo */
.logo {
    position: absolute;
    top: clamp(20px, 4vh, 30px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.logo-text {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    background: linear-gradient(90deg, #c93625, #ffe400);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: clamp(100px, 20vh, 120px);
}

.headline {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: #fff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subheadline {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 300;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Countdown */
.countdown {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 1.5rem 1rem;
    min-width: 120px;
}

.number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(90deg, #c93625, #ffe400);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Subscribe Form */
.subscribe {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.subscribe input {
    flex: 1;
    min-width: 250px;
    min-height: 48px;
    padding: 1.2rem 1.5rem;
    border: none;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1rem;
    color: white;
    font-family: inherit;
}

.subscribe input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.subscribe input:focus {
    outline: none;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

.subscribe button {
    padding: 1.2rem 2.5rem;
    min-height: 48px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(90deg, #c93625, #ffe400);
    color: #000;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(201, 54, 37, 0.4);
}

.subscribe button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201, 54, 37, 0.6);
}

/* Contact Section */
.contact {
    text-align: center;
    padding-bottom: 25px;
}

.contact h3 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 600;
}

.contact-items {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.2rem;
    opacity: 0.9;
}

.contact-item i {
    font-size: 1.5rem;
    color: #ffe400;
}

/* Footer */
footer {
    padding: 2rem 0;
    text-align: center;
    opacity: 0.7;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.fade-in:nth-child(1) { animation-delay: 0.2s; }
.fade-in:nth-child(2) { animation-delay: 0.4s; }
.fade-in:nth-child(3) { animation-delay: 0.6s; }
.fade-in:nth-child(4) { animation-delay: 0.8s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .countdown {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .countdown-item {
        min-width: auto;
        padding: 1rem;
    }
    
    .subscribe {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .subscribe input {
        min-width: 100%;
        max-width: 350px;
    }
    
    .contact-items {
        flex-direction: column;
        gap: 1.5rem;
        font-size: 1.1rem;
    }
    
    .contact h3 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .contact-item {
        font-size: 1.1rem;
        gap: 0.75rem;
    }
    
    .contact-item i {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }
    
    .headline {
        font-size: clamp(2rem, 10vw, 3rem);
        line-height: 1.1;
        margin-bottom: 1rem;
    }
    
    .subheadline {
        font-size: 1.1rem;
        line-height: 1.4;
        margin-bottom: 2rem;
    }
    
    .countdown-item .number {
        font-size: 2.5rem;
    }
    
    .countdown-item .label {
        font-size: 0.8rem;
    }
    
    .contact h3 {
        font-size: 1.8rem;
    }
    
    .contact-item {
        font-size: 1rem;
        gap: 0.75rem;
        padding: 0.5rem 0;
    }
    
    .contact-item i {
        font-size: 1.2rem;
        min-width: 1.5rem;
    }
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 1.5rem;
    }

    /* Reduced motion */
    @media (prefers-reduced-motion: reduce) {
        .fade-in {
            animation: none;
            opacity: 1;
            transform: none;
        }
    }
}


.white {
    color: #fff;
    text-decoration: none;
}