* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(45deg, #2d3436 0%, #636e72 50%, #2d3436 100%);
    color: #dfe6e9;
    line-height: 1.7;
    min-height: 100vh;
}

h1, h2, h3, h4 {
    font-family: 'Russo One', sans-serif;
    letter-spacing: 1px;
}

/* Age Verify Overlay */
.age-verify-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.97);
    z-index: 9999999;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.age-verify-overlay.active {
    display: flex;
}

.age-verify-box {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    max-width: 500px;
    width: 100%;
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 25px 50px rgba(243, 156, 18, 0.5);
    border: 6px solid #ffffff;
}

.age-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.age-verify-box h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.age-verify-box p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: #2d3436;
    font-weight: 500;
}

.verify-note {
    font-style: italic;
    color: #ffffff;
    font-weight: 700;
}

.age-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.verify-btn {
    flex: 1;
    padding: 1.2rem 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Russo One', sans-serif;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.verify-yes {
    background: #27ae60;
    color: white;
}

.verify-yes:hover {
    background: #229954;
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(39, 174, 96, 0.4);
}

.verify-no {
    background: #c0392b;
    color: white;
}

.verify-no:hover {
    background: #a93226;
    transform: translateY(-3px);
}

/* Header */
.page-header {
    background: rgba(45, 52, 54, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 999999;
    border-bottom: 6px solid #f39c12;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-identity {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-name {
    font-family: 'Russo One', sans-serif;
    font-size: 2rem;
    color: #f39c12;
    letter-spacing: 3px;
    text-shadow: 0 0 15px rgba(243, 156, 18, 0.6);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-toggle span {
    width: 32px;
    height: 4px;
    background: #f39c12;
    margin: 4px 0;
    transition: 0.3s ease;
    border-radius: 3px;
}

.site-nav {
    display: flex;
    gap: 1.8rem;
    align-items: center;
}

.nav-item {
    color: #dfe6e9;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Russo One', sans-serif;
}

.nav-item:hover,
.nav-item.active {
    color: #f39c12;
    border-color: #f39c12;
    background: rgba(243, 156, 18, 0.1);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .site-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        height: 100vh;
        background: rgba(45, 52, 54, 0.98);
        flex-direction: column;
        padding: 8rem 2rem 2rem;
        transition: right 0.4s ease;
        border-left: 6px solid #f39c12;
        gap: 1rem;
    }

    .site-nav.open {
        right: 0;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        font-size: 1.3rem;
        padding: 1.2rem;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-8px, 9px);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-8px, -9px);
    }
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Intro Section */
.intro-section {
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.25) 0%, rgba(230, 126, 34, 0.25) 100%);
    padding: 6rem 2rem;
    text-align: center;
    border-bottom: 5px solid #f39c12;
}

.intro-container h1 {
    font-size: 3.8rem;
    color: #f39c12;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.6);
}

.intro-lead {
    font-size: 1.7rem;
    color: #dfe6e9;
    margin-bottom: 2rem;
    font-weight: 300;
}

.intro-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.intro-tag {
    background: rgba(243, 156, 18, 0.2);
    border: 4px solid #f39c12;
    padding: 1rem 2.2rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Overview Section */
.overview-section {
    padding: 5rem 2rem;
}

.overview-section h2 {
    font-size: 3rem;
    text-align: center;
    color: #f39c12;
    margin-bottom: 1.5rem;
}

.overview-text {
    text-align: center;
    font-size: 1.2rem;
    max-width: 950px;
    margin: 0 auto 4rem;
    line-height: 1.9;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.capability-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 20px;
    border: 4px solid rgba(243, 156, 18, 0.3);
    text-align: center;
    transition: all 0.3s ease;
}

.capability-card:hover {
    transform: translateY(-12px);
    border-color: #f39c12;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 35px rgba(243, 156, 18, 0.3);
}

.capability-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.capability-card h3 {
    font-size: 1.9rem;
    color: #f39c12;
    margin-bottom: 1rem;
}

.capability-card p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Featured Game Section */
.featured-game-section {
    padding: 5rem 2rem;
    background: rgba(0, 0, 0, 0.25);
}

.featured-game-section h2 {
    font-size: 3rem;
    text-align: center;
    color: #f39c12;
    margin-bottom: 1rem;
}

.game-description {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.game-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.4);
    padding: 2rem;
    border-radius: 20px;
    border: 6px solid #f39c12;
}

.game-wrapper.fullscreen {
    max-width: 100%;
}

.game-iframe {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 15px;
}

.game-reminder {
    margin-top: 2rem;
    padding: 1.8rem;
    background: rgba(243, 156, 18, 0.15);
    border-left: 8px solid #f39c12;
    border-radius: 10px;
}

/* Key Information Section */
.key-information-section {
    padding: 5rem 2rem;
}

.key-information-section h2 {
    font-size: 3rem;
    text-align: center;
    color: #f39c12;
    margin-bottom: 3rem;
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.info-card {
    padding: 3rem;
    border-radius: 20px;
    border: 5px solid;
}

.card-red {
    background: rgba(192, 57, 43, 0.1);
    border-color: #c0392b;
}

.card-blue {
    background: rgba(52, 152, 219, 0.1);
    border-color: #3498db;
}

.card-orange {
    background: rgba(230, 126, 34, 0.1);
    border-color: #e67e22;
}

.info-card h3 {
    font-size: 1.9rem;
    margin-bottom: 1rem;
}

.info-card p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Benefits Section */
.benefits-section {
    padding: 5rem 2rem;
    background: rgba(0, 0, 0, 0.25);
}

.benefits-section h2 {
    font-size: 3rem;
    text-align: center;
    color: #f39c12;
    margin-bottom: 3rem;
}

.benefits-list {
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-entry {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.benefit-marker {
    font-size: 4rem;
    color: #f39c12;
    font-family: 'Russo One', sans-serif;
    min-width: 80px;
    text-align: center;
}

.benefit-info h3 {
    font-size: 1.9rem;
    color: #f39c12;
    margin-bottom: 0.8rem;
}

.benefit-info p {
    font-size: 1.15rem;
    line-height: 1.9;
}

/* Platform Pillars Section */
.platform-pillars-section {
    padding: 5rem 2rem;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.pillar-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 15px;
    border: 3px solid rgba(243, 156, 18, 0.3);
    transition: all 0.3s ease;
}

.pillar-item:hover {
    border-color: #f39c12;
    background: rgba(255, 255, 255, 0.08);
}

.pillar-item h3 {
    font-size: 1.7rem;
    color: #f39c12;
    margin-bottom: 0.8rem;
}

.pillar-item p {
    font-size: 1.05rem;
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    padding: 5rem 2rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.25);
}

.cta-box h2 {
    font-size: 3rem;
    color: #f39c12;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    display: inline-block;
    padding: 1.5rem 4rem;
    background: #f39c12;
    color: #2d3436;
    font-size: 1.4rem;
    font-weight: 700;
    font-family: 'Russo One', sans-serif;
    text-decoration: none;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 5px solid #f39c12;
    text-transform: uppercase;
}

.cta-btn:hover {
    background: transparent;
    color: #f39c12;
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(243, 156, 18, 0.4);
}

/* Play Page */
.play-intro-section {
    padding: 4rem 2rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.25);
}

.play-intro-section h1 {
    font-size: 3.2rem;
    color: #f39c12;
    margin-bottom: 1rem;
}

.play-lead {
    font-size: 1.5rem;
    color: #dfe6e9;
}

.play-content-section {
    padding: 4rem 2rem;
}

.gameplay-instructions {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    border: 4px solid rgba(243, 156, 18, 0.3);
}

.gameplay-instructions h2 {
    color: #f39c12;
    margin-bottom: 1rem;
}

.play-list {
    list-style: none;
    margin: 1.8rem 0;
}

.play-list li {
    padding: 1.2rem 0;
    font-size: 1.15rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tech-note {
    margin-top: 1.8rem;
    padding: 1.2rem;
    background: rgba(243, 156, 18, 0.1);
    border-radius: 10px;
}

.play-alert {
    margin-top: 2rem;
    padding: 2.5rem;
    background: rgba(230, 126, 34, 0.15);
    border: 5px solid #e67e22;
    border-radius: 20px;
}

.play-alert h3 {
    color: #e67e22;
    margin-bottom: 1rem;
}

/* Legal Pages */
.legal-intro-section {
    padding: 4rem 2rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.25);
    border-bottom: 6px solid #f39c12;
}

.legal-intro-section h1 {
    font-size: 3.2rem;
    color: #f39c12;
    margin-bottom: 0.5rem;
}

.legal-date {
    font-style: italic;
    color: #95a5a6;
}

.legal-body-section {
    padding: 4rem 2rem;
}

.legal-content-block {
    max-width: 950px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    padding: 3.5rem;
    border-radius: 20px;
    border: 4px solid rgba(243, 156, 18, 0.2);
}

.legal-content-block h2 {
    color: #f39c12;
    font-size: 2.2rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content-block h2:first-child {
    margin-top: 0;
}

.legal-content-block p {
    margin-bottom: 1rem;
    line-height: 1.9;
    font-size: 1.05rem;
}

.legal-content-block ul {
    margin: 1rem 0 1rem 2.5rem;
    line-height: 1.9;
}

.legal-content-block li {
    margin-bottom: 0.7rem;
}

.terms-accept-block,
.privacy-summary-block,
.final-agreement {
    margin-top: 3rem;
    padding: 2.5rem;
    background: rgba(243, 156, 18, 0.15);
    border: 5px solid #f39c12;
    border-radius: 15px;
}

.important-notice {
    margin: 2rem 0;
    padding: 2.5rem;
    background: rgba(230, 126, 34, 0.15);
    border-left: 10px solid #e67e22;
    border-radius: 10px;
}

.final-agreement ul {
    list-style: none;
    margin-left: 0;
}

.final-agreement li {
    padding: 0.6rem 0;
    font-size: 1.15rem;
}

/* Footer */
.page-footer {
    background: rgba(45, 52, 54, 0.95);
    padding: 3rem 2rem 1.5rem;
    border-top: 6px solid #f39c12;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: #f39c12;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-col p {
    margin-bottom: 1rem;
    line-height: 1.8;
    font-size: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.footer-links a {
    color: #dfe6e9;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.footer-links a:hover {
    color: #f39c12;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(243, 156, 18, 0.3);
    color: #95a5a6;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .intro-container h1 {
        font-size: 2.5rem;
    }

    .intro-lead {
        font-size: 1.4rem;
    }

    .intro-features {
        flex-direction: column;
        align-items: center;
    }

    .intro-tag {
        width: 100%;
        max-width: 300px;
    }

    .overview-section h2,
    .featured-game-section h2,
    .key-information-section h2,
    .benefits-section h2,
    .cta-box h2 {
        font-size: 2.3rem;
    }

    .capabilities-grid,
    .info-cards-grid {
        grid-template-columns: 1fr;
    }

    .game-iframe {
        height: 500px;
    }

    .benefit-entry {
        flex-direction: column;
        text-align: center;
    }

    .benefit-marker {
        min-width: auto;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
    }

    .play-intro-section h1 {
        font-size: 2.4rem;
    }

    .legal-intro-section h1 {
        font-size: 2.4rem;
    }

    .legal-content-block {
        padding: 2.5rem 1.8rem;
    }

    .age-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .brand-name {
        font-size: 1.6rem;
    }

    .intro-container h1 {
        font-size: 2rem;
    }

    .game-iframe {
        height: 400px;
    }
}