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

body {
    font-family: 'Inter', sans-serif;
    background: #121212;
    color: #ececec;
    line-height: 1.6;
}

/* Age Verification */
.age-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.96);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.age-overlay.show {
    display: flex;
}

.age-dialog {
    background: linear-gradient(135deg, #f59e0b 0%, #fb923c 100%);
    padding: 52px 48px;
    border-radius: 24px;
    text-align: center;
    max-width: 540px;
    box-shadow: 0 28px 75px rgba(245, 158, 11, 0.4);
}

.age-symbol {
    font-size: 68px;
    margin-bottom: 24px;
}

.age-dialog h2 {
    font-size: 33px;
    margin-bottom: 20px;
    font-weight: 800;
}

.age-dialog p {
    font-size: 17px;
    margin-bottom: 16px;
}

.age-note {
    font-size: 15px;
    opacity: 0.92;
    font-style: italic;
}

.age-buttons-row {
    display: flex;
    gap: 22px;
    margin-top: 38px;
    justify-content: center;
}

.btn-accept,
.btn-reject {
    padding: 17px 46px;
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 700;
    border: none;
    border-radius: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #fde047;
    color: #b45309;
}

.btn-accept:hover {
    background: #fbbf24;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(253, 224, 71, 0.4);
}

.btn-reject {
    background: #dc2626;
    color: white;
}

.btn-reject:hover {
    background: #b91c1c;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(220, 38, 38, 0.4);
}

/* Header */
.site-header {
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #f59e0b;
}

.header-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 20px 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 13px;
}

.brand-text {
    font-size: 25px;
    font-weight: 800;
    color: #fb923c;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 7px;
}

.menu-line {
    display: block;
    width: 29px;
    height: 3px;
    background: #fb923c;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active .menu-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-btn.active .menu-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .menu-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.main-menu {
    display: flex;
    gap: 33px;
    align-items: center;
}

.menu-link {
    color: #ececec;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 11px 19px;
    border-radius: 11px;
    transition: all 0.3s ease;
}

.menu-link:hover,
.menu-link.active-link {
    background: linear-gradient(135deg, #f59e0b, #fb923c);
    transform: translateY(-2px);
}

/* Intro Banner */
.intro-banner {
    background: linear-gradient(135deg, #f59e0b 0%, #fb923c 50%, #fbbf24 100%);
    padding: 85px 35px;
    text-align: center;
}

.banner-content {
    max-width: 1150px;
    margin: 0 auto;
}

.main-title {
    font-size: 54px;
    font-weight: 900;
    margin-bottom: 22px;
    color: #ffffff;
}

.main-subtitle {
    font-size: 23px;
    margin-bottom: 36px;
    opacity: 0.96;
}

.banner-tags {
    display: flex;
    gap: 22px;
    justify-content: center;
    flex-wrap: wrap;
}

.tag {
    background: rgba(253, 224, 71, 0.25);
    padding: 13px 27px;
    border-radius: 24px;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #fde047;
}

/* Page Container */
.page-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 35px;
}

/* Warnings Section */
.warnings-section {
    padding: 68px 0;
}

.warning-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(325px, 1fr));
    gap: 33px;
}

.warning-card {
    padding: 36px;
    border-radius: 19px;
    border: 3px solid;
    transition: all 0.3s ease;
}

.orange-card {
    background: rgba(245, 158, 11, 0.12);
    border-color: #f59e0b;
}

.amber-card {
    background: rgba(251, 146, 60, 0.12);
    border-color: #fb923c;
}

.red-card {
    background: rgba(220, 38, 38, 0.12);
    border-color: #dc2626;
}

.warning-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 16px 42px rgba(245, 158, 11, 0.3);
}

.card-emoji {
    font-size: 52px;
    margin-bottom: 20px;
}

.warning-card h3 {
    font-size: 24px;
    margin-bottom: 17px;
    font-weight: 700;
}

.warning-card p {
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.93;
}

/* Game Spotlight */
.game-spotlight {
    padding: 68px 0;
    background: rgba(18, 18, 18, 0.6);
    border-radius: 24px;
}

.spotlight-intro {
    text-align: center;
    margin-bottom: 48px;
}

.spotlight-title {
    font-size: 41px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #fb923c;
}

.spotlight-desc {
    font-size: 18px;
    opacity: 0.88;
}

.spotlight-frame {
    max-width: 1100px;
    margin: 0 auto 38px;
    border-radius: 19px;
    overflow: hidden;
    box-shadow: 0 17px 52px rgba(0, 0, 0, 0.6);
}

.game-player {
    width: 100%;
    height: 660px;
    border: none;
    display: block;
}

.spotlight-tips {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.tip-block {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    background: rgba(245, 158, 11, 0.15);
    padding: 21px 27px;
    border-radius: 13px;
    border-left: 5px solid #fb923c;
}

.tip-emoji {
    font-size: 24px;
}

.tip-text {
    font-size: 15px;
    line-height: 1.7;
}

/* About Area */
.about-area {
    padding: 75px 0;
}

.about-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 62px;
    align-items: center;
}

.about-text-side h2 {
    font-size: 39px;
    margin-bottom: 27px;
    color: #fbbf24;
    font-weight: 800;
}

.about-text-side p {
    font-size: 16px;
    margin-bottom: 21px;
    line-height: 1.85;
    opacity: 0.93;
}

.about-numbers {
    display: flex;
    gap: 28px;
    margin-top: 38px;
    flex-wrap: wrap;
}

.number-block {
    background: rgba(245, 158, 11, 0.15);
    padding: 24px 28px;
    border-radius: 14px;
    text-align: center;
    border: 2px solid #f59e0b;
}

.number-value {
    font-size: 40px;
    font-weight: 900;
    color: #fde047;
    margin-bottom: 7px;
}

.number-desc {
    font-size: 14px;
    opacity: 0.9;
}

.visual-graphic {
    border-radius: 19px;
    overflow: hidden;
    box-shadow: 0 17px 48px rgba(245, 158, 11, 0.3);
}

/* Benefits Area */
.benefits-area {
    padding: 75px 0;
    background: rgba(18, 18, 18, 0.6);
    border-radius: 24px;
    text-align: center;
}

.benefits-heading {
    font-size: 41px;
    font-weight: 800;
    margin-bottom: 52px;
    color: #fb923c;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(295px, 1fr));
    gap: 33px;
}

.benefit-item {
    background: rgba(245, 158, 11, 0.12);
    padding: 36px;
    border-radius: 17px;
    border: 2px solid rgba(245, 158, 11, 0.4);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-6px);
    border-color: #fb923c;
    box-shadow: 0 13px 38px rgba(251, 146, 60, 0.3);
}

.benefit-icon {
    font-size: 50px;
    margin-bottom: 21px;
}

.benefit-item h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #fbbf24;
}

.benefit-item p {
    font-size: 15px;
    line-height: 1.75;
    opacity: 0.92;
}

/* Play Page */
.play-intro {
    background: linear-gradient(135deg, #f59e0b 0%, #fb923c 100%);
    padding: 72px 35px;
    text-align: center;
}

.play-page-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 18px;
    color: #ffffff;
}

.play-page-desc {
    font-size: 21px;
    opacity: 0.96;
}

.play-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 35px;
}

.play-game-section {
    padding: 52px 0 82px;
}

.game-box {
    border-radius: 19px;
    overflow: hidden;
    box-shadow: 0 17px 52px rgba(0, 0, 0, 0.6);
    margin-bottom: 43px;
}

.full-game {
    width: 100%;
    height: 760px;
    border: none;
    display: block;
}

.play-guides {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(305px, 1fr));
    gap: 27px;
}

.guide-card {
    background: rgba(245, 158, 11, 0.12);
    padding: 31px;
    border-radius: 15px;
    border: 2px solid rgba(245, 158, 11, 0.4);
}

.guide-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #fb923c;
}

.guide-card p {
    font-size: 15px;
    line-height: 1.75;
    opacity: 0.92;
}

.guide-warning {
    border-color: #dc2626;
    background: rgba(220, 38, 38, 0.12);
}

.guide-warning h3 {
    color: #dc2626;
}

/* Legal Pages */
.legal-container {
    max-width: 980px;
    margin: 0 auto;
    padding: 52px 35px 85px;
}

.legal-box {
    background: rgba(18, 18, 18, 0.7);
    padding: 52px;
    border-radius: 21px;
    border: 2px solid rgba(245, 158, 11, 0.4);
}

.legal-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 18px;
    color: #fb923c;
    text-align: center;
}

.legal-meta {
    text-align: center;
    font-size: 14px;
    opacity: 0.77;
    margin-bottom: 48px;
}

.legal-text h2 {
    font-size: 31px;
    margin-top: 46px;
    margin-bottom: 21px;
    color: #fbbf24;
    font-weight: 700;
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text h3 {
    font-size: 23px;
    margin-top: 29px;
    margin-bottom: 17px;
    color: #fb923c;
}

.legal-text p {
    font-size: 15px;
    margin-bottom: 19px;
    line-height: 1.85;
    opacity: 0.93;
}

.legal-text ul {
    margin: 19px 0 19px 37px;
    opacity: 0.93;
}

.legal-text li {
    margin-bottom: 13px;
    line-height: 1.8;
}

.terms-summary {
    background: rgba(253, 224, 71, 0.17);
    padding: 37px;
    border-radius: 15px;
    margin-top: 46px;
    border-left: 6px solid #fde047;
}

.terms-summary h3 {
    color: #fde047;
    margin-top: 0;
}

.warning-section {
    background: rgba(220, 38, 38, 0.13);
    padding: 37px;
    border-radius: 15px;
    margin-bottom: 37px;
    border-left: 6px solid #dc2626;
}

.warning-section h2 {
    color: #dc2626;
    margin-top: 0;
}

/* Footer */
.page-footer {
    background: #0d0d0d;
    padding: 62px 35px 27px;
    margin-top: 85px;
    border-top: 4px solid #f59e0b;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
    gap: 52px;
    max-width: 1350px;
    margin: 0 auto 43px;
}

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 21px;
    color: #fbbf24;
    font-weight: 700;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.89;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 13px;
}

.footer-links a {
    color: #ececec;
    text-decoration: none;
    font-size: 15px;
    opacity: 0.87;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: #fb923c;
    padding-left: 9px;
}

.footer-copyright {
    text-align: center;
    padding-top: 37px;
    border-top: 2px solid rgba(245, 158, 11, 0.3);
}

.footer-copyright p {
    font-size: 14px;
    opacity: 0.82;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .main-menu {
        position: fixed;
        left: -100%;
        top: 73px;
        flex-direction: column;
        background: rgba(18, 18, 18, 0.98);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 13px 32px rgba(0, 0, 0, 0.5);
        padding: 27px 0;
        gap: 0;
    }

    .main-menu.open {
        left: 0;
    }

    .menu-link {
        display: block;
        margin: 13px 0;
    }

    .main-title {
        font-size: 37px;
    }

    .main-subtitle {
        font-size: 19px;
    }

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

    .game-player {
        height: 470px;
    }

    .full-game {
        height: 540px;
    }

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

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .legal-box {
        padding: 34px 26px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 38px;
    }
}

@media (max-width: 480px) {
    .age-dialog {
        padding: 38px 26px;
        margin: 20px;
    }

    .age-buttons-row {
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }

    .main-title {
        font-size: 31px;
    }

    .page-container,
    .play-container {
        padding: 0 22px;
    }

    .legal-container {
        padding: 38px 22px 68px;
    }
}