/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #00d4ff;
    --secondary-color: #0099cc;
    --accent-color: #a78bfa;
    --bg-dark: #0a0e1a;
    --bg-darker: #050711;
    --bg-card: rgba(10, 14, 26, 0.95);
    --complementary: #1a1f3a;
    --space-purple: #2d1b4e;
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --gradient-1: linear-gradient(135deg, #00d4ff, #0099cc);
    --gradient-2: linear-gradient(135deg, #0a0e1a 0%, #1a1f3a 50%, #2d1b4e 100%);
    --color-neutral-950: #0a0a0a;
    --color-neutral-100: #f5f5f5;
    --color-neutral-900: #171717;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: linear-gradient(180deg, #0a0e1a 0%, #1a1f3a 60%, #2d1b4e 100%);
    background-attachment: fixed;
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,.03) 2px, rgba(255,255,255,.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255,255,255,.03) 2px, rgba(255,255,255,.03) 4px),
        repeating-linear-gradient(45deg, transparent, transparent 5px, rgba(0,0,0,.05) 5px, rgba(0,0,0,.05) 10px),
        repeating-linear-gradient(-45deg, transparent, transparent 5px, rgba(0,0,0,.05) 5px, rgba(0,0,0,.05) 10px);
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
}

/* Video Background */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

#bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.60;
    filter: brightness(0.75) contrast(1.1) saturate(0.95) blur(0.5px);
}

.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 14, 26, 0.70) 0%, rgba(26, 31, 58, 0.85) 50%, rgba(45, 27, 78, 0.92) 100%);
    mix-blend-mode: normal;
    pointer-events: none;
}

/* Static concrete/gravel texture overlay */
.concrete-texture {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background-image: 
        radial-gradient(circle at 20% 50%, transparent 0%, rgba(0,0,0,0.1) 100%),
        radial-gradient(circle at 80% 80%, transparent 0%, rgba(0,0,0,0.1) 100%),
        radial-gradient(at 40% 20%, rgba(255,255,255,0.02) 0%, transparent 50%),
        radial-gradient(at 60% 70%, rgba(255,255,255,0.02) 0%, transparent 50%);
    opacity: 0.6;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
header {
    text-align: center;
    padding: 2rem 0;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    animation: fadeInDown 1s ease-out;
}

.logo-icon {
    width: 80px;
    height: 80px;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5rem;
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.6));
}

/* Main Content */
main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.content-wrapper {
    max-width: 900px;
    width: 100%;
    animation: fadeIn 1.5s ease-out;
}

/* Tagline with Glitch Effect */
.tagline {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin: 2rem 0;
    position: relative;
    color: var(--primary-color);
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.glitch {
    position: relative;
}

/* Divider */
.divider {
    height: 2px;
    background: var(--primary-color);
    margin: 2rem auto;
    max-width: 200px;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
}

/* Description */
.description {
    font-size: 1.3rem;
    text-align: center;
    color: var(--text-primary);
    line-height: 1.8;
    margin: 2rem 0;
    font-weight: 300;
    opacity: 0.9;
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}
.feature-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.2);
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    color: var(--primary-color);
    filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.4));
}

.feature-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-primary);
    font-size: 1rem;
    opacity: 0.85;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin: 4rem 0;
}

.coming-soon {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
}

/* Countdown */
.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.countdown-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    background: var(--bg-card);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    width: 120px;
    min-width: 120px;
    max-width: 120px;
    display: inline-block;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0, 212, 255, 0.1);
}

.countdown-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    letter-spacing: 0.2rem;
}

/* Notify Form */
.notify-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 2rem auto;
    flex-wrap: wrap;
    justify-content: center;
}

.notify-form input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid rgba(0, 212, 255, 0.25);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.notify-form input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.15);
}

.notify-form input::placeholder {
    color: var(--text-secondary);
}

.btn-primary {
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    border: none;
    border-radius: 8px;
    color: #0a0a0a;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.05rem;
}

.btn-primary:hover {
    background: rgba(0, 212, 255, 0.9);
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
    transform: translateY(-2px);
}

/* Quote Section */
.quote-section {
    margin: 4rem 0;
    text-align: center;
}

blockquote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text-primary);
    position: relative;
    padding: 2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.85;
}

blockquote::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-color);
    position: absolute;
    top: -1rem;
    left: 0;
    opacity: 0.2;
}

/* Footer */
footer {
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.social-links a {
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

.copyright {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-text {
        font-size: 2.5rem;
        letter-spacing: 0.3rem;
    }

    .logo-icon {
        width: 60px;
        height: 60px;
    }

    .tagline {
        font-size: 2rem;
    }

    .description {
        font-size: 1.1rem;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .countdown {
        gap: 1rem;
    }

    .countdown-value {
        font-size: 2rem;
        padding: 0.8rem 1rem;
        min-width: 80px;
    }

    .notify-form {
        flex-direction: column;
        align-items: stretch;
    }

    .notify-form input,
    .btn-primary {
        min-width: 100%;
    }

    blockquote {
        font-size: 1.2rem;
        padding: 1rem;
    }

    .coming-soon {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }

    .logo-text {
        font-size: 2rem;
        letter-spacing: 0.2rem;
    }

    .tagline {
        font-size: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .countdown-value {
        font-size: 1.5rem;
    }
}
