/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    overflow-x: hidden;
    position: relative;
}

/* Background overlay */
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

/* Fade-in animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out forwards;
}

.logo-section {
    animation-delay: 0.2s;
}

.heading-section {
    animation-delay: 0.4s;
}

.countdown-section {
    animation-delay: 0.6s;
}

.email-section {
    animation-delay: 0.8s;
}

.social-section {
    animation-delay: 1s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Company name/Logo */
.company-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.logo-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #00ffff, #ff6b35);
    margin: 0 auto 2rem;
    border-radius: 2px;
}

/* Main heading */
.main-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(255, 107, 53, 0.3);
}

.description {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 3rem;
    font-weight: 300;
    line-height: 1.6;
}

/* Countdown timer */
.countdown-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.countdown-item {
    text-align: center;
    min-width: 80px;
}

.countdown-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #00ffff;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem 0.5rem;
    border-radius: 10px;
    border: 2px solid rgba(0, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    margin-bottom: 0.5rem;
    min-width: 80px;
}

.countdown-label {
    font-size: 0.9rem;
    color: #cccccc;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-separator {
    font-size: 2rem;
    color: #ff6b35;
    font-weight: 700;
    margin-top: -1rem;
}

/* Email subscription */
.email-form {
    margin-bottom: 3rem;
}

.email-input {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
    font-size: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 50px 0 0 50px !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.email-input::placeholder {
    color: #cccccc;
}

.email-input:focus {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: #00ffff !important;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3) !important;
    outline: none !important;
}

.notify-btn {
    background: linear-gradient(45deg, #00ffff, #ff6b35) !important;
    border: none !important;
    border-radius: 0 50px 50px 0 !important;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    text-transform: capitalize;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 255, 255, 0.3);
}

.notify-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 255, 0.4);
    background: linear-gradient(45deg, #ff6b35, #00ffff) !important;
}

/* Social media icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-icon:hover {
    background: linear-gradient(45deg, #00ffff, #ff6b35);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.4);
    color: #ffffff;
}

/* Responsive design */
@media (max-width: 768px) {
    .company-name {
        font-size: 2.5rem;
    }
    
    .main-heading {
        font-size: 1.8rem;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .countdown-container {
        gap: 0.5rem;
    }
    
    .countdown-number {
        font-size: 1.8rem;
        padding: 0.8rem 0.3rem;
        min-width: 60px;
    }
    
    .countdown-label {
        font-size: 0.8rem;
    }
    
    .countdown-separator {
        font-size: 1.5rem;
        margin-top: -0.5rem;
    }
    
    .social-icons {
        gap: 1rem;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .company-name {
        font-size: 2rem;
    }
    
    .main-heading {
        font-size: 1.5rem;
    }
    
    .countdown-container {
        gap: 0.3rem;
    }
    
    .countdown-number {
        font-size: 1.5rem;
        padding: 0.6rem 0.2rem;
        min-width: 50px;
    }
    
    .countdown-separator {
        font-size: 1.2rem;
        margin-top: -0.3rem;
    }
    
    .email-input {
        border-radius: 25px 0 0 25px !important;
        padding: 0.8rem 1rem;
    }
    
    .notify-btn {
        border-radius: 0 25px 25px 0 !important;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Additional animations */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.countdown-number {
    animation: pulse 2s infinite;
}

.countdown-item:nth-child(1) .countdown-number {
    animation-delay: 0s;
}

.countdown-item:nth-child(3) .countdown-number {
    animation-delay: 0.5s;
}

.countdown-item:nth-child(5) .countdown-number {
    animation-delay: 1s;
}

.countdown-item:nth-child(7) .countdown-number {
    animation-delay: 1.5s;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #00ffff, #ff6b35);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #ff6b35, #00ffff);
} 