* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    background: #f5f7fa;
    color: #2d3748;
    line-height: 1.7;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

/* Age Gate */
.age-gate {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.age-gate.active {
    display: flex;
}

.age-gate-content {
    background: white;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    max-width: 550px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
}

.age-gate-icon {
    font-size: 4rem;
    margin-bottom: 25px;
}

.age-gate-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 20px;
}

.age-gate-content p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 15px;
}

.age-gate-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 35px;
}

.age-gate-buttons button {
    padding: 15px 45px;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Raleway', sans-serif;
}

.btn-confirm {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    color: white;
}

.btn-confirm:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(6, 182, 212, 0.4);
}

.btn-decline {
    background: #e5e7eb;
    color: #4a5568;
}

.btn-decline:hover {
    background: #d1d5db;
    transform: translateY(-3px);
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 1.8rem;
    font-weight: 800;
    color: #06b6d4;
}

.menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
}

.menu-line {
    width: 28px;
    height: 3px;
    background: #2d3748;
    transition: 0.3s;
    border-radius: 2px;
}

.navigation {
    display: flex;
    gap: 35px;
}

.nav-item {
    color: #4a5568;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    font-size: 1rem;
}

.nav-item:hover {
    color: #06b6d4;
}

/* Hero Area */
.hero-area {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    padding: 90px 25px;
    text-align: center;
    color: white;
}

.hero-text h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 25px;
}

.hero-lead {
    font-size: 1.4rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

.hero-tags {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 28px;
    border-radius: 25px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

/* Key Notices */
.key-notices {
    padding: 80px 25px;
    background: white;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: #2d3748;
    margin-bottom: 60px;
}

.notices-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.notice-item {
    background: #f9fafb;
    padding: 40px;
    border-radius: 15px;
    border-top: 5px solid #06b6d4;
    transition: transform 0.3s, box-shadow 0.3s;
}

.notice-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.notice-emoji {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.notice-item h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 15px;
}

.notice-item p {
    color: #4a5568;
    line-height: 1.8;
}

/* Game Showcase */
.game-showcase {
    padding: 80px 25px;
    background: #f5f7fa;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 750px;
    margin: 0 auto 45px;
}

.game-box {
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
}

.game-iframe {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 15px;
}

/* Benefits */
.benefits {
    padding: 80px 25px;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: #f9fafb;
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.benefit-card:hover {
    border-color: #06b6d4;
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 15px;
}

.benefit-card p {
    color: #4a5568;
    line-height: 1.8;
}

/* About Platform */
.about-platform {
    padding: 80px 25px;
    background: #f5f7fa;
}

.about-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #06b6d4;
    margin-bottom: 30px;
}

.about-content p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.stat-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #06b6d4;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: #4a5568;
    font-weight: 600;
}

/* Final CTA */
.final-cta {
    padding: 90px 25px;
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-content > p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #06b6d4;
    padding: 18px 55px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.cta-note {
    margin-top: 25px;
    font-size: 0.95rem;
    opacity: 0.85;
}

/* Play Page */
.page-hero {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    padding: 70px 25px;
    text-align: center;
    color: white;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.page-desc {
    font-size: 1.3rem;
    opacity: 0.95;
}

.gameplay-guide {
    padding: 70px 25px;
    background: white;
}

.guide-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.guide-card {
    background: #f9fafb;
    padding: 35px;
    border-radius: 15px;
    text-align: center;
}

.guide-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.guide-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 15px;
}

.guide-card p {
    color: #4a5568;
    line-height: 1.7;
}

.play-section {
    padding: 70px 25px;
    background: #f5f7fa;
}

.play-container {
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
}

.play-frame {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 15px;
}

.play-reminder {
    padding: 70px 25px;
    background: white;
}

.reminder-box {
    background: #fef3c7;
    padding: 40px;
    border-radius: 15px;
    border-left: 5px solid #f59e0b;
    text-align: center;
}

.reminder-box h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #92400e;
    margin-bottom: 20px;
}

.reminder-box p {
    font-size: 1.15rem;
    color: #78350f;
    line-height: 1.8;
}

/* Legal Pages */
.legal-meta {
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
}

.legal-content {
    padding: 70px 25px;
    background: white;
}

.legal-body {
    max-width: 900px;
    margin: 0 auto;
}

.legal-body h2 {
    font-size: 1.9rem;
    font-weight: 700;
    color: #06b6d4;
    margin-top: 45px;
    margin-bottom: 20px;
}

.legal-body h2:first-child {
    margin-top: 0;
}

.legal-body p {
    color: #4a5568;
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* Footer */
.footer {
    background: #1f2937;
    color: #d1d5db;
    padding: 70px 25px 25px;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 45px;
    margin-bottom: 45px;
}

.footer-block h4 {
    font-size: 1.4rem;
    color: #06b6d4;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-block p {
    line-height: 1.8;
    margin-bottom: 15px;
}

.resource-links,
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.resource-links a,
.footer-nav a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

.resource-links a:hover,
.footer-nav a:hover {
    color: #06b6d4;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .menu-btn {
        display: flex;
    }

    .navigation {
        position: fixed;
        top: 73px;
        left: -100%;
        width: 100%;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: left 0.3s;
    }

    .navigation.active {
        left: 0;
    }

    .nav-item {
        padding: 15px 25px;
        display: block;
        border-bottom: 1px solid #f3f4f6;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-lead {
        font-size: 1.1rem;
    }

    .section-heading {
        font-size: 2rem;
    }

    .about-layout {
        grid-template-columns: 1fr;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .game-iframe,
    .play-frame {
        height: 400px;
    }

    .hero-tags {
        flex-direction: column;
        align-items: center;
    }
}
