* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    z-index: 1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') repeat;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(10px, 10px); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(6, 231, 141, 0.1) 0%, rgba(64, 70, 246, 0.1) 50%, transparent 70%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.logo {
    margin-bottom: 2rem;
}

.brand-name {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(45deg, #00ff99, #ff0055, #0099ff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(0,255,153,0.5);
}

.bigg {
    color: #ff0055;
    text-shadow: 0 0 20px rgba(255,0,85,0.8);
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.tagline {
    font-size: 1rem;
    color: #00ff99;
    margin-top: -10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-headline {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subheadline {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #cccccc;
    font-weight: 400;
}

.waitlist-form {
    margin-bottom: 1rem;
}

.form-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.form-group input {
    padding: 15px 20px;
    border: 2px solid #333;
    border-radius: 50px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 1rem;
    width: 300px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #00ff99;
    box-shadow: 0 0 20px rgba(0,255,153,0.3);
}

.form-group input::placeholder {
    color: #aaa;
}

.cta-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-btn.primary {
    background: linear-gradient(45deg, #3f59ed, #00ff99);
    color: #fff;
    box-shadow: 0 5px 20px rgba(255,0,85,0.3);
}

.cta-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,0,85,0.4);
}

.cta-btn.secondary {
    background: linear-gradient(45deg, #0099ff, #00ff99);
    color: #fff;
    box-shadow: 0 5px 20px rgba(0,153,255,0.3);
}

.cta-btn.secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,153,255,0.4);
}

.form-note {
    color: #00ff99;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Floating Animation */
.hero-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.floating-icon {
    position: absolute;
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
}

.icon-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.icon-2 {
    top: 30%;
    right: 15%;
    animation-delay: 1.5s;
}

.icon-3 {
    bottom: 30%;
    left: 15%;
    animation-delay: 3s;
}

.icon-4 {
    bottom: 20%;
    right: 10%;
    animation-delay: 4.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #00ff99, #0099ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* What's Coming Section */
.whats-coming {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    background: rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(0,255,153,0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: #00ff99;
    box-shadow: 0 10px 30px rgba(0,255,153,0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #00ff99;
}

.feature-item p {
    color: #cccccc;
    line-height: 1.6;
}

/* Why Love Section */
.why-love {
    padding: 80px 0;
    background: #0a0a0a;
}

.love-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.love-item {
    background: linear-gradient(135deg, rgba(255,0,85,0.1), rgba(0,153,255,0.1));
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255,0,85,0.2);
    transition: all 0.3s ease;
}

.love-item:hover {
    transform: translateY(-5px);
    border-color: #ff0055;
    box-shadow: 0 10px 30px rgba(255,0,85,0.2);
}

.love-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ff0055, #0099ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: #fff;
}

.love-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ff0055;
}

.love-item p {
    color: #cccccc;
}

/* Early Bird Section */
.early-bird {
    padding: 80px 0;
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #00ff99;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
    background: rgba(0,255,153,0.1);
}

.benefit-icon {
    font-size: 3rem;
    min-width: 60px;
}

.benefit-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #00ff99;
}

.benefit-content p {
    color: #cccccc;
}

/* Countdown Section */
.countdown {
    padding: 80px 0;
    background: #0a0a0a;
    text-align: center;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.time-unit {
    background: linear-gradient(135deg, #ff0055, #0099ff);
    padding: 2rem;
    border-radius: 15px;
    min-width: 120px;
    box-shadow: 0 5px 20px rgba(255,0,85,0.3);
}

.time-value {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Orbitron', monospace;
    color: #fff;
}

.time-label {
    display: block;
    font-size: 1rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.launch-date {
    font-size: 1.5rem;
    color: #00ff99;
    font-weight: 600;
}

/* Social Proof Section */
.social-proof {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    text-align: center;
}

.proof-content h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #fff;
}

.highlight {
    color: #00ff99;
    font-weight: 700;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #E4405F, #C13584);
    border-color: #E4405F;
}

.social-link.youtube:hover {
    background: #FF0000;
    border-color: #FF0000;
}

.social-link.whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
}

/* Final CTA Section */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    text-align: center;
}

.cta-headline {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ff0055, #00ff99);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtext {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2rem;
}

.reminder-options {
    margin-top: 2rem;
}

.reminder-options p {
    color: #cccccc;
    margin-bottom: 1rem;
}

.reminder-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.reminder-btn {
    padding: 10px 20px;
    border: 1px solid #333;
    border-radius: 25px;
    background: rgba(255,255,255,0.05);
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.reminder-btn.whatsapp:hover {
    border-color: #25D366;
    background: rgba(37,211,102,0.2);
}

.reminder-btn.email:hover {
    border-color: #0099ff;
    background: rgba(0,153,255,0.2);
}

/* Footer */
.footer {
    padding: 2rem 0;
    background: #000;
    text-align: center;
    border-top: 1px solid #333;
}

.footer p {
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-headline {
        font-size: 2rem;
    }
    
    .brand-name {
        font-size: 2rem;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .form-group input {
        width: 100%;
        max-width: 300px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-headline {
        font-size: 2rem;
    }
    
    .countdown-timer {
        gap: 1rem;
    }
    
    .time-unit {
        min-width: 80px;
        padding: 1rem;
    }
    
    .time-value {
        font-size: 2rem;
    }
    
    .benefits-list {
        gap: 1rem;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .floating-icon {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 0 10px;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .features-grid,
    .love-features {
        grid-template-columns: 1fr;
    }
}