* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Oswald', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

/* Age Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100000;
}

.modal-overlay.hidden {
    display: none;
}

.modal-box {
    background: linear-gradient(135deg, #FF5722 0%, #D84315 100%);
    padding: 50px 45px;
    border-radius: 15px;
    max-width: 550px;
    text-align: center;
    border: 5px solid #fff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-icon {
    font-size: 4.5em;
    margin-bottom: 20px;
}

.modal-title {
    color: #fff;
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.modal-text {
    color: #fff;
    font-size: 1.15em;
    margin-bottom: 25px;
    font-weight: 300;
}

.modal-info {
    background: rgba(255, 255, 255, 0.15);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.modal-info p {
    color: #fff;
    font-weight: 400;
    margin-bottom: 8px;
}

.modal-buttons {
    display: flex;
    gap: 15px;
}

.btn-accept, .btn-reject {
    flex: 1;
    padding: 18px 30px;
    font-size: 1.1em;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-accept {
    background: #fff;
    color: #FF5722;
}

.btn-accept:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.btn-reject {
    background: #666;
    color: #fff;
}

.btn-reject:hover {
    background: #444;
}

/* Header */
.site-header {
    background: linear-gradient(135deg, #FF5722 0%, #D84315 100%);
    padding: 20px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.site-name {
    font-size: 2em;
    font-weight: 700;
    color: #fff;
    letter-spacing: 4px;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.nav-item {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05em;
    padding: 10px 18px;
    border-radius: 6px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.nav-item:hover,
.nav-item.active {
    background: rgba(255, 255, 255, 0.2);
}

.menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-line {
    width: 30px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, #000 0%, #FF5722 50%, #D84315 100%);
    color: #fff;
    padding: 120px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255, 255, 255, 0.03) 35px, rgba(255, 255, 255, 0.03) 70px);
}

.banner-text {
    position: relative;
    z-index: 1;
}

.banner-heading {
    font-size: 4em;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 5px;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
}

.banner-subtext {
    font-size: 1.6em;
    margin-bottom: 40px;
    font-weight: 300;
}

.banner-badges {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.badge-item {
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 500;
    border: 2px solid rgba(255, 255, 255, 0.4);
    letter-spacing: 1px;
}

/* Main Content */
.page-content {
    padding: 80px 0;
}

/* Introduction */
.introduction {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 30px;
}

.intro-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: start;
}

.intro-heading {
    font-size: 2.8em;
    font-weight: 700;
    color: #FF5722;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.intro-paragraph {
    font-size: 1.15em;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.intro-highlight {
    background: linear-gradient(135deg, #FF5722, #D84315);
    color: #fff;
    padding: 40px 35px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(255, 87, 34, 0.3);
}

.intro-highlight h4 {
    font-size: 1.5em;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.highlight-list {
    list-style: none;
}

.highlight-list li {
    padding: 10px 0;
    font-size: 1.1em;
    font-weight: 300;
}

/* Critical Info */
.critical-info {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 30px;
}

.section-title {
    font-size: 2.5em;
    font-weight: 700;
    color: #FF5722;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: 3px;
}

.info-tiles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.info-tile {
    padding: 45px 35px;
    border-radius: 12px;
    color: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.info-tile.orange {
    background: linear-gradient(135deg, #FF5722, #FF7043);
}

.info-tile.red {
    background: linear-gradient(135deg, #D84315, #BF360C);
}

.info-tile.dark {
    background: linear-gradient(135deg, #424242, #212121);
}

.tile-icon {
    font-size: 4em;
    margin-bottom: 20px;
}

.tile-title {
    font-size: 1.7em;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.tile-content {
    font-size: 1.05em;
    line-height: 1.7;
    font-weight: 300;
}

/* Game Area */
.game-area {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 30px;
}

.game-intro {
    text-align: center;
    margin-bottom: 40px;
}

.game-desc {
    font-size: 1.2em;
    color: #666;
    margin-top: 10px;
}

.game-frame-container {
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.game-iframe {
    width: 100%;
    height: 700px;
    border: none;
    display: block;
}

.game-note {
    text-align: center;
    color: #777;
    font-size: 1.05em;
}

/* Features */
.features-area {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 30px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-box {
    background: #f9f9f9;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    border: 3px solid #e0e0e0;
    transition: all 0.3s ease;
}

.feature-box:hover {
    border-color: #FF5722;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 87, 34, 0.2);
}

.feature-icon {
    font-size: 3.5em;
    margin-bottom: 20px;
}

.feature-name {
    font-size: 1.4em;
    font-weight: 700;
    color: #FF5722;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.feature-info {
    font-size: 1em;
    color: #666;
    line-height: 1.7;
}

/* Responsibility */
.responsibility-area {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 30px;
}

.responsibility-box {
    background: #f9f9f9;
    padding: 50px 45px;
    border-radius: 12px;
    border-left: 8px solid #FF5722;
}

.responsibility-text {
    font-size: 1.15em;
    color: #555;
    margin-bottom: 35px;
}

.responsibility-points {
    display: grid;
    gap: 20px;
}

.resp-point {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #FF5722;
}

.resp-point strong {
    color: #FF5722;
    display: block;
    margin-bottom: 8px;
    font-size: 1.1em;
}

/* Final Call */
.final-call {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 30px;
}

.call-box {
    background: linear-gradient(135deg, #FF5722, #D84315);
    color: #fff;
    padding: 70px 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 12px 40px rgba(255, 87, 34, 0.3);
}

.call-heading {
    font-size: 3em;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.call-text {
    font-size: 1.4em;
    margin-bottom: 35px;
}

.call-button {
    display: inline-block;
    background: #fff;
    color: #FF5722;
    padding: 20px 50px;
    font-size: 1.3em;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    letter-spacing: 2px;
}

.call-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.3);
}

/* Footer */
.site-footer {
    background: #212121;
    color: #fff;
    padding: 60px 30px 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-title {
    font-size: 1.4em;
    font-weight: 700;
    margin-bottom: 20px;
    color: #FF5722;
    letter-spacing: 2px;
}

.footer-para {
    color: #ccc;
    line-height: 1.7;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 12px;
}

.footer-list a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: #FF5722;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
}

/* Play Page */
.page-hero {
    text-align: center;
    margin-bottom: 60px;
}

.page-hero-title {
    font-size: 3.5em;
    font-weight: 700;
    color: #FF5722;
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.page-hero-text {
    font-size: 1.3em;
    color: #666;
}

.player-section {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 30px;
}

.player-box {
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.fullscreen-player {
    width: 100%;
    height: 750px;
    border: none;
    display: block;
}

.gaming-info,
.important-info,
.support-section {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 30px;
}

.info-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.info-block {
    background: #f9f9f9;
    padding: 35px 30px;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
}

.block-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.block-icon {
    font-size: 2.5em;
}

.block-heading {
    font-size: 1.3em;
    color: #FF5722;
    font-weight: 700;
    letter-spacing: 1px;
}

.block-text {
    color: #666;
    line-height: 1.7;
}

.important-box {
    background: linear-gradient(135deg, #FF5722, #D84315);
    color: #fff;
    padding: 50px 45px;
    border-radius: 12px;
    border: 4px solid #fff;
}

.important-title {
    font-size: 2.2em;
    margin-bottom: 35px;
    letter-spacing: 2px;
}

.important-items {
    display: grid;
    gap: 20px;
}

.important-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
}

.item-marker {
    font-size: 1.5em;
    flex-shrink: 0;
}

.support-intro {
    text-align: center;
    font-size: 1.15em;
    color: #666;
    margin-bottom: 40px;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.support-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #f9f9f9;
    padding: 35px 25px;
    border-radius: 12px;
}

.support-num {
    width: 60px;
    height: 60px;
    background: #FF5722;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 20px;
}

.support-content h4 {
    font-size: 1.2em;
    color: #FF5722;
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

.support-content p {
    color: #666;
}

/* Document Pages */
.doc-header {
    background: linear-gradient(135deg, #FF5722, #D84315);
    color: #fff;
    padding: 80px 30px;
    text-align: center;
    margin-bottom: 60px;
}

.doc-main-title {
    font-size: 3.5em;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 4px;
}

.doc-subtitle {
    font-size: 1.3em;
}

.doc-effective {
    font-size: 1.1em;
    font-weight: 300;
}

.doc-content {
    max-width: 1000px;
    margin: 0 auto 80px;
    padding: 0 30px;
}

.legal-document {
    background: #fff;
    padding: 50px 45px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.doc-preamble {
    background: #fff3e0;
    padding: 30px;
    border-radius: 8px;
    border-left: 6px solid #FF5722;
    margin-bottom: 40px;
}

.doc-preamble p {
    font-size: 1.1em;
    color: #555;
    line-height: 1.8;
}

.doc-article {
    margin-bottom: 40px;
}

.doc-article h3 {
    font-size: 1.8em;
    color: #FF5722;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.doc-article h4 {
    font-size: 1.3em;
    color: #D84315;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 12px;
}

.doc-article p {
    font-size: 1.05em;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.doc-article ul {
    margin: 15px 0 15px 30px;
}

.doc-article li {
    margin-bottom: 10px;
    color: #555;
    line-height: 1.7;
}

.doc-notice {
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    padding: 35px;
    border-radius: 12px;
    border-left: 8px solid #FF5722;
    margin-top: 50px;
}

.doc-notice h4 {
    color: #FF5722;
    font-size: 1.6em;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 1px;
}

.doc-notice p {
    font-size: 1.1em;
    color: #333;
}

.doc-notice ul {
    list-style: none;
    margin-top: 15px;
}

.doc-notice li {
    padding: 8px 0;
    font-weight: 500;
}

.critical-alert {
    background: linear-gradient(135deg, #FF5722, #D84315);
    color: #fff;
    padding: 45px 40px;
    border-radius: 12px;
    border: 5px solid #fff;
    margin-bottom: 50px;
    text-align: center;
}

.alert-icon {
    font-size: 4.5em;
    margin-bottom: 20px;
}

.critical-alert h3 {
    font-size: 2.3em !important;
    margin-bottom: 20px !important;
    letter-spacing: 2px;
}

.critical-alert p {
    color: #fff !important;
    font-size: 1.1em;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .main-nav {
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: #D84315;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .main-nav.active {
        max-height: 500px;
    }

    .menu-btn {
        display: flex;
    }

    .banner-heading {
        font-size: 2.5em;
    }

    .intro-container {
        grid-template-columns: 1fr;
    }

    .game-iframe,
    .fullscreen-player {
        height: 450px;
    }

    .modal-box {
        padding: 30px 20px;
        margin: 20px;
    }

    .modal-buttons {
        flex-direction: column;
    }

    .features-grid,
    .info-blocks,
    .support-grid {
        grid-template-columns: 1fr;
    }

    .footer-sections {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-hero-title {
        font-size: 2.5em;
    }

    .banner-heading {
        font-size: 2em;
    }

    .call-heading {
        font-size: 2.2em;
    }

    .game-iframe,
    .fullscreen-player {
        height: 350px;
    }
}
