/* Zyndrixa - Retro Vintage Theme */
@import url('https://fonts.googleapis.com/css2?family=Righteous&family=Nunito:wght@300;400;600;700&display=swap');

:root {
    --retro-teal: #2ec4b6;
    --vintage-cream: #fff8e7;
    --rust-orange: #e76f51;
    --deep-navy: #264653;
    --mustard-yellow: #e9c46a;
    --soft-pink: #f4a261;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    background: var(--deep-navy);
    color: var(--vintage-cream);
    min-height: 100vh;
    line-height: 1.7;
}

/* Retro Header */
.retro-header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: var(--deep-navy);
    border-bottom: 4px solid var(--retro-teal);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.retro-logo {
    font-family: 'Righteous', cursive;
    font-size: 2.2rem;
    color: var(--mustard-yellow);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.retro-nav {
    display: flex;
    gap: 2.5rem;
}

.retro-nav a {
    color: var(--vintage-cream);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s;
    position: relative;
}

.retro-nav a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--rust-orange);
    transition: width 0.3s;
}

.retro-nav a:hover {
    color: var(--retro-teal);
}

.retro-nav a:hover::after {
    width: 100%;
}

.retro-burger {
    display: none;
    cursor: pointer;
    padding: 10px;
}

.retro-burger span {
    display: block;
    width: 28px;
    height: 4px;
    background: var(--mustard-yellow);
    margin: 5px 0;
    border-radius: 2px;
    transition: all 0.3s;
}

.retro-burger.active span:first-child {
    transform: rotate(45deg) translate(6px, 6px);
}

.retro-burger.active span:nth-child(2) {
    opacity: 0;
}

.retro-burger.active span:last-child {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Vintage Hero */
.vintage-hero {
    min-height: 100vh;
    padding: 120px 2rem 80px;
    background: 
        linear-gradient(135deg, var(--deep-navy) 0%, #1d3557 100%);
    display: flex;
    align-items: center;
}

.hero-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-info h1 {
    font-family: 'Righteous', cursive;
    font-size: 3.5rem;
    color: var(--mustard-yellow);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-transform: uppercase;
}

.hero-info p {
    font-size: 1.15rem;
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.retro-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--rust-orange);
    color: var(--vintage-cream);
    text-decoration: none;
    font-family: 'Righteous', cursive;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 0;
    transition: all 0.3s;
    border: 3px solid var(--rust-orange);
}

.retro-btn:hover {
    background: transparent;
    color: var(--rust-orange);
}

.hero-badges {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.badge-item {
    background: rgba(46, 196, 182, 0.15);
    border-left: 5px solid var(--retro-teal);
    padding: 1.5rem;
}

.badge-item h4 {
    color: var(--mustard-yellow);
    font-family: 'Righteous', cursive;
    margin-bottom: 0.4rem;
}

.badge-item p {
    font-size: 0.95rem;
    font-weight: 300;
}

/* Game Arcade */
.game-arcade {
    padding: 5rem 2rem;
    background: var(--vintage-cream);
    color: var(--deep-navy);
}

.arcade-title {
    font-family: 'Righteous', cursive;
    font-size: 2.5rem;
    color: var(--deep-navy);
    text-align: center;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.arcade-frame {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--deep-navy);
    border: 6px solid var(--rust-orange);
    padding: 10px;
}

.arcade-frame iframe {
    width: 100%;
    height: 620px;
    border: none;
    display: block;
}

/* Retro Features */
.retro-features {
    padding: 5rem 2rem;
    background: var(--deep-navy);
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.feature-block {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: rgba(46, 196, 182, 0.1);
    border: 3px solid var(--retro-teal);
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s;
}

.feature-block:hover {
    background: rgba(46, 196, 182, 0.2);
    transform: translateY(-5px);
}

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

.feature-block h3 {
    font-family: 'Righteous', cursive;
    color: var(--mustard-yellow);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.feature-block p {
    font-weight: 300;
    line-height: 1.7;
}

/* About Section */
.about-retro {
    padding: 5rem 2rem;
    background: linear-gradient(to bottom, var(--rust-orange), var(--soft-pink));
}

.about-wrap {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.about-retro h2 {
    font-family: 'Righteous', cursive;
    color: var(--vintage-cream);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.about-retro p {
    color: var(--vintage-cream);
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

/* Footer */
.retro-footer {
    background: #1a2e3d;
    padding: 2.5rem 2rem;
    border-top: 4px solid var(--retro-teal);
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.support-row {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.support-row a {
    color: var(--retro-teal);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.support-row a:hover {
    color: var(--mustard-yellow);
}

.footer-small {
    color: var(--vintage-cream);
    opacity: 0.6;
    font-size: 0.85rem;
}

/* Age Modal */
.age-screen {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.age-screen.hidden {
    display: none;
}

.age-box {
    background: var(--deep-navy);
    border: 5px solid var(--mustard-yellow);
    padding: 3rem;
    text-align: center;
    max-width: 500px;
    width: 90%;
}

.age-box h2 {
    font-family: 'Righteous', cursive;
    color: var(--mustard-yellow);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.age-box p {
    margin-bottom: 2rem;
    font-weight: 300;
    line-height: 1.7;
}

.age-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-enter {
    padding: 1rem 2.5rem;
    background: var(--rust-orange);
    color: var(--vintage-cream);
    border: none;
    font-family: 'Righteous', cursive;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.btn-enter:hover {
    background: var(--retro-teal);
}

.btn-exit {
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--vintage-cream);
    border: 3px solid var(--vintage-cream);
    font-family: 'Righteous', cursive;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.btn-exit:hover {
    border-color: var(--retro-teal);
    color: var(--retro-teal);
}

/* Inner Pages */
.page-main {
    padding: 120px 2rem 60px;
    min-height: 100vh;
    background: var(--vintage-cream);
    color: var(--deep-navy);
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
}

.page-main h1 {
    font-family: 'Righteous', cursive;
    color: var(--deep-navy);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.page-main h2 {
    font-family: 'Righteous', cursive;
    color: var(--rust-orange);
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    text-transform: uppercase;
}

.page-main p {
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.page-main ul {
    margin: 0 0 1.5rem 1.5rem;
}

.page-main li {
    margin-bottom: 0.6rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-badges {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .retro-burger {
        display: block;
    }

    .retro-nav {
        position: fixed;
        top: 76px;
        left: 0;
        width: 100%;
        background: var(--deep-navy);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateX(-100%);
        transition: transform 0.3s;
        border-bottom: 4px solid var(--retro-teal);
    }

    .retro-nav.open {
        transform: translateX(0);
    }

    .hero-info h1 {
        font-size: 2.5rem;
    }

    .arcade-frame iframe {
        height: 450px;
    }
}

@media (max-width: 480px) {
    .retro-logo {
        font-size: 1.6rem;
    }

    .hero-info h1 {
        font-size: 2rem;
    }

    .arcade-frame iframe {
        height: 380px;
    }

    .age-actions {
        flex-direction: column;
    }
}
