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

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

body {
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(135deg, #0c1015 0%, #0a1520 100%);
    color: #dfe6ed;
    min-height: 100vh;
    line-height: 1.75;
}

a {
    color: #22d3ee;
    text-decoration: none;
    transition: 0.2s;
}

a:hover {
    color: #67e8f9;
}

.navbar {
    background: rgba(10, 15, 22, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 500;
    border-bottom: 1px solid rgba(34, 211, 238, 0.15);
}

.navbar-inner {
    max-width: 1700px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-area {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-area svg {
    width: 50px;
    height: 50px;
}

.brand-area span {
    font-size: 1.7rem;
    font-weight: 700;
    color: #22d3ee;
    letter-spacing: 1px;
}

.menu-trigger {
    display: none;
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid #22d3ee;
    border-radius: 10px;
    padding: 10px 14px;
    cursor: pointer;
}

.menu-trigger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #22d3ee;
    margin: 5px 0;
    border-radius: 2px;
}

.navigation ul {
    display: flex;
    list-style: none;
    gap: 0.3rem;
}

.navigation a {
    display: block;
    padding: 0.7rem 1.3rem;
    font-weight: 500;
    color: #dfe6ed;
    border-radius: 10px;
    transition: 0.25s;
}

.navigation a:hover {
    background: rgba(34, 211, 238, 0.1);
    color: #22d3ee;
}

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

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - 85px);
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
    gap: 4rem;
    align-items: center;
}

.hero-info h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #22d3ee;
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.hero-info p {
    font-size: 1.15rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    color: #a3b3c4;
}

.status-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.status-badge {
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.3);
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    font-weight: 500;
    font-size: 0.95rem;
}

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

.hero-graphic svg {
    width: 100%;
    max-width: 400px;
    height: auto;
}

.game-section {
    padding: 5rem 2rem;
    background: rgba(8, 12, 18, 0.6);
}

.game-section h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    color: #22d3ee;
    margin-bottom: 2rem;
}

.game-frame {
    max-width: 1400px;
    margin: 0 auto;
    background: rgba(10, 15, 22, 0.8);
    border: 1px solid rgba(34, 211, 238, 0.2);
    border-radius: 20px;
    padding: 1rem;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.game-frame iframe {
    width: 100%;
    height: 580px;
    border: none;
    border-radius: 12px;
    display: block;
}

.info-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.info-card {
    background: rgba(10, 15, 22, 0.6);
    border: 1px solid rgba(34, 211, 238, 0.15);
    border-radius: 16px;
    padding: 2.5rem;
    transition: 0.3s;
}

.info-card:hover {
    border-color: #22d3ee;
    box-shadow: 0 0 40px rgba(34, 211, 238, 0.1);
}

.info-card h3 {
    color: #22d3ee;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.info-card p {
    color: #a3b3c4;
    font-weight: 300;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.page-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #22d3ee;
    margin-bottom: 2rem;
    text-align: center;
}

.page-content h2 {
    font-size: 1.35rem;
    font-weight: 600;
    color: #22d3ee;
    margin: 2.5rem 0 1rem;
}

.page-content p {
    color: #a3b3c4;
    margin-bottom: 1rem;
    font-weight: 300;
}

.page-content ul, .page-content ol {
    margin: 1rem 0 1.5rem 1.5rem;
    color: #a3b3c4;
    font-weight: 300;
}

.page-content li {
    margin-bottom: 0.5rem;
}

.footer {
    background: rgba(6, 9, 14, 0.9);
    padding: 4rem 2rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(34, 211, 238, 0.1);
}

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

.footer-content h4 {
    color: #22d3ee;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-disclaimer {
    font-size: 0.9rem;
    color: #5c6c7c;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

.age-popup {
    position: fixed;
    inset: 0;
    background: rgba(8, 12, 18, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.age-box {
    background: linear-gradient(160deg, rgba(15, 22, 30, 0.9), rgba(10, 15, 22, 0.95));
    border: 2px solid #22d3ee;
    border-radius: 24px;
    padding: 3rem;
    max-width: 420px;
    text-align: center;
    box-shadow: 0 0 80px rgba(34, 211, 238, 0.15);
}

.age-box h2 {
    color: #22d3ee;
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.age-box p {
    color: #a3b3c4;
    font-weight: 300;
    margin-bottom: 2rem;
}

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

.age-btn {
    padding: 1rem 2.2rem;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
    border: none;
}

.age-btn.confirm {
    background: linear-gradient(135deg, #22d3ee, #06b6d4);
    color: #0a1015;
}

.age-btn.confirm:hover {
    box-shadow: 0 0 30px rgba(34, 211, 238, 0.4);
    transform: scale(1.05);
}

.age-btn.decline {
    background: transparent;
    border: 1px solid #22d3ee;
    color: #22d3ee;
}

.age-btn.decline:hover {
    background: rgba(34, 211, 238, 0.1);
}

.blocked h2 {
    color: #f87171;
}

@media (max-width: 1000px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 3rem;
    }

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

    .hero-graphic {
        order: -1;
    }

    .hero-graphic svg {
        max-width: 280px;
    }

    .status-badges {
        justify-content: center;
    }

    .info-section {
        grid-template-columns: 1fr;
    }
}

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

    .navigation {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 15, 22, 0.98);
        padding: 1rem;
        display: none;
        border-bottom: 1px solid rgba(34, 211, 238, 0.15);
    }

    .navigation.open {
        display: block;
    }

    .navigation ul {
        flex-direction: column;
    }

    .navigation a {
        text-align: center;
        padding: 1rem;
    }

    .game-frame iframe {
        height: 400px;
    }

    .brand-area span {
        font-size: 1.3rem;
    }

    .status-badges {
        flex-direction: column;
        align-items: center;
    }
}
