* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0a0a0a 100%);
    color: #e5e5e5;
    line-height: 1.6;
    min-height: 100vh;
}

.modal-age {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.97);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.modal-age.active {
    display: flex;
}

.modal-content-age {
    background: linear-gradient(135deg, #2a0a0a 0%, #1a0505 100%);
    padding: 3rem 2.5rem;
    border-radius: 15px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 30px 80px rgba(255, 69, 0, 0.6);
    border: 3px solid #ff4500;
}

.age-icon-container {
    text-align: center;
    margin-bottom: 1.5rem;
}

.age-icon {
    font-size: 4rem;
    display: block;
}

.age-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 1rem;
    text-align: center;
    letter-spacing: 1px;
}

.age-info {
    text-align: center;
    font-size: 1.1rem;
    color: #e5e5e5;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.age-query {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ff6b35;
    margin: 1.5rem 0;
}

.age-button-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.age-button {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.age-button.accept {
    background: linear-gradient(135deg, #ff4500 0%, #dc2626 100%);
    color: white;
    box-shadow: 0 5px 20px rgba(255, 69, 0, 0.5);
}

.age-button.accept:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 69, 0, 0.7);
}

.age-button.reject {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    color: white;
    box-shadow: 0 5px 20px rgba(107, 114, 128, 0.4);
}

.age-button.reject:hover {
    transform: translateY(-3px);
}

.top-bar {
    background: rgba(15, 15, 15, 0.98);
    box-shadow: 0 4px 30px rgba(255, 69, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #ff4500;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.top-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
}

.brand svg {
    height: 45px;
    width: auto;
}

.top-nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.top-nav-link {
    color: #e5e5e5;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.top-nav-link:hover {
    color: #ff6b35;
    transform: translateY(-2px);
}

.burger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 5px;
}

.burger-bar {
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, #ff4500, #ff6b35);
    transition: 0.3s;
    border-radius: 3px;
}

.content-main {
    padding: 2rem 0;
}

.hero-zone {
    padding: 6rem 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.15) 0%, rgba(220, 38, 38, 0.15) 100%);
    border-radius: 25px;
    margin-bottom: 4rem;
    box-shadow: 0 15px 50px rgba(255, 69, 0, 0.3);
}

.main-headline {
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff4500, #ff6b35, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.main-subline {
    font-size: 1.4rem;
    color: #b0b0b0;
    margin-bottom: 3rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.hero-tags {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.tag-chip {
    background: rgba(255, 69, 0, 0.2);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    color: #ff6b35;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 69, 0, 0.4);
}

.intro-zone {
    padding: 4rem 0;
}

.zone-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.zone-title.center {
    text-align: center;
}

.intro-blocks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.intro-block {
    background: rgba(255, 69, 0, 0.05);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 69, 0, 0.2);
}

.block-text {
    font-size: 1.1rem;
    color: #d0d0d0;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.highlight-box {
    background: rgba(220, 38, 38, 0.1);
    padding: 2.5rem;
    border-radius: 15px;
    border: 3px solid #dc2626;
}

.highlight-heading {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
}

.highlight-content {
    font-size: 1.1rem;
    color: #d0d0d0;
    line-height: 1.8;
}

.features-zone {
    padding: 5rem 0;
    background: rgba(255, 69, 0, 0.05);
    border-radius: 25px;
    margin: 3rem 0;
}

.features-flex {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-box {
    background: rgba(15, 15, 15, 0.8);
    padding: 2.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 69, 0, 0.3);
}

.feature-box:hover {
    transform: translateY(-8px);
    border-color: #ff4500;
    box-shadow: 0 15px 40px rgba(255, 69, 0, 0.4);
}

.feature-symbol {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.feature-header {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.feature-body {
    font-size: 1.05rem;
    color: #d0d0d0;
    line-height: 1.8;
}

.game-zone {
    padding: 4rem 0;
}

.game-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #b0b0b0;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.game-display {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(255, 69, 0, 0.5);
    border: 4px solid #ff4500;
}

.game-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.notices-zone {
    padding: 4rem 0;
}

.notices-flex {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.notice-box {
    padding: 2.5rem;
    border-radius: 15px;
    border: 3px solid;
    background: rgba(15, 15, 15, 0.8);
}

.notice-box.danger {
    border-color: #dc2626;
    background: rgba(127, 29, 29, 0.2);
}

.notice-box.info {
    border-color: #3b82f6;
    background: rgba(30, 64, 175, 0.2);
}

.notice-box.warning {
    border-color: #f59e0b;
    background: rgba(146, 64, 14, 0.2);
}

.notice-header {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.notice-body {
    font-size: 1.05rem;
    color: #d0d0d0;
    line-height: 1.8;
}

.values-zone {
    padding: 4rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
}

.value-card {
    background: rgba(255, 69, 0, 0.08);
    padding: 3rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 69, 0, 0.3);
}

.value-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.value-content {
    font-size: 1.05rem;
    color: #d0d0d0;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.stats-zone {
    padding: 5rem 0;
}

.center-text {
    text-align: center;
}

.stats-intro {
    font-size: 1.15rem;
    color: #b0b0b0;
    max-width: 800px;
    margin: 0 auto 3.5rem;
    line-height: 1.8;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-card {
    text-align: center;
    background: rgba(255, 69, 0, 0.1);
    padding: 2.5rem 3.5rem;
    border-radius: 15px;
    box-shadow: 0 12px 40px rgba(255, 69, 0, 0.3);
    border: 3px solid #ff4500;
    min-width: 180px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff4500, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-desc {
    font-size: 1.1rem;
    color: #ff6b35;
    font-weight: 600;
    text-transform: uppercase;
}

.final-zone {
    padding: 3rem 0;
}

.final-card {
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.2) 0%, rgba(220, 38, 38, 0.2) 100%);
    padding: 3.5rem;
    border-radius: 20px;
    text-align: center;
    border: 3px solid #ff4500;
    box-shadow: 0 15px 50px rgba(255, 69, 0, 0.3);
}

.final-title {
    font-size: 2.3rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.final-text {
    font-size: 1.15rem;
    color: #d0d0d0;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.play-hero {
    padding: 4rem 0;
    background: rgba(255, 69, 0, 0.1);
    border-radius: 20px;
    margin-bottom: 3rem;
}

.play-lead {
    font-size: 1.3rem;
    color: #b0b0b0;
}

.instructions-zone {
    padding: 3rem 0;
}

.instructions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 2.5rem;
}

.instruction-item {
    background: rgba(255, 69, 0, 0.08);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(255, 69, 0, 0.3);
    transition: all 0.3s ease;
}

.instruction-item:hover {
    transform: translateY(-6px);
    border-color: #ff4500;
}

.instruction-icon {
    font-size: 3rem;
    margin-bottom: 1.2rem;
}

.instruction-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.instruction-text {
    font-size: 1.05rem;
    color: #d0d0d0;
    line-height: 1.7;
}

.gameplay-zone {
    padding: 3rem 0;
}

.full-game-display {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(255, 69, 0, 0.5);
    border: 4px solid #ff4500;
}

.reminder-zone {
    padding: 3rem 0;
}

.reminder-panel {
    background: rgba(255, 107, 53, 0.15);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    border: 3px solid #ff6b35;
}

.reminder-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
}

.reminder-content {
    font-size: 1.15rem;
    color: #d0d0d0;
    line-height: 1.8;
}

.legal-hero-section {
    padding: 3.5rem 0;
    background: rgba(255, 69, 0, 0.1);
    border-radius: 20px;
    margin-bottom: 3rem;
}

.legal-effective {
    font-size: 1.1rem;
    color: #b0b0b0;
    margin-top: 0.5rem;
}

.legal-document-section {
    padding: 2rem 0;
}

.legal-doc-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-item {
    background: rgba(255, 69, 0, 0.05);
    padding: 2.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border-left: 5px solid #ff4500;
}

.legal-item.critical {
    border-left-color: #dc2626;
    background: rgba(127, 29, 29, 0.15);
}

.legal-item h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
}

.legal-item p {
    font-size: 1.05rem;
    color: #d0d0d0;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.legal-item ul {
    color: #d0d0d0;
    margin-left: 2rem;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.legal-item li {
    margin-bottom: 0.6rem;
}

.legal-item strong {
    color: #ff6b35;
    font-weight: 700;
}

.bottom-bar {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    color: #e5e5e5;
    padding: 3.5rem 2rem;
    margin-top: 4rem;
    border-top: 4px solid #ff4500;
}

.footer-flex {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.footer-heading {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
}

.footer-desc {
    color: #b0b0b0;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.footer-resources {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.resource-link {
    color: #ff8c42;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.resource-link:hover {
    color: #ff6b35;
    padding-left: 0.6rem;
}

.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-menu-link {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.footer-menu-link:hover {
    color: #ff6b35;
    padding-left: 0.6rem;
}

.footer-copyright {
    color: #808080;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .burger {
        display: flex;
    }

    .top-nav {
        position: fixed;
        top: 75px;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: calc(100vh - 75px);
        background: rgba(15, 15, 15, 0.98);
        flex-direction: column;
        padding: 2rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 30px rgba(255, 69, 0, 0.5);
        align-items: flex-start;
        gap: 0;
        border-left: 3px solid #ff4500;
    }

    .top-nav.open {
        right: 0;
    }

    .top-nav-link {
        padding: 1rem 0;
        width: 100%;
        border-bottom: 1px solid rgba(255, 69, 0, 0.3);
    }

    .main-headline {
        font-size: 2.5rem;
    }

    .main-subline {
        font-size: 1.15rem;
    }

    .hero-tags {
        flex-direction: column;
        align-items: center;
    }

    .intro-blocks {
        grid-template-columns: 1fr;
    }

    .features-flex {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        gap: 1.5rem;
    }

    .age-button-group {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .main-headline {
        font-size: 2rem;
    }

    .zone-title {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2.8rem;
    }

    .container {
        padding: 0 1rem;
    }
}