* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f8f9fa;
    color: #2c3e50;
    line-height: 1.7;
}

/* Age Gate */
.age-gate {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.95), rgba(219, 39, 119, 0.95));
    z-index: 99999;
    justify-content: center;
    align-items: center;
}

.age-gate.show {
    display: flex;
}

.age-gate-box {
    background: white;
    padding: 50px 40px;
    border-radius: 15px;
    max-width: 450px;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.age-gate-box h2 {
    font-size: 32px;
    color: #ec4899;
    margin-bottom: 20px;
    font-weight: 700;
}

.age-gate-box p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

.age-note {
    font-size: 14px;
    color: #888;
}

.age-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    justify-content: center;
}

.age-buttons button {
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.age-yes {
    background: #ec4899;
    color: white;
}

.age-yes:hover {
    background: #db2777;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(236, 72, 153, 0.4);
}

.age-no {
    background: #e5e7eb;
    color: #6b7280;
}

.age-no:hover {
    background: #d1d5db;
}

/* Top Navigation */
.top-nav {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 18px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-name {
    font-size: 26px;
    font-weight: 800;
    color: #ec4899;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.menu-toggle .bar {
    width: 28px;
    height: 3px;
    background: #ec4899;
    transition: 0.3s;
    border-radius: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 10px;
}

.nav-links a {
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-links a:hover,
.nav-links a.nav-active {
    background: #fce7f3;
    color: #ec4899;
}

/* Main Content */
.main-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 30px;
}

.welcome-banner {
    text-align: center;
    margin-bottom: 50px;
    padding: 60px 20px;
    background: linear-gradient(135deg, #ec4899, #db2777);
    border-radius: 20px;
    color: white;
    box-shadow: 0 15px 40px rgba(236, 72, 153, 0.3);
}

.welcome-banner h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
}

.tagline {
    font-size: 20px;
    font-weight: 400;
}

/* Card Section */
.card-section {
    margin-bottom: 60px;
}

.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.info-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.card-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.info-card h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ec4899;
}

.info-card p {
    color: #6b7280;
    line-height: 1.8;
}

/* Important Notices */
.important-notices {
    margin-bottom: 60px;
}

.important-notices h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 40px;
}

.notice-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.notice-card {
    padding: 35px;
    border-radius: 15px;
    border-left: 5px solid;
}

.notice-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.notice-card p {
    line-height: 1.8;
    color: #4b5563;
}

.alert-red {
    background: #fef2f2;
    border-color: #ef4444;
}

.alert-red h3 {
    color: #dc2626;
}

.alert-blue {
    background: #eff6ff;
    border-color: #3b82f6;
}

.alert-blue h3 {
    color: #2563eb;
}

.alert-orange {
    background: #fff7ed;
    border-color: #f97316;
}

.alert-orange h3 {
    color: #ea580c;
}

/* Featured Game */
.featured-game {
    margin-bottom: 60px;
}

.featured-game h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
}

.game-intro {
    text-align: center;
    color: #6b7280;
    font-size: 18px;
    margin-bottom: 40px;
}

.game-embed {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.game-embed iframe {
    width: 100%;
    height: 650px;
    border: none;
}

.game-note {
    max-width: 900px;
    margin: 30px auto 0;
    padding: 25px;
    background: #f3f4f6;
    border-radius: 12px;
}

.game-note p {
    margin-bottom: 12px;
    color: #4b5563;
}

.game-note p:last-child {
    margin-bottom: 0;
}

/* Features Showcase */
.features-showcase {
    margin-bottom: 60px;
}

.features-showcase h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 40px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.feature-item {
    background: white;
    padding: 35px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.feature-emoji {
    font-size: 48px;
    display: block;
    margin-bottom: 15px;
}

.feature-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #ec4899;
    margin-bottom: 10px;
}

.feature-item p {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.7;
}

/* Responsibility Statement */
.responsibility-statement {
    margin-bottom: 60px;
}

.responsibility-content {
    background: white;
    padding: 50px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.responsibility-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #ec4899;
    margin-bottom: 20px;
}

.responsibility-content p {
    color: #4b5563;
    line-height: 1.9;
    max-width: 900px;
    margin: 0 auto;
    font-size: 16px;
}

/* Footer */
.site-footer {
    background: white;
    padding: 60px 30px 30px;
    border-top: 1px solid #e5e7eb;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    color: #ec4899;
    margin-bottom: 15px;
}

.footer-col p {
    color: #6b7280;
    line-height: 1.8;
    font-size: 14px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-col a:hover {
    color: #ec4899;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #e5e7eb;
    color: #9ca3af;
    font-size: 14px;
}

/* Legal Pages */
.legal-page {
    background: white;
    padding: 60px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    max-width: 1000px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 42px;
    font-weight: 800;
    color: #ec4899;
    margin-bottom: 10px;
}

.updated-date {
    color: #9ca3af;
    font-size: 14px;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    margin-top: 40px;
    margin-bottom: 15px;
}

.legal-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #374151;
    margin-top: 25px;
    margin-bottom: 12px;
}

.legal-content p {
    color: #4b5563;
    line-height: 1.9;
    margin-bottom: 15px;
}

.legal-content ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-content ul li {
    color: #4b5563;
    margin-bottom: 10px;
    line-height: 1.8;
}

.terms-summary,
.privacy-highlights,
.disclaimer-summary-box {
    background: #fce7f3;
    padding: 30px;
    border-radius: 12px;
    margin-top: 40px;
    border-left: 4px solid #ec4899;
}

.terms-summary h3,
.privacy-highlights h3,
.disclaimer-summary-box h3 {
    color: #ec4899;
    font-size: 22px;
    margin-bottom: 15px;
}

.disclaimer-warning {
    background: #fef3c7;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #f59e0b;
    margin-bottom: 30px;
}

.disclaimer-warning h2 {
    color: #d97706;
    font-size: 26px;
    margin: 0 0 15px 0;
}

.acceptance-notice {
    background: #ec4899;
    color: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    margin-top: 40px;
}

.acceptance-notice p {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

/* Play Page Specific */
.play-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 50px 20px;
    background: linear-gradient(135deg, #ec4899, #db2777);
    border-radius: 20px;
    color: white;
    box-shadow: 0 15px 40px rgba(236, 72, 153, 0.3);
}

.play-header h1 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 15px;
}

.play-header p {
    font-size: 18px;
    font-weight: 400;
}

.play-instructions {
    margin-top: 50px;
    margin-bottom: 50px;
}

.play-instructions h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 35px;
}

.instruction-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.instruction-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.instruction-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #ec4899;
    margin-bottom: 12px;
}

.instruction-card p {
    color: #6b7280;
    line-height: 1.8;
    font-size: 15px;
}

.play-disclaimer-box {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.play-disclaimer-box h2 {
    font-size: 28px;
    font-weight: 700;
    color: #ec4899;
    margin-bottom: 15px;
}

.play-disclaimer-box p {
    color: #4b5563;
    line-height: 1.9;
    font-size: 16px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 100px 30px 30px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
        transition: right 0.3s ease;
        gap: 0;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        padding: 18px 20px;
        font-size: 18px;
        border-radius: 0;
        border-bottom: 1px solid #f3f4f6;
    }

    .welcome-banner h1,
    .play-header h1 {
        font-size: 36px;
    }

    .tagline {
        font-size: 18px;
    }

    .card-container,
    .notice-cards,
    .feature-grid,
    .instruction-grid {
        grid-template-columns: 1fr;
    }

    .game-embed iframe {
        height: 450px;
    }

    .legal-page {
        padding: 40px 25px;
    }

    .legal-page h1 {
        font-size: 32px;
    }

    .responsibility-content {
        padding: 35px 25px;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 30px 20px;
    }

    .welcome-banner,
    .play-header {
        padding: 40px 15px;
    }

    .welcome-banner h1,
    .play-header h1 {
        font-size: 28px;
    }

    .game-embed iframe {
        height: 350px;
    }

    .age-gate-box {
        margin: 20px;
        padding: 35px 25px;
    }

    .age-buttons {
        flex-direction: column;
    }

    .age-buttons button {
        width: 100%;
    }
}
