/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #533483 100%);
    color: #ffffff;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Background overlay */
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: -1;
}

/* Animated particles */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(45deg, #ff006e, #8338ec, #3a86ff);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    opacity: 0.7;
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 1s;
    animation-duration: 7s;
}

.particle:nth-child(3) {
    top: 80%;
    left: 20%;
    animation-delay: 2s;
    animation-duration: 9s;
}

.particle:nth-child(4) {
    top: 30%;
    left: 70%;
    animation-delay: 3s;
    animation-duration: 6s;
}

.particle:nth-child(5) {
    top: 70%;
    left: 90%;
    animation-delay: 4s;
    animation-duration: 8s;
}

.particle:nth-child(6) {
    top: 10%;
    left: 50%;
    animation-delay: 5s;
    animation-duration: 7s;
}

.particle:nth-child(7) {
    top: 50%;
    left: 30%;
    animation-delay: 6s;
    animation-duration: 9s;
}

.particle:nth-child(8) {
    top: 90%;
    left: 60%;
    animation-delay: 7s;
    animation-duration: 6s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.7;
    }
    25% {
        transform: translateY(-20px) translateX(10px);
        opacity: 1;
    }
    50% {
        transform: translateY(-10px) translateX(-15px);
        opacity: 0.5;
    }
    75% {
        transform: translateY(-30px) translateX(5px);
        opacity: 0.8;
    }
}

/* 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: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(45deg, #ff006e, #8338ec, #3a86ff, #06ffa5);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    margin-bottom: 1rem;
    letter-spacing: 3px;
    text-shadow: 0 0 30px rgba(255, 0, 110, 0.5);
    position: relative;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.logo-divider {
    width: 120px;
    height: 6px;
    background: linear-gradient(90deg, #ff006e, #8338ec, #3a86ff, #06ffa5);
    margin: 0 auto 2rem;
    border-radius: 3px;
    box-shadow: 0 0 20px rgba(255, 0, 110, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 0, 110, 0.5);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 0, 110, 0.8);
    }
}

/* Main heading */
.main-heading {
    font-family: 'Exo 2', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(131, 56, 236, 0.5);
    letter-spacing: 2px;
}

.description {
    font-size: 1.3rem;
    color: #b8b8b8;
    margin-bottom: 3rem;
    font-weight: 400;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Countdown timer */
.countdown-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.countdown-item {
    text-align: center;
    min-width: 100px;
}

.countdown-number {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ff006e, #8338ec);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background: rgba(0, 0, 0, 0.4);
    padding: 1.5rem 1rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 0, 110, 0.3);
    backdrop-filter: blur(15px);
    margin-bottom: 0.5rem;
    min-width: 100px;
    box-shadow: 0 8px 32px rgba(255, 0, 110, 0.2);
    position: relative;
    overflow: hidden;
}

.countdown-number::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.countdown-number:hover::before {
    left: 100%;
}

.countdown-label {
    font-size: 1rem;
    color: #b8b8b8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Rajdhani', sans-serif;
}

.countdown-separator {
    font-size: 2.5rem;
    color: #ff006e;
    font-weight: 700;
    margin-top: -1rem;
    text-shadow: 0 0 15px rgba(255, 0, 110, 0.5);
    animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0.3;
    }
}

/* Email subscription */
.email-form {
    margin-bottom: 2rem;
}

.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: 1.1rem;
    padding: 1.2rem 1.5rem;
    border-radius: 50px 0 0 50px !important;
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
}

.email-input::placeholder {
    color: #b8b8b8;
}

.email-input:focus {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: #ff006e !important;
    box-shadow: 0 0 25px rgba(255, 0, 110, 0.4) !important;
    outline: none !important;
}

.notify-btn {
    background: linear-gradient(45deg, #ff006e, #8338ec) !important;
    border: none !important;
    border-radius: 0 50px 50px 0 !important;
    padding: 1.2rem 2rem;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 0, 110, 0.3);
    font-family: 'Rajdhani', sans-serif;
    position: relative;
    overflow: hidden;
}

.notify-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.notify-btn:hover::before {
    left: 100%;
}

.notify-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 0, 110, 0.5);
    background: linear-gradient(45deg, #8338ec, #ff006e) !important;
}

.current-email {
    margin-top: 1rem;
}

.email-display {
    color: #06ffa5;
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    background: rgba(6, 255, 165, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    border: 1px solid rgba(6, 255, 165, 0.3);
    display: inline-block;
}

/* Social media icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ff006e, #8338ec);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.social-icon:hover::before {
    opacity: 1;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    border-color: #ff006e;
    box-shadow: 0 10px 25px rgba(255, 0, 110, 0.4);
}

.social-icon i {
    transition: transform 0.3s ease;
}

.social-icon:hover i {
    transform: scale(1.2);
}

/* Responsive design */
@media (max-width: 768px) {
    .company-name {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .main-heading {
        font-size: 2rem;
    }
    
    .description {
        font-size: 1.1rem;
    }
    
    .countdown-container {
        gap: 1rem;
    }
    
    .countdown-number {
        font-size: 2rem;
        padding: 1rem 0.5rem;
        min-width: 70px;
    }
    
    .countdown-separator {
        font-size: 1.8rem;
    }
    
    .social-icons {
        gap: 1.5rem;
    }
    
    .social-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .company-name {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .main-heading {
        font-size: 1.5rem;
    }
    
    .countdown-container {
        gap: 0.5rem;
    }
    
    .countdown-number {
        font-size: 1.5rem;
        padding: 0.8rem 0.3rem;
        min-width: 60px;
    }
    
    .countdown-separator {
        font-size: 1.5rem;
    }
    
    .email-input {
        font-size: 1rem;
        padding: 1rem 1.2rem;
    }
    
    .notify-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .social-icons {
        gap: 1rem;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* Custom scrollbar */
html {
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #ff006e, #8338ec);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #8338ec, #ff006e);
} 