@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Raleway:wght@300;400;500;600&display=swap');

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

:root {
    --teal-dark: #0D5D56;
    --teal-main: #0D9488;
    --teal-light: #14B8A6;
    --mint: #99F6E4;
    --cream: #F0FDF4;
    --charcoal: #1A1A2E;
    --gold: #D4AF37;
}

body {
    font-family: 'Raleway', sans-serif;
    background: linear-gradient(180deg, var(--charcoal) 0%, #16213E 100%);
    color: var(--cream);
    min-height: 100vh;
    line-height: 1.75;
}

.top-nav {
    background: rgba(26, 26, 46, 0.9);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 20px rgba(13, 148, 136, 0.2);
}

.nav-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--teal-light);
    text-decoration: none;
    letter-spacing: 2px;
}

.main-nav {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.main-nav a {
    color: var(--cream);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--teal-light);
    transition: width 0.3s;
}

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

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--mint);
    margin: 6px 0;
    transition: 0.3s;
}

.content-wrapper {
    padding-top: 85px;
}

.banner {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    background: radial-gradient(ellipse at center, rgba(13, 148, 136, 0.15) 0%, transparent 70%);
    position: relative;
}

.banner-inner h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--cream);
    line-height: 1.2;
}

.banner-inner h1 span {
    color: var(--teal-light);
}

.banner-inner .tagline {
    font-size: 1.4rem;
    color: var(--mint);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.play-link {
    display: inline-block;
    background: linear-gradient(135deg, var(--teal-main) 0%, var(--teal-light) 100%);
    color: var(--charcoal);
    padding: 1.1rem 3rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
    letter-spacing: 1px;
}

.play-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(20, 184, 166, 0.4);
}

.alerts-row {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    background: rgba(13, 148, 136, 0.1);
    border-top: 1px solid rgba(153, 246, 228, 0.1);
    border-bottom: 1px solid rgba(153, 246, 228, 0.1);
    flex-wrap: wrap;
}

.alert-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.alert-badge .icon {
    width: 40px;
    height: 40px;
    background: var(--teal-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.game-showcase {
    padding: 5rem 2rem;
    max-width: 1600px;
    margin: 0 auto;
}

.showcase-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--mint);
}

.game-window {
    background: linear-gradient(145deg, #1F2937 0%, #111827 100%);
    border: 2px solid var(--teal-dark);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.game-embed {
    width: 100%;
    height: 620px;
    border: none;
    border-radius: 8px;
    background: #000;
}

.intro-cards {
    padding: 5rem 2rem;
    max-width: 1600px;
    margin: 0 auto;
}

.cards-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

.info-card {
    background: linear-gradient(145deg, rgba(31, 41, 55, 0.8) 0%, rgba(17, 24, 39, 0.9) 100%);
    border: 1px solid rgba(20, 184, 166, 0.2);
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: var(--teal-light);
    transform: translateY(-8px);
}

.info-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--teal-light);
    margin-bottom: 1rem;
}

.info-card p {
    color: rgba(240, 253, 244, 0.85);
    line-height: 1.8;
}

.about-strip {
    background: linear-gradient(90deg, var(--teal-dark) 0%, var(--teal-main) 100%);
    padding: 4rem 2rem;
}

.strip-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.strip-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.strip-content p {
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.9;
}

.bottom-footer {
    background: #0A0A14;
    padding: 3.5rem 2rem;
    border-top: 1px solid rgba(20, 184, 166, 0.15);
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer-nav {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav a {
    color: var(--mint);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

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

.help-links {
    text-align: center;
}

.help-links p {
    margin-bottom: 1rem;
    color: rgba(240, 253, 244, 0.7);
    font-size: 0.9rem;
}

.help-links a {
    color: var(--gold);
    text-decoration: none;
    margin: 0 1rem;
    font-size: 0.85rem;
}

.copyright {
    color: rgba(240, 253, 244, 0.5);
    font-size: 0.85rem;
}

.age-gate {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 20, 0.98);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.age-gate.dismissed {
    display: none;
}

.age-dialog {
    background: linear-gradient(145deg, #1F2937 0%, #111827 100%);
    border: 2px solid var(--teal-main);
    border-radius: 16px;
    padding: 3rem;
    max-width: 480px;
    text-align: center;
    margin: 1rem;
}

.age-dialog h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--teal-light);
    margin-bottom: 1rem;
}

.age-dialog p {
    margin-bottom: 2rem;
    color: rgba(240, 253, 244, 0.9);
}

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

.age-btn {
    padding: 0.9rem 2.2rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
}

.age-btn.confirm {
    background: linear-gradient(135deg, var(--teal-main) 0%, var(--teal-light) 100%);
    color: var(--charcoal);
}

.age-btn.deny {
    background: transparent;
    border: 2px solid rgba(240, 253, 244, 0.5);
    color: var(--cream);
}

.age-btn:hover {
    transform: scale(1.05);
}

.text-page-header {
    background: linear-gradient(135deg, var(--teal-dark) 0%, var(--charcoal) 100%);
    padding: 7rem 2rem 4rem;
    text-align: center;
}

.text-page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--cream);
}

.text-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.text-section {
    background: rgba(31, 41, 55, 0.5);
    border-left: 4px solid var(--teal-main);
    padding: 2rem 2.5rem;
    margin-bottom: 2rem;
    border-radius: 0 8px 8px 0;
}

.text-section h2 {
    font-family: 'Playfair Display', serif;
    color: var(--teal-light);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.text-section p {
    margin-bottom: 1rem;
    color: rgba(240, 253, 244, 0.9);
}

.text-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.text-section li {
    margin-bottom: 0.5rem;
    color: rgba(240, 253, 244, 0.85);
}

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

    .main-nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(26, 26, 46, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-150%);
        transition: transform 0.4s ease;
    }

    .main-nav.open {
        transform: translateY(0);
    }

    .banner-inner h1 {
        font-size: 2.4rem;
    }

    .alerts-row {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .game-embed {
        height: 380px;
    }

    .cards-layout {
        grid-template-columns: 1fr;
    }

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

    .text-page-header h1 {
        font-size: 2rem;
    }
}
