* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(to bottom, #1a1a2e 0%, #0f3443 100%);
    color: #e8e8e8;
    line-height: 1.7;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Age Gate */
.age-gate {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.97);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-gate.show {
    display: flex;
}

.age-gate-content {
    background: linear-gradient(135deg, #004d40 0%, #00bfa5 100%);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 191, 165, 0.4);
    border: 3px solid #00bfa5;
}

.age-gate-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.age-gate-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.age-gate-content p {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 1rem;
}

.age-gate-notice {
    font-size: 0.95rem;
    color: #e0f2f1;
}

.age-gate-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.age-btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.age-confirm {
    background: #fff;
    color: #004d40;
}

.age-confirm:hover {
    background: #e0f2f1;
    transform: scale(1.05);
}

.age-deny {
    background: #37474f;
    color: #fff;
}

.age-deny:hover {
    background: #546e7a;
}

/* Navigation */
.main-nav {
    background: rgba(0, 77, 64, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border-bottom: 2px solid #00bfa5;
}

.nav-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.brand-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: #00bfa5;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #e8e8e8;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-link:hover {
    color: #00bfa5;
    background: rgba(0, 191, 165, 0.1);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: #00bfa5;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hero Section */
.page-hero {
    position: relative;
    padding: 8rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 77, 64, 0.6) 0%, rgba(0, 191, 165, 0.4) 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23004d40" width="1200" height="600"/></svg>');
    background-size: cover;
    background-position: center;
    border-bottom: 3px solid #00bfa5;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
}

.hero-text {
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.8rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #e0f2f1;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-cta {
    margin-top: 2rem;
}

.btn-primary {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #00bfa5;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 25px rgba(0, 191, 165, 0.4);
}

.btn-primary:hover {
    background: #00e5c3;
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(0, 191, 165, 0.6);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #00bfa5;
    margin-bottom: 1rem;
}

.header-underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, #00bfa5, #004d40);
    margin: 0 auto;
    border-radius: 2px;
}

/* Intro Section */
.intro-section {
    padding: 6rem 2rem;
}

.intro-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

/* Key Info Cards */
.key-info {
    padding: 5rem 2rem;
    background: rgba(0, 77, 64, 0.2);
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 15px;
    border-left: 5px solid;
    transition: all 0.3s ease;
}

.card-red {
    border-left-color: #ff5252;
}

.card-blue {
    border-left-color: #448aff;
}

.card-green {
    border-left-color: #00bfa5;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 191, 165, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #00bfa5;
    margin-bottom: 1rem;
}

.info-card p {
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Game Showcase */
.game-showcase {
    padding: 6rem 2rem;
}

.showcase-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #b2dfdb;
}

.game-embed {
    max-width: 1200px;
    margin: 0 auto 2rem;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 3px solid #00bfa5;
}

.game-iframe {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
}

.game-disclaimer {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 82, 82, 0.1);
    border-radius: 10px;
    border: 1px solid #ff5252;
}

.game-disclaimer p {
    color: #ff8a80;
    font-weight: 600;
}

/* Platform Features */
.platform-features {
    padding: 6rem 2rem;
    background: rgba(0, 191, 165, 0.05);
}

.features-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border-top: 4px solid #00bfa5;
    transition: all 0.3s ease;
}

.feature-box:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.feature-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(0, 191, 165, 0.3);
    margin-bottom: 1rem;
}

.feature-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #00bfa5;
    margin-bottom: 1rem;
}

.feature-box p {
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Responsibility Section */
.responsibility-section {
    padding: 5rem 2rem;
}

.responsibility-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.responsibility-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #00bfa5;
    margin-bottom: 2rem;
}

.responsibility-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Play Page Specific */
.play-intro {
    padding: 4rem 2rem;
    text-align: center;
    background: rgba(0, 77, 64, 0.3);
}

.play-intro h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #00bfa5;
    margin-bottom: 1.5rem;
}

.play-description {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.game-instructions {
    padding: 3rem 2rem;
}

.instructions-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 15px;
    border-left: 5px solid #00bfa5;
}

.instructions-box h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #00bfa5;
    margin-bottom: 1.5rem;
}

.instructions-list {
    list-style: none;
    padding: 0;
}

.instructions-list li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-left: 0.5rem;
    line-height: 1.7;
}

.game-player {
    padding: 2rem 2rem 4rem;
}

.game-wrapper {
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 3px solid #00bfa5;
}

.game-iframe-play {
    width: 100%;
    height: 700px;
    border: none;
    display: block;
}

.play-notice {
    padding: 3rem 2rem;
}

.notice-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid #00bfa5;
    text-align: center;
}

.notice-box h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #00bfa5;
    margin-bottom: 1.5rem;
}

.notice-box p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Legal Pages */
.legal-page {
    padding: 4rem 2rem;
    min-height: 70vh;
}

.legal-page h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #00bfa5;
    margin-bottom: 0.5rem;
}

.last-updated {
    font-size: 0.95rem;
    color: #80cbc4;
    margin-bottom: 3rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    color: #00bfa5;
    margin-bottom: 1rem;
}

.legal-section p, .legal-section li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.highlight-section {
    background: rgba(0, 191, 165, 0.1);
    padding: 2rem;
    border-radius: 10px;
    border-left: 5px solid #00bfa5;
}

/* Footer */
.site-footer {
    background: rgba(0, 77, 64, 0.95);
    border-top: 3px solid #00bfa5;
    padding: 3rem 2rem 1rem;
    margin-top: 5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    font-family: 'Playfair Display', serif;
    color: #00bfa5;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 0.5rem;
}

.footer-list a {
    color: #e8e8e8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: #00bfa5;
}

.footer-text {
    color: #b2dfdb;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 191, 165, 0.3);
}

.footer-bottom p {
    color: #80cbc4;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(0, 77, 64, 0.98);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 2rem 0;
        gap: 0;
        border-top: 2px solid #00bfa5;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 0.8rem 0;
    }

    .nav-link {
        display: block;
        padding: 1rem;
        font-size: 1.2rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .intro-content p {
        font-size: 1.05rem;
    }

    .info-cards {
        grid-template-columns: 1fr;
    }

    .game-iframe {
        height: 450px;
    }

    .game-iframe-play {
        height: 500px;
    }

    .features-layout {
        grid-template-columns: 1fr;
    }

    .play-intro h1 {
        font-size: 2.3rem;
    }

    .legal-page h1 {
        font-size: 2.3rem;
    }

    .legal-section h2 {
        font-size: 1.6rem;
    }

    .age-gate-content {
        margin: 1rem;
        padding: 2rem;
    }

    .age-gate-content h2 {
        font-size: 1.8rem;
    }

    .age-gate-actions {
        flex-direction: column;
    }

    .age-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 5rem 1rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .brand-text {
        font-size: 1.4rem;
    }

    .nav-wrapper {
        padding: 1rem;
    }

    .container, .container-wide {
        padding: 0 1rem;
    }
}
