* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Exo 2', sans-serif;
    background: #0c1e2e;
    color: #e8f3f8;
    line-height: 1.7;
    min-height: 100vh;
}

.age-overlay {
    position: fixed;
    inset: 0;
    background: rgba(12, 30, 46, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(8px);
}

.age-overlay.hidden {
    display: none;
}

.age-container {
    background: linear-gradient(135deg, #154360 0%, #0c1e2e 100%);
    padding: 55px 45px;
    border-radius: 16px;
    max-width: 520px;
    text-align: center;
    border: 3px solid #1abc9c;
    box-shadow: 0 25px 70px rgba(26, 188, 156, 0.4);
}

.age-symbol {
    font-size: 85px;
    margin-bottom: 25px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.age-container h2 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 22px;
    color: #1abc9c;
}

.age-container p {
    font-size: 17px;
    margin-bottom: 32px;
    line-height: 1.8;
    color: #c5dce6;
}

.age-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.age-actions button {
    padding: 16px 38px;
    font-size: 17px;
    font-weight: 700;
    border: 2px solid;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Exo 2', sans-serif;
    transition: all 0.3s ease;
}

.age-accept {
    background: #1abc9c;
    color: #0c1e2e;
    border-color: #1abc9c;
}

.age-accept:hover {
    background: #16a085;
    border-color: #16a085;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(26, 188, 156, 0.5);
}

.age-decline {
    background: transparent;
    color: #e74c3c;
    border-color: #e74c3c;
}

.age-decline:hover {
    background: #e74c3c;
    color: white;
    transform: scale(1.05);
}

.page-header {
    background: rgba(12, 30, 46, 0.95);
    border-bottom: 3px solid #1abc9c;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.wrapper {
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 45px;
}

.page-header .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 45px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    font-size: 30px;
    font-weight: 800;
    color: #1abc9c;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-icon {
    font-size: 40px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle .line {
    width: 30px;
    height: 3px;
    background: #1abc9c;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.primary-nav {
    display: flex;
    gap: 38px;
}

.primary-nav a {
    color: #e8f3f8;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s ease;
    padding-bottom: 5px;
    border-bottom: 3px solid transparent;
}

.primary-nav a:hover {
    color: #1abc9c;
    border-bottom-color: #1abc9c;
}

.main-content {
    padding: 0;
}

.intro-section {
    padding: 90px 0;
    text-align: center;
    background: linear-gradient(180deg, #0c1e2e 0%, #154360 50%, #0c1e2e 100%);
}

.intro-content h1 {
    font-size: 54px;
    font-weight: 800;
    margin-bottom: 28px;
    color: #1abc9c;
    line-height: 1.2;
}

.lead-text {
    font-size: 21px;
    max-width: 880px;
    margin: 0 auto 40px;
    color: #c5dce6;
    line-height: 1.7;
}

.highlight-tags {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.tag {
    background: rgba(26, 188, 156, 0.2);
    border: 2px solid #1abc9c;
    padding: 13px 28px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
}

.game-section {
    padding: 75px 0;
    background: #0c1e2e;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 45px;
    color: #1abc9c;
}

.game-wrapper {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto 35px;
    border-radius: 14px;
    overflow: hidden;
    border: 3px solid #1abc9c;
    box-shadow: 0 15px 50px rgba(26, 188, 156, 0.3);
}

.game-embed {
    width: 100%;
    height: 720px;
    display: block;
    border: none;
}

.action-link {
    display: inline-block;
    padding: 19px 48px;
    background: linear-gradient(135deg, #1abc9c 0%, #16a085 100%);
    color: #0c1e2e;
    text-decoration: none;
    font-size: 21px;
    font-weight: 800;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(26, 188, 156, 0.4);
}

.action-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 45px rgba(26, 188, 156, 0.6);
}

.features-section {
    padding: 75px 0;
    background: linear-gradient(180deg, #0c1e2e 0%, #154360 100%);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 32px;
}

.feature-item {
    background: rgba(21, 67, 96, 0.6);
    padding: 42px;
    border-radius: 14px;
    border: 2px solid rgba(26, 188, 156, 0.4);
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: #1abc9c;
    transform: translateY(-7px);
    box-shadow: 0 18px 45px rgba(26, 188, 156, 0.3);
}

.feature-emoji {
    font-size: 68px;
    margin-bottom: 24px;
}

.feature-item h3 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 17px;
    color: #1abc9c;
}

.feature-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #c5dce6;
}

.advisory-section {
    padding: 75px 0;
    background: #0c1e2e;
}

.advisory-title {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 45px;
    color: #1abc9c;
}

.advisory-grid {
    display: grid;
    gap: 32px;
}

.advisory-card {
    background: rgba(21, 67, 96, 0.6);
    padding: 38px;
    border-radius: 14px;
    border-left: 6px solid #1abc9c;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.3);
}

.advisory-card h3 {
    font-size: 23px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1abc9c;
}

.advisory-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #c5dce6;
}

.metrics-section {
    padding: 75px 0;
    background: linear-gradient(180deg, #0c1e2e 0%, #154360 100%);
    text-align: center;
}

.metrics-heading {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 26px;
    color: #1abc9c;
}

.metrics-intro {
    font-size: 19px;
    max-width: 920px;
    margin: 0 auto 50px;
    color: #c5dce6;
    line-height: 1.7;
}

.metrics-display {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 32px;
    max-width: 1150px;
    margin: 0 auto;
}

.metric-box {
    background: rgba(21, 67, 96, 0.6);
    padding: 42px;
    border-radius: 14px;
    border: 3px solid #1abc9c;
}

.metric-number {
    font-size: 50px;
    font-weight: 800;
    color: #1abc9c;
    margin-bottom: 14px;
}

.metric-text {
    font-size: 18px;
    color: #c5dce6;
}

.page-footer {
    background: rgba(12, 30, 46, 0.95);
    border-top: 3px solid #1abc9c;
    padding: 55px 45px 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 38px;
    margin-bottom: 38px;
}

.footer-block h4 {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #1abc9c;
}

.footer-block p {
    margin-bottom: 18px;
    color: #c5dce6;
    line-height: 1.7;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-nav a {
    color: #1abc9c;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-nav a:hover {
    color: #16a085;
    padding-left: 5px;
}

.footer-notice {
    padding-top: 28px;
    border-top: 1px solid rgba(26, 188, 156, 0.3);
    text-align: center;
    color: #c5dce6;
    font-size: 14px;
}

.play-header {
    padding: 75px 0 50px;
    text-align: center;
    background: linear-gradient(180deg, #0c1e2e 0%, #154360 100%);
}

.play-header h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
    color: #1abc9c;
}

.play-header p {
    font-size: 20px;
    max-width: 780px;
    margin: 0 auto;
    color: #c5dce6;
}

.game-info-section {
    padding: 75px 0;
    background: #0c1e2e;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 32px;
}

.info-box {
    background: rgba(21, 67, 96, 0.6);
    padding: 42px;
    border-radius: 14px;
    border: 2px solid rgba(26, 188, 156, 0.4);
}

.info-emoji {
    font-size: 68px;
    margin-bottom: 24px;
}

.info-box h3 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 17px;
    color: #1abc9c;
}

.info-box p {
    font-size: 16px;
    line-height: 1.8;
    color: #c5dce6;
}

.legal-header {
    padding: 75px 0 50px;
    text-align: center;
    background: linear-gradient(180deg, #0c1e2e 0%, #154360 100%);
    border-bottom: 3px solid rgba(26, 188, 156, 0.3);
}

.legal-header h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1abc9c;
}

.legal-date {
    font-size: 16px;
    color: #c5dce6;
    font-style: italic;
}

.legal-content {
    padding: 75px 0;
    background: #0c1e2e;
}

.legal-content .wrapper {
    max-width: 1050px;
}

.legal-section {
    margin-bottom: 48px;
    background: rgba(21, 67, 96, 0.6);
    padding: 42px;
    border-radius: 14px;
    border-left: 6px solid #1abc9c;
}

.legal-section h2 {
    font-size: 27px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1abc9c;
}

.legal-section p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 17px;
    color: #c5dce6;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .wrapper {
        padding: 0 25px;
    }

    .page-header .wrapper {
        padding: 18px 25px;
    }

    .menu-toggle {
        display: flex;
    }

    .primary-nav {
        position: fixed;
        top: 75px;
        right: -100%;
        width: 270px;
        height: calc(100vh - 75px);
        background: rgba(12, 30, 46, 0.98);
        flex-direction: column;
        padding: 38px 28px;
        gap: 22px;
        transition: right 0.3s ease;
        border-left: 3px solid #1abc9c;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.4);
    }

    .primary-nav.active {
        right: 0;
    }

    .intro-content h1 {
        font-size: 38px;
    }

    .lead-text {
        font-size: 18px;
    }

    .game-embed {
        height: 520px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .metrics-display {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}
