@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --teal: #0d9488;
    --cyan: #06b6d4;
    --emerald: #10b981;
    --dark-bg: #0a1628;
    --card-bg: #132337;
    --text-light: #e2e8f0;
    --text-muted: #94a3b8;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.7;
}

.site-header {
    background: linear-gradient(180deg, rgba(10, 22, 40, 0.98) 0%, rgba(10, 22, 40, 0.9) 100%);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 0.75rem 0;
    border-bottom: 2px solid var(--teal);
}

.header-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0.6rem;
}

.brand-symbol {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--teal), var(--cyan));
    border-radius: 8px;
    display: grid;
    place-items: center;
    font-size: 1.3rem;
    font-weight: 800;
    color: white;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cyan);
    letter-spacing: -0.5px;
}

.main-nav {
    display: flex;
    gap: 2.5rem;
}

.main-nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 3px;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--cyan);
    transition: width 0.3s;
}

.main-nav a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--cyan);
    margin: 6px 0;
    transition: 0.3s;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background: var(--dark-bg);
    padding: 1rem;
    border-bottom: 2px solid var(--teal);
}

.mobile-nav.open {
    display: block;
}

.mobile-nav a {
    display: block;
    color: var(--text-light);
    text-decoration: none;
    padding: 1rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(6, 182, 212, 0.2);
}

.page-content {
    padding-top: 80px;
}

.banner {
    background: linear-gradient(135deg, var(--teal) 0%, var(--cyan) 50%, var(--emerald) 100%);
    padding: 5rem 2rem;
}

.banner-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.banner h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.banner-text {
    font-size: 1.15rem;
    max-width: 850px;
    margin: 0 auto 2rem;
    opacity: 0.95;
}

.tag-container {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.tag {
    background: rgba(0, 0, 0, 0.25);
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.section-heading {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--cyan);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.game-container {
    background: var(--card-bg);
    border-radius: 8px;
    padding: 1rem;
    margin: 2rem 0;
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.game-embed {
    width: 100%;
    height: 650px;
    border: none;
    border-radius: 6px;
    background: #000;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.card {
    background: var(--card-bg);
    border-radius: 8px;
    padding: 2rem;
    border-left: 4px solid var(--teal);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.card h3 {
    color: var(--cyan);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.highlight-box {
    background: linear-gradient(90deg, rgba(13, 148, 136, 0.15), rgba(6, 182, 212, 0.1));
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
}

.highlight-box h2 {
    color: var(--cyan);
    margin-bottom: 1rem;
}

.feature-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.feature-item {
    background: var(--card-bg);
    padding: 1.25rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-icon {
    color: var(--cyan);
    font-size: 1.5rem;
}

.site-footer {
    background: var(--card-bg);
    padding: 3rem 2rem;
    margin-top: 4rem;
    border-top: 3px solid var(--teal);
}

.footer-inner {
    max-width: 1600px;
    margin: 0 auto;
    text-align: center;
}

.responsible-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.responsible-links a {
    color: var(--cyan);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.responsible-links a:hover {
    color: var(--emerald);
}

.copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.age-gate {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.age-gate-box {
    background: var(--card-bg);
    border: 2px solid var(--teal);
    border-radius: 12px;
    padding: 3rem;
    max-width: 480px;
    margin: 1rem;
    text-align: center;
}

.age-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.age-gate-box h2 {
    color: var(--cyan);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.age-gate-box p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.age-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn {
    padding: 0.85rem 2rem;
    border: none;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.2s;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-confirm {
    background: linear-gradient(135deg, var(--teal), var(--cyan));
    color: white;
}

.btn-deny {
    background: transparent;
    border: 2px solid var(--teal);
    color: var(--teal);
}

.text-block {
    background: var(--card-bg);
    border-radius: 8px;
    padding: 2.5rem;
    margin: 2rem 0;
}

.text-block h2 {
    color: var(--cyan);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.text-block p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.text-block ul {
    color: var(--text-muted);
    margin: 1rem 0 1rem 1.5rem;
}

.text-block li {
    margin-bottom: 0.5rem;
}

.page-title-section {
    background: linear-gradient(135deg, var(--teal), var(--cyan));
    padding: 4rem 2rem;
    text-align: center;
}

.page-title-section h1 {
    font-size: 2.5rem;
    font-weight: 800;
}

.legal-wrap {
    max-width: 950px;
    margin: 0 auto;
    padding: 2rem;
}

@media (max-width: 1024px) {
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .banner h1 {
        font-size: 2rem;
    }

    .banner-text {
        font-size: 1rem;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }

    .feature-row {
        grid-template-columns: 1fr;
    }

    .game-embed {
        height: 450px;
    }

    .age-gate-box {
        padding: 2rem;
    }

    .age-btns {
        flex-direction: column;
    }

    .responsible-links {
        flex-direction: column;
        gap: 1rem;
    }
}
