* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to bottom, #f0fdfa 0%, #e0f2fe 50%, #dbeafe 100%);
    color: #0f172a;
    line-height: 1.6;
    min-height: 100vh;
}

/* Age Gate */
.age-gate {
    position: fixed;
    inset: 0;
    background: rgba(6, 182, 212, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    backdrop-filter: blur(8px);
}

.age-gate.hidden {
    display: none;
}

.age-gate-box {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    max-width: 550px;
    width: 100%;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.gate-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.age-gate-box h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 2rem;
    color: #0e7490;
    margin-bottom: 1rem;
    font-weight: 800;
}

.age-gate-box p {
    margin-bottom: 1rem;
    color: #475569;
    font-size: 1.05rem;
}

.gate-emphasis {
    font-weight: 600;
    color: #0c4a6e;
    font-size: 1.2rem !important;
    margin-top: 1.5rem !important;
}

.gate-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0 1rem;
    flex-wrap: wrap;
}

.gate-btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Raleway', sans-serif;
}

.gate-btn.confirm {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.4);
}

.gate-btn.confirm:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(6, 182, 212, 0.5);
}

.gate-btn.deny {
    background: #e2e8f0;
    color: #64748b;
}

.gate-btn.deny:hover {
    background: #cbd5e1;
}

.gate-note {
    font-size: 0.9rem !important;
    color: #64748b !important;
    font-style: italic;
}

/* Navigation */
.top-nav {
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.brand-name {
    font-family: 'Raleway', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #0e7490;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: #475569;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: #06b6d4;
    transition: width 0.3s ease;
    border-radius: 3px;
}

.nav-link:hover {
    color: #06b6d4;
}

.nav-link:hover::before {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.toggle-line {
    width: 28px;
    height: 3px;
    background: #06b6d4;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.nav-toggle.active .toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}

.nav-toggle.active .toggle-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(9px, -9px);
}

/* Main Content */
.content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    color: white;
    padding: 4rem 3rem;
    border-radius: 30px;
    margin-bottom: 3rem;
    box-shadow: 0 20px 60px rgba(6, 182, 212, 0.3);
}

.hero-text h1 {
    font-family: 'Raleway', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.tagline {
    font-size: 1.4rem;
    opacity: 0.95;
    margin-bottom: 3rem;
}

.hero-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-icon {
    font-size: 2.5rem;
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-text strong {
    font-size: 1.1rem;
    font-weight: 700;
}

.badge-text span {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Intro Section */
.intro-section {
    margin-bottom: 3rem;
}

.intro-box {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #06b6d4;
}

.intro-box h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 2.2rem;
    color: #0e7490;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.intro-box p {
    margin-bottom: 1.2rem;
    color: #475569;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Game Showcase */
.game-showcase {
    margin-bottom: 3rem;
}

.showcase-header {
    text-align: center;
    margin-bottom: 2rem;
}

.showcase-header h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 2.5rem;
    color: #0e7490;
    margin-bottom: 1rem;
    font-weight: 800;
}

.showcase-header p {
    font-size: 1.2rem;
    color: #64748b;
}

.game-display {
    background: #1e293b;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    margin-bottom: 1.5rem;
}

.game-iframe {
    width: 100%;
    height: 650px;
    border: none;
    display: block;
}

.game-caption {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.game-caption p {
    color: #475569;
    font-size: 1.05rem;
}

/* Highlights */
.highlights {
    margin-bottom: 3rem;
}

.highlights h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 2.5rem;
    color: #0e7490;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 800;
}

.highlights-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.highlight-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(6, 182, 212, 0.2);
    border-color: #06b6d4;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.card-emoji {
    font-size: 2.5rem;
}

.card-header h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 1.4rem;
    color: #0e7490;
    font-weight: 700;
}

.highlight-card p {
    color: #475569;
    line-height: 1.8;
}

/* Responsibility Notice */
.responsibility-notice {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    border: 2px solid #fbbf24;
}

.responsibility-notice h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 2.2rem;
    color: #92400e;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.notice-content p {
    color: #78350f;
    margin-bottom: 1.2rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Final CTA */
.final-cta {
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 3rem;
}

.final-cta h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 2.5rem;
    color: #0e7490;
    margin-bottom: 1rem;
    font-weight: 800;
}

.final-cta p {
    color: #64748b;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(6, 182, 212, 0.4);
}

/* Play Page */
.play-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.play-intro h1 {
    font-family: 'Raleway', sans-serif;
    font-size: 3rem;
    color: #0e7490;
    margin-bottom: 1rem;
    font-weight: 800;
}

.play-intro p {
    font-size: 1.3rem;
    color: #64748b;
}

.game-area {
    margin-bottom: 3rem;
}

.play-guide {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.play-guide h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 2.2rem;
    color: #0e7490;
    margin-bottom: 2rem;
    font-weight: 700;
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.guide-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.guide-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.guide-content h3 {
    font-family: 'Raleway', sans-serif;
    color: #0e7490;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.guide-content p {
    color: #64748b;
    line-height: 1.7;
}

.play-disclaimer {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #fbbf24;
}

.play-disclaimer p {
    color: #78350f;
    line-height: 1.8;
    margin: 0;
}

/* Legal Pages */
.legal-page {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.legal-page h1 {
    font-family: 'Raleway', sans-serif;
    font-size: 2.8rem;
    color: #0e7490;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.legal-page h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 1.8rem;
    color: #0e7490;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-page p,
.legal-page ul,
.legal-page li {
    color: #475569;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-page ul {
    margin-left: 2rem;
    list-style: disc;
}

.document-date {
    color: #94a3b8;
    font-style: italic;
    margin-bottom: 2.5rem !important;
}

.emphasis-box {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #ef4444;
    margin: 2rem 0;
}

.emphasis-box h2 {
    margin-top: 0 !important;
    color: #991b1b !important;
}

.emphasis-box ul {
    list-style: none;
    margin-left: 0;
}

.emphasis-box li {
    padding: 0.5rem 0;
    color: #7f1d1d !important;
}

.final-notice {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 2.5rem;
    border: 2px solid #3b82f6;
}

.final-notice p {
    color: #1e3a8a;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

/* Footer */
.site-footer {
    background: white;
    border-top: 3px solid #06b6d4;
    padding: 3rem 2rem 1.5rem;
    margin-top: 4rem;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-column h4 {
    font-family: 'Raleway', sans-serif;
    color: #0e7490;
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.1rem;
}

.footer-column p {
    color: #64748b;
    line-height: 1.7;
}

.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-menu a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #06b6d4;
}

.footer-bar {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
    text-align: center;
    color: #94a3b8;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 75px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 75px);
        background: white;
        flex-direction: column;
        padding: 2rem;
        gap: 0;
        transition: right 0.3s ease;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-link {
        padding: 1rem 0;
        border-bottom: 1px solid #e2e8f0;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .tagline {
        font-size: 1.1rem;
    }

    .hero-badges {
        grid-template-columns: 1fr;
    }

    .game-iframe {
        height: 450px;
    }

    .highlights-container {
        grid-template-columns: 1fr;
    }

    .guide-grid {
        grid-template-columns: 1fr;
    }

    .content {
        padding: 2rem 1rem;
    }

    .intro-box,
    .play-guide,
    .legal-page {
        padding: 2rem 1.5rem;
    }
}
