/* CSS Custom Properties */
:root {
    /* Brand Colors */
    --color-primary: #ffffff;
    --color-secondary: #6b7280;
    --color-accent: #f4d03f;
    --color-background: #0d0d0d;
    --color-background-secondary: #111111;
    --color-background-tertiary: #151515;
    --color-background-quaternary: #1a1a1a;
    --color-text: #ffffff;
    --color-text-muted: #cccccc;
    --color-text-subtle: rgba(255, 255, 255, 0.7);
    --color-text-faint: rgba(255, 255, 255, 0.6);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;

    /* Border Radius */
    --radius-sm: 5px;
    --radius-md: 10px;
    --radius-lg: 15px;
    --radius-xl: 20px;
    --radius-full: 50px;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.4);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.5);

    /* Opacity Levels */
    --opacity-glass: rgba(255, 255, 255, 0.05);
    --opacity-glass-hover: rgba(255, 255, 255, 0.1);
    --opacity-glass-strong: rgba(255, 255, 255, 0.2);
    --opacity-border: rgba(255, 255, 255, 0.1);
    --opacity-border-hover: rgba(255, 255, 255, 0.3);
}

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

/* Accessibility - Visually hidden content */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Honeypot field for spam prevention */
.honeypot {
    position: absolute;
    left: -5000px;
}

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -60px;
    left: 6px;
    background: var(--color-accent);
    color: #000;
    padding: 8px;
    text-decoration: none;
    border-radius: var(--radius-sm);
    z-index: 9999;
    font-weight: bold;
}

.skip-link:focus {
    top: 6px;
}

/* Focus indicators for better accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 3px solid var(--color-accent);
    outline-offset: 2px;
}

/* Fallbacks for backdrop-filter */
@supports not (backdrop-filter: blur(10px)) {
    header {
        background: rgba(13, 13, 13, 0.98);
    }
}

img {
    max-width: 100%;
    height: auto;
}

html {
    background-color: var(--color-background);
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--color-text);
    background: linear-gradient(135deg, var(--color-background-secondary) 0%, var(--color-background-tertiary) 50%, var(--color-background-quaternary) 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(120, 120, 120, 0.3);
    z-index: 1000;
    padding: var(--spacing-md) 0;
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-center {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.header-logo {
    margin-right: var(--spacing-sm);
    display: flex;
    align-items: center;
}

.header-logo img {
    height: 50px;
    width: auto;
    max-width: none;
    filter: drop-shadow(var(--shadow-sm));
    object-fit: contain;
}

.header-social {
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
}

.header-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: var(--radius-full);
    background: var(--opacity-glass-hover);
    color: var(--color-text);
    text-decoration: none;
    transition: all 0.3s ease;
}

.header-social-link:hover {
    background: var(--opacity-glass-strong);
    transform: translateY(-1px);
}

.steam-wishlist {
    font-size: 1rem;
    padding: 1rem 1.5rem;
    white-space: nowrap;
    background: var(--color-accent) !important;
    color: #2c3e50 !important;
    box-shadow: 0 4px 15px rgba(244, 208, 63, 0.3) !important;
}

.steam-wishlist:hover {
    background: #f7dc6f !important;
    color: #2c3e50 !important;
    box-shadow: 0 6px 20px rgba(244, 208, 63, 0.4) !important;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 40px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1300px;
    display: block;
    text-align: center;
}

.hero-text-content {
    display: contents;
    position: static;
    overflow: visible;
    padding: 0;
}

/* Ensure desktop layout is unaffected */
@media (min-width: 769px) {
    .hero-video {
        position: relative;
        z-index: auto;
        width: auto;
        background: transparent;
        margin-bottom: var(--spacing-xl);
    }
}

.hero-bg-video {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    object-fit: cover;
    pointer-events: none;
    filter: brightness(0.8);
}

.hero-text-bg-video {
    display: none;
}

.hero-video {
    width: 100%;
    margin-bottom: var(--spacing-xl);
}

.hero-logo {
    margin-bottom: 1.5rem;
}

.hero-logo img {
    height: clamp(80px, 15vw, 200px);
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
}

.hero-logo-small img {
    height: clamp(120px, 8vw, 240px);
    width: auto;
}

.hero-coming-soon {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 400;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-align: center;
}



.hero-subtitle {
    font-size: 1.5rem;
    color: var(--color-text);
    margin-bottom: var(--spacing-lg);
    font-weight: 300;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    align-items: center; 
}


.hero-email-form {
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
    flex-wrap: wrap;
}

.hero-email-form input {
    padding: var(--spacing-md) var(--spacing-lg);
    border: 1px solid var(--opacity-border-hover);
    border-radius: var(--radius-full);
    background: #000000;
    color: var(--color-text);
    font-size: 1rem;
    backdrop-filter: blur(10px);
    min-width: 250px;
    transition: all 0.3s ease;
}

.hero-email-form input::placeholder {
    color: var(--color-text-subtle);
}

.hero-email-form input:focus {
    outline: none;
    background: #000000;
    border-color: var(--color-accent);
    transform: translateY(-1px);
    box-shadow: 0 0 10px rgba(244, 208, 63, 0.3);
}

.hero-email-form button {
    padding: var(--spacing-md) var(--spacing-lg);
    text-align: center;
    white-space: nowrap;
    font-weight: 600;
}

.hero-email-form button:hover {
    background: #ffffff !important;
    border-color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(244, 208, 63, 0.4);
}

/* Unified Button System */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-xl);
    border: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    font-family: var(--font-primary);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--opacity-glass-strong), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-background);
    box-shadow: none;
    font-weight: 400;
}

.btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-text);
    font-weight: 300;
}

.btn-secondary:hover {
    background: var(--color-text);
    color: var(--color-background);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--opacity-border-hover);
    font-weight: 300;
}

.btn-outline:hover {
    background: var(--opacity-glass-hover);
    border-color: var(--color-text);
}

/* Section Styles */
section {
    padding: var(--spacing-2xl) 0;
    position: relative;
}

section h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: var(--spacing-xl);
    color: var(--color-text);
    letter-spacing: 0.02em;
}

/* About Section */
.about {
    background: rgba(15, 15, 15, 0.7);
}

.dev-notice {
    margin-top: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: rgba(244, 208, 63, 0.1);
    border: 1px solid rgba(244, 208, 63, 0.3);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(5px);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.dev-notice p {
    margin: 0;
    color: var(--color-text);
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: center;
}

.dev-notice strong {
    color: var(--color-accent);
}

.about img {
    height: 150px;
    width: auto;
    max-width: none;
    display: block;
    margin: 1rem auto;
    object-fit: contain;
}

.lead {
    font-size: 1.25rem;
    text-align: center;
    color: var(--color-text);
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
    line-height: 1.6;
    font-weight: 300;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature {
    background: var(--opacity-glass);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    text-align: center;
    border: 1px solid var(--opacity-border);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature:hover {
    transform: translateY(-5px);
    border-color: var(--opacity-border-hover);
    box-shadow: var(--shadow-lg);
    background: var(--opacity-glass-hover);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.feature p {
    color: #9ca3af;
    line-height: 1.6;
}

/* AI Statement Section */
.ai-statement {
    background: rgba(17, 17, 17, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ai-statement h2 {
    margin-bottom: 2rem;
}

.ai-statement .lead {
    margin-bottom: 1.5rem;
}

.ai-statement .lead:last-child {
    margin-bottom: 0;
}

.ai-statement strong {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1em;
}

/* Media Section */
.media {
    background: linear-gradient(135deg, rgba(11, 11, 11, 0.9), rgba(17, 17, 17, 0.9));
}

.video-wrapper {
    position: relative;
    width: 960px;
    height: 540px;
    max-width: 100%;
    margin: 0 auto var(--spacing-xl);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-thumbnail:hover {
    transform: scale(1.02);
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-xl);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 48px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
}

.video-thumbnail:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

.screenshots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    justify-content: center;
}

.screenshot {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
}

.screenshot:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: var(--shadow-xl);
}


.screenshot img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    box-sizing: border-box;
}


/* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: normal;
    line-height: 1;
    transition: all 0.3s ease;
    z-index: 1002;
}

.lightbox-close:hover {
    background: rgba(0, 0, 0, 0.9);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

.lightbox img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    z-index: 1001;
}

.lightbox-nav:hover {
    background: rgba(0, 0, 0, 0.9);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}

/* Credits Lightbox Styles */
.credits-content {
    max-width: 800px;
    max-height: 90vh;
    background: rgba(13, 13, 13, 0.95);
    border-radius: var(--radius-md);
    border: 1px solid var(--opacity-border);
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.credits-text {
    padding: 2rem;
    max-height: 80vh;
    overflow-y: auto;
}

.credits-text h2 {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: 2rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
}

.credits-text h3 {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.credits-text h4 {
    color: #f4d03f;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    margin-top: 1.5rem;
}

.credits-text p {
    color: #e8e8e8;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.credits-text ul {
    color: #e8e8e8;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.credits-text li {
    margin-bottom: 0.5rem;
}

.credit-item {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.credits-footer {
    background: rgba(244, 208, 63, 0.1);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #f4d03f;
    margin-top: 2rem;
    font-style: italic;
}

/* Credits Link */
.credits-link {
    color: #f4d03f;
    text-decoration: underline;
    cursor: pointer;
    transition: all 0.3s ease;
}

.credits-link:hover {
    color: #f7dc6f;
    text-decoration: none;
}


/* Developer Section */
.developer {
    background: rgba(13, 13, 13, 0.8);
}

.dev-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--spacing-xl);
    max-width: 800px;
    margin: 0 auto;
    background: var(--opacity-glass);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--opacity-border);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.dev-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: var(--opacity-glass-hover);
}

.dev-avatar img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid #6b7280;
}

.dev-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.dev-title {
    color: #cccccc;
    font-weight: 400;
    margin-bottom: 1rem;
}

.dev-info p {
    color: #ffffff;
    line-height: 1.7;
    font-weight: 300;
}

/* Newsletter Section */
.newsletter {
    background: 
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('img/hero_header.png') center/cover no-repeat;
    text-align: center;
}

.newsletter h2 {
    color: white;
}

.newsletter p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    min-width: 300px;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    backdrop-filter: blur(10px);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.2);
}

/* Footer */
footer {
    background: #0d0d0d;
    padding: 2rem 0 1rem;
    border-top: 1px solid rgba(120, 120, 120, 0.3);
}

footer .hero-logo {
    text-align: center;
    margin-bottom: 1.5rem;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: translateY(-2px);
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    max-width: fit-content;
    gap: 0.5rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #666666;
    margin: 0;
    font-weight: 300;
    font-size: 0.8rem;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #666666;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 300;
    font-size: 0.75rem;
    opacity: 0.8;
}

.footer-links a:hover {
    color: #cccccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Hero section only contains video on mobile */
    .hero {
        min-height: auto;
        padding: 80px 0 0 0;
        overflow: hidden;
    }

    .hero-bg {
        display: none;
    }

    .hero-bg-video {
        display: none;
    }

    .hero-video {
        position: relative;
        width: 100vw;
        background: #000000;
        margin: 0;
    }

    .video-wrapper {
        width: 100vw;
        height: 56.25vw; /* 16:9 aspect ratio */
        margin: 0;
        border-radius: 0;
        box-shadow: none;
    }

    /* Hide text content from hero section on mobile */
    .hero-text-content {
        display: none;
    }

    /* Hide Steam wishlist button from hero on mobile to keep it clean */
    .hero .steam-wishlist {
        display: none;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        width: 100%;
    }
    
    .steam-wishlist {
        width: 100%;
        max-width: 280px;
        font-size: 1rem;
        padding: 1rem 1.25rem;
        text-align: center;
        justify-content: center;
    }
    
    .hero-email-form {
        width: 100%;
        max-width: 400px;
        gap: 0.75rem;
        justify-content: center;
        align-items: center;
    }

    .hero-email-form input {
        flex: 1;
        min-width: 200px;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        text-align: center;
    }

    .hero-email-form button {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        white-space: nowrap;
        min-width: 120px;
    }
    
    .dev-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-form input {
        min-width: 280px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    section {
        padding: 2rem 0;
    }
    
    section h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .header-text {
        display: none;
    }
    
    header {
        padding: var(--spacing-sm) 0;
    }

    .header-center {
        gap: 0.5rem;
        align-items: center;
        transform: scale(0.85);
    }

    .header-logo img {
        height: 40px;
        min-height: 40px;
    }

    .header-social {
        gap: 0.5rem;
        display: none;
    }


    .dev-notice {
        max-width: 95%;
        padding: var(--spacing-md);
        margin-top: var(--spacing-lg);
    }

    .dev-notice p {
        font-size: 0.85rem;
    }

    .about img {
        max-width: 90%;
        height: auto;
        width: auto;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta {
        gap: 1.25rem;
    }
    
    .steam-wishlist {
        max-width: 260px;
        font-size: 1rem;
        padding: 1rem 1.25rem;
        text-align: center;
        justify-content: center;
    }
    
    .hero-email-form {
        max-width: 300px;
        flex-direction: column;
        gap: 0.75rem;
        justify-content: center;
        align-items: center;
    }

    .hero-email-form input {
        width: 100%;
        padding: 0.9rem 1.2rem;
        font-size: 0.9rem;
        text-align: center;
    }

    .hero-email-form button {
        width: 100%;
        padding: 0.9rem 1.2rem;
        font-size: 0.9rem;
        text-align: center;
        justify-content: center;
    }
    
    .screenshots {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .social-links {
        flex-wrap: wrap;
    }
    
    .lightbox-content {
        max-width: 95vw;
        max-height: 95vh;
        padding: 0 10px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
        font-size: 18px;
        width: 44px;
        height: 44px;
        background: rgba(0, 0, 0, 0.8);
        border-color: rgba(255, 255, 255, 0.5);
    }
    
    .lightbox-nav {
        width: 48px;
        height: 48px;
        font-size: 18px;
        background: rgba(0, 0, 0, 0.8);
        border-color: rgba(255, 255, 255, 0.5);
    }
    
    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }
    
    .lightbox img {
        max-height: 70vh;
    }

    .dev-notice {
        max-width: 90%;
        padding: var(--spacing-sm);
    }

    .dev-notice p {
        font-size: 0.8rem;
    }
}

/* AI Statement Image */
.ai-proof-image {
    margin-top: 2rem;
    text-align: center;
}

.proof-image {
    max-width: 600px;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(120, 120, 120, 0.3);
}

.image-caption {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

/* Technology Section */
.technology {
    background:
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('img/hero_header.png') center/cover no-repeat;
}

/* Development Status Redesign */
.development-status {
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.8), rgba(13, 13, 13, 0.9));
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.dev-status-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.dev-status-single {
    max-width: 600px;
    margin: 3rem auto;
}

.status-card, .goals-card {
    background: var(--opacity-glass);
    border: 1px solid var(--opacity-border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    backdrop-filter: blur(10px);
}

.status-card h3, .goals-card h3 {
    color: #6b7280;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.timeline-info {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    border-left: 3px solid #6b7280;
}

.timeline-info h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
    padding: 0.5rem 0;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-label {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.timeline-date {
    color: #6b7280;
    font-weight: 600;
    background: rgba(120, 120, 120, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
}

.tech-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 1.5rem;
}

.goals-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.goal-item {
    background: rgba(0, 0, 0, 0.2);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border: 1px solid var(--opacity-border);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.goal-item:hover {
    transform: translateY(-3px);
    border-color: var(--opacity-border-hover);
    box-shadow: var(--shadow-sm);
    background: rgba(0, 0, 0, 0.3);
}

.goal-item h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.goal-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.dev-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, rgba(244, 208, 63, 0.02), rgba(244, 208, 63, 0.05));
    border-radius: var(--radius-lg);
    border: 1px solid rgba(244, 208, 63, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.dev-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(244, 208, 63, 0.4), transparent);
}

.dev-cta .lead {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Responsive Design for Development Status */
@media (max-width: 768px) {
    .dev-status-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .goals-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .status-card, .goals-card {
        padding: 1.5rem;
    }

    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Development Progress Timeline */
.dev-progress {
    margin: var(--spacing-2xl) 0;
    padding: var(--spacing-xl);
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-lg);
    border: 1px solid var(--opacity-border);
    backdrop-filter: blur(5px);
}

.dev-progress h3 {
    color: #6b7280;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.progress-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    padding: 1rem 0;
}

.progress-timeline::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(to right,
        #f4d03f 0%,
        #f4d03f 10%,
        rgba(255, 255, 255, 0.3) 10%,
        rgba(255, 255, 255, 0.3) 100%);
    z-index: 1;
}

.milestone {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    position: relative;
    z-index: 2;
}

.milestone-marker {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 3px solid #6b7280;
    background: rgba(0, 0, 0, 0.8);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.milestone.completed .milestone-marker {
    background: #f4d03f;
    box-shadow: 0 0 20px rgba(244, 208, 63, 0.8);
    width: 28px;
    height: 28px;
    border-width: 4px;
}

.milestone.completed .milestone-marker::before {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 10px;
    font-weight: bold;
}

.milestone.upcoming .milestone-marker {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.milestone-content {
    max-width: 120px;
    transition: all 0.3s ease;
}

.milestone:hover .milestone-content {
    transform: translateY(-2px);
}

.milestone-content h4 {
    color: #ffffff;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.milestone-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.milestone-status {
    background: #f4d03f;
    color: #0d0d0d;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
}

.milestone-date {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.7rem;
    font-style: italic;
}

.milestone:hover .milestone-marker {
    transform: scale(1.1);
}

.milestone.completed:hover .milestone-marker {
    box-shadow: 0 0 30px rgba(244, 208, 63, 1.0);
}

@media (max-width: 768px) {
    .dev-progress {
        padding: 1.5rem;
    }

    .progress-timeline {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
        padding-left: 2rem;
        position: relative;
    }

    .progress-timeline::before {
        content: '';
        position: absolute;
        left: 10px;
        top: 20px;
        height: calc(100% - 40px);
        width: 2px;
        background: linear-gradient(to bottom,
            #f4d03f 0%,
            #f4d03f 10%,
            rgba(255, 255, 255, 0.3) 10%,
            rgba(255, 255, 255, 0.3) 100%);
        z-index: 1;
    }

    .milestone {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        width: 100%;
        position: relative;
        z-index: 2;
    }

    .milestone-marker {
        position: absolute;
        left: 1px;
        top: 10px;
        margin: 0;
        z-index: 3;
    }

    .milestone-content {
        width: 100%;
        max-width: none;
        text-align: left;
        background: rgba(0, 0, 0, 0.2);
        padding: 1.2rem;
        padding-left: 2.5rem;
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        margin-left: 0.5rem;
    }

    .milestone-content h4 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .milestone-content p {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }

    .milestone-status,
    .milestone-date {
        font-size: 0.8rem;
    }
}

/* Footer Developer Card */
.footer-dev-card {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) auto;
    padding: var(--spacing-lg);
    max-width: 700px;
    background: var(--opacity-glass);
    border-radius: var(--radius-lg);
    border: 1px solid var(--opacity-border);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.footer-dev-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: var(--opacity-glass-hover);
    border-color: var(--opacity-border-hover);
}

.footer-dev-card .dev-avatar {
    flex-shrink: 0;
}

.footer-dev-card .dev-avatar img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid rgba(120, 120, 120, 0.5);
}

.footer-dev-card .dev-info {
    flex: 1;
}

.footer-dev-card .dev-info h3 {
    color: #f4d03f;
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-dev-card .dev-info p {
    margin: 0 0 1rem 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-dev-card .dev-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-dev-card .contact-btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    margin: 0;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transition: all 0.3s ease;
}

.footer-dev-card .contact-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
}

.footer-dev-card .contact-btn svg {
    width: 16px;
    height: 16px;
}

.footer-dev-card .dev-twitter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-dev-card .dev-twitter:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .footer-dev-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-dev-card .dev-avatar img {
        width: 80px;
        height: 80px;
    }

    .footer-dev-card .dev-actions {
        justify-content: center;
    }
}

/* Legal Pages Styles */
.legal-page {
    padding: var(--spacing-3xl) 0;
    padding-top: 120px;
    min-height: 80vh;
    background: linear-gradient(135deg, var(--color-background-secondary) 0%, var(--color-background-tertiary) 50%, var(--color-background-quaternary) 100%);
}

.legal-page h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-text);
    text-align: center;
    margin-bottom: var(--spacing-sm);
}

.last-updated {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-2xl);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--opacity-glass);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--opacity-border);
    backdrop-filter: blur(10px);
}

.legal-content h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-text);
    margin-bottom: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.legal-content ul {
    color: var(--color-text);
    margin-bottom: var(--spacing-md);
    margin-left: var(--spacing-lg);
}

.legal-content li {
    margin-bottom: var(--spacing-sm);
    line-height: 1.6;
}

.legal-content strong {
    color: var(--color-text);
    font-weight: 600;
}

@media (max-width: 768px) {
    .legal-page h1 {
        font-size: 2rem;
    }

    .legal-content {
        padding: var(--spacing-lg);
    }

    .legal-content h2 {
        font-size: 1.25rem;
    }
}

/* Development Email Form */
.dev-email-form {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    align-items: center;
    margin-top: var(--spacing-lg);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
}

.dev-email-form input[type="email"] {
    flex: 1;
    min-width: 250px;
    padding: var(--spacing-md) var(--spacing-lg);
    border: 1px solid var(--opacity-border-hover);
    border-radius: var(--radius-full);
    background: #000000;
    color: var(--color-text);
    font-size: 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.dev-email-form input[type="email"]::placeholder {
    color: var(--color-text-subtle);
}

.dev-email-form input[type="email"]:focus {
    outline: none;
    border-color: var(--color-accent);
    background: #000000;
    transform: translateY(-1px);
    box-shadow: 0 0 10px rgba(244, 208, 63, 0.3);
}

.dev-email-form button {
    text-align: center;
    min-width: 140px;
    white-space: nowrap;
    justify-content: center;
    background: var(--color-accent) !important;
    color: #000000 !important;
    border-color: var(--color-accent) !important;
    font-weight: 600;
}

.dev-email-form button:hover {
    background: #f7dc6f !important;
    border-color: #f7dc6f !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(244, 208, 63, 0.4);
}

@media (max-width: 480px) {
    .dev-email-form {
        flex-direction: column;
        gap: var(--spacing-md);
        justify-content: center;
        align-items: center;
        max-width: 300px;
    }

    .dev-email-form input[type="email"] {
        width: 100%;
        text-align: center;
        padding: 0.9rem 1.2rem;
        font-size: 0.9rem;
    }

    .dev-email-form button {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 0.9rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Mobile-only hero text section */
.mobile-hero-text {
    display: none;
    position: relative;
    overflow: hidden;
}

.mobile-hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.6);
}

.mobile-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: var(--spacing-lg) var(--spacing-xl);
    background: rgba(0, 0, 0, 0.3);
}

.mobile-hero-content .hero-subtitle {
    font-size: 1.5rem;
    color: var(--color-text);
    margin-bottom: var(--spacing-xl);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.mobile-hero-content .hero-cta {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    align-items: center;
    width: 100%;
    max-width: 300px;
}

@media (max-width: 768px) {
    .mobile-hero-text {
        display: block;
    }

    .hero .hero-text-content {
        display: none;
    }
}