* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(to bottom, #0c4a6e, #164e63, #155e75);
    color: #1f2937;
    line-height: 1.6;
    min-height: 100vh;
}

.age-verification {
    display: none;
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, #0c4a6e 0%, #06b6d4 100%);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.age-verification.active {
    display: flex;
}

.verification-panel {
    background: white;
    padding: 4rem 3.5rem;
    border-radius: 15px;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7);
}

.verify-icon {
    font-size: 5rem;
    margin-bottom: 2rem;
}

.verification-panel h2 {
    color: #0891b2;
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.verification-panel p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 1rem;
}

.verify-question {
    color: #1f2937;
    font-weight: 600;
    margin-top: 2rem;
}

.verify-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
    justify-content: center;
}

.verify-btn {
    padding: 1.2rem 2.8rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}

.verify-btn.yes {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    color: white;
}

.verify-btn.yes:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(6, 182, 212, 0.4);
}

.verify-btn.no {
    background: #6b7280;
    color: white;
}

.verify-btn.no:hover {
    background: #4b5563;
}

.site-header {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 0;
}

.nav-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.site-title {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-btn span {
    width: 30px;
    height: 3px;
    background: #06b6d4;
    border-radius: 3px;
    transition: all 0.3s;
}

.main-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.main-menu a {
    color: #4b5563;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.main-menu a:hover {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    color: white;
}

.main-menu a.active {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    color: white;
}

.hero-banner {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.9) 0%, rgba(8, 145, 178, 0.9) 100%);
    padding: 6rem 2rem;
    text-align: center;
    color: white;
}

.hero-wrap h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-desc {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: inline-block;
    background: white;
    color: #0891b2;
    padding: 1.3rem 3rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.hero-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.page-main {
    background: #f9fafb;
}

.content-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.warning-panel {
    background: white;
    padding: 4rem 0;
    border-bottom: 5px solid #06b6d4;
}

.warning-panel h2 {
    color: #0891b2;
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    text-align: center;
    font-weight: 800;
}

.warning-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.warning-box {
    background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%);
    padding: 2rem;
    border-radius: 12px;
    border-left: 5px solid #06b6d4;
}

.warning-box h3 {
    color: #0891b2;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.warning-box p {
    color: #1f2937;
    line-height: 1.7;
}

.about-panel {
    padding: 5rem 0;
}

.about-panel h2 {
    color: #0891b2;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 800;
}

.large-text {
    font-size: 1.15rem;
    line-height: 2;
    color: #374151;
    margin-bottom: 1.8rem;
    text-align: justify;
}

.game-showcase {
    padding: 5rem 0;
    background: white;
}

.game-showcase h2 {
    color: #0891b2;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 800;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 3rem;
}

.game-embed {
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.game-embed iframe {
    width: 100%;
    height: 700px;
    border: none;
}

.game-caption {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.15rem;
    color: #6b7280;
}

.features-panel {
    padding: 5rem 0;
}

.features-panel h2 {
    color: #0891b2;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 800;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.feature-item {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
}

.feature-item:hover {
    transform: translateY(-10px);
}

.feature-emoji {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.feature-item h3 {
    color: #0891b2;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-item p {
    color: #4b5563;
    line-height: 1.8;
}

.values-panel {
    padding: 5rem 0;
    background: white;
}

.values-panel h2 {
    color: #0891b2;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 800;
}

.values-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 3rem;
    flex-wrap: wrap;
    gap: 3rem;
}

.value-stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 4.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-text {
    display: block;
    font-size: 1.15rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

.page-footer {
    background: #0c4a6e;
    color: #e0f2fe;
    padding: 4rem 0 2rem;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: #7dd3fc;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-col p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.support-links, .legal-links {
    list-style: none;
}

.support-links li, .legal-links li {
    margin-bottom: 0.8rem;
}

.support-links a, .legal-links a {
    color: #bae6fd;
    text-decoration: none;
    transition: color 0.3s;
}

.support-links a:hover, .legal-links a:hover {
    color: white;
}

.copyright-text {
    color: #7dd3fc;
    font-size: 0.9rem;
    margin-top: 1.5rem;
}

.page-title {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    padding: 4rem 0;
    text-align: center;
    color: white;
}

.page-title h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.page-title p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.gameplay-area {
    padding: 4rem 0;
    background: white;
}

.game-player {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.game-player iframe {
    width: 100%;
    height: 800px;
    border: none;
}

.info-panel {
    padding: 4rem 0;
}

.info-panel h2 {
    color: #0891b2;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 800;
}

.info-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.info-box {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.info-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.info-box h3 {
    color: #0891b2;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.info-box p {
    color: #4b5563;
    line-height: 1.8;
}

.notice-banner {
    padding: 4rem 0;
    background: white;
}

.notice-content {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 6px solid #f59e0b;
}

.notice-content h3 {
    color: #92400e;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.notice-content p {
    color: #78350f;
    font-size: 1.15rem;
    line-height: 1.8;
}

.legal-doc {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    margin: 3rem 0;
}

.legal-segment {
    margin-bottom: 3rem;
}

.legal-segment h2 {
    color: #0891b2;
    font-size: 1.9rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.legal-segment p {
    color: #374151;
    line-height: 1.9;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.legal-segment ul {
    margin-left: 2.5rem;
    margin-bottom: 1rem;
}

.legal-segment li {
    color: #374151;
    line-height: 1.9;
    margin-bottom: 0.7rem;
}

.legal-segment.highlighted {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 2rem;
    border-radius: 12px;
    border-left: 6px solid #06b6d4;
}

.legal-segment.highlighted h2 {
    color: #0c4a6e;
}

@media (max-width: 768px) {
    .menu-btn {
        display: flex;
    }

    .main-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .main-menu.open {
        max-height: 500px;
    }

    .main-menu a {
        padding: 1.2rem 2rem;
        border-radius: 0;
        border-bottom: 1px solid #e5e7eb;
    }

    .hero-wrap h1 {
        font-size: 2.2rem;
    }

    .hero-desc {
        font-size: 1.1rem;
    }

    .game-embed iframe {
        height: 450px;
    }

    .game-player iframe {
        height: 500px;
    }

    .page-title h1 {
        font-size: 2rem;
    }

    .legal-doc {
        padding: 1.5rem;
    }
}
