/* ============================================
   RESET & BASE STYLES
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #ff0000;
    --dark-red: #cc0000;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --text-light: #ffffff;
    --text-gray: #cccccc;
    --text-dark: #888888;
    --border-color: #333333;
    --overlay-dark: rgba(0, 0, 0, 0.7);
    --overlay-darker: rgba(0, 0, 0, 0.85);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--darker-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--overlay-darker);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
}

.nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left .logo-text {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    color: var(--primary-red);
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-red);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-red);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary-red);
    background-color: transparent;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    display: inline-block;
    text-align: center;
}

.btn:hover {
    background-color: var(--primary-red);
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.btn-influencers {
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--text-light);
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    color: var(--primary-red);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, var(--overlay-darker) 0%, rgba(0, 0, 0, 0.5) 50%, var(--overlay-darker) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.logo-container {
    margin-bottom: 2rem;
}

.logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 20px rgba(255, 0, 0, 0.5));
}

.logo-text-fallback {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    color: var(--primary-red);
    text-transform: uppercase;
    text-shadow: 0 0 30px rgba(255, 0, 0, 0.8);
    margin-top: 1rem;
}

.hero-info {
    margin-top: 2rem;
}

.release-date-container {
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.release-date-label {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-gray);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.05em;
}

.release-date-beta {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary-red);
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.8), 2px 2px 8px rgba(0, 0, 0, 0.9);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(255, 0, 0, 0.8), 2px 2px 8px rgba(0, 0, 0, 0.9);
    }
    50% {
        text-shadow: 0 0 30px rgba(255, 0, 0, 1), 0 0 40px rgba(255, 0, 0, 0.6), 2px 2px 8px rgba(0, 0, 0, 0.9);
    }
}

.cta-buttons {
    margin-bottom: 3rem;
}

.btn-beta {
    font-size: 1.2rem;
    padding: 1rem 2.5rem;
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.btn-beta:hover {
    background-color: var(--dark-red);
    border-color: var(--dark-red);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.5);
}

.btn-large {
    font-size: 1.3rem;
    padding: 1.2rem 3rem;
}

.platforms {
    margin-top: 3rem;
}

.platforms-text {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.platform-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.platform-link {
    color: var(--text-light);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.platform-link:hover {
    color: var(--primary-red);
    transform: scale(1.1);
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
    padding: 5rem 2rem;
    position: relative;
}

.section.about {
    background-color: var(--dark-bg);
}

.section.features {
    background-color: var(--darker-bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section h2 {
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.section p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-gray);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* ============================================
   FEATURES GRID
   ============================================ */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background-color: var(--dark-bg);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.2);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.feature-card p {
    font-size: 1rem;
    text-align: left;
    color: var(--text-gray);
    line-height: 1.6;
}

/* ============================================
   DOWNLOAD SECTION
   ============================================ */

.section.download {
    background-color: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
}

.section.download .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    gap: 1.5rem;
}

.section.download h2 {
    margin-bottom: 0;
    font-size: 3.5rem;
    letter-spacing: 0.15em;
}

.section.download > .container > p:first-of-type {
    margin-bottom: 0;
    font-size: 1.1rem;
    max-width: 600px;
}

.section.download .btn-beta {
    margin: 0;
    display: inline-block;
    min-width: 320px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.download-note {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-gray);
    font-style: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    max-width: 600px;
}

.download-note::before {
    content: '⚠️';
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background-color: var(--darker-bg);
    border-top: 1px solid var(--border-color);
    padding: 3rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo p {
    color: var(--text-dark);
    font-size: 0.9rem;
    text-align: left;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-red);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .nav-right {
        flex-direction: column;
        gap: 1rem;
    }

    .logo-text-fallback {
        font-size: 2.5rem;
    }

    .release-date-label {
        font-size: 1.1rem;
    }

    .release-date-beta {
        font-size: 1.8rem;
    }

    .section h2 {
        font-size: 2rem;
    }

    .section {
        padding: 3rem 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-logo p {
        text-align: center;
    }

    .hero {
        min-height: 500px;
    }

    .btn-beta {
        font-size: 1rem;
        padding: 0.8rem 2rem;
    }

    .btn-large {
        font-size: 1.1rem;
        padding: 1rem 2rem;
    }

    .section.download .btn-beta {
        min-width: auto;
        width: 100%;
        max-width: 300px;
    }

    .section.download {
        min-height: 50vh;
    }
}

@media (max-width: 480px) {
    .logo-text-fallback {
        font-size: 2rem;
    }

    .release-date-label {
        font-size: 0.95rem;
    }

    .release-date-beta {
        font-size: 1.5rem;
    }

    .section h2 {
        font-size: 1.5rem;
    }

    .section p {
        font-size: 1rem;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

a:focus,
button:focus {
    outline: 2px solid var(--primary-red);
    outline-offset: 2px;
}

/* Skip to main content for screen readers */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-red);
    color: var(--text-light);
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

