* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: #f8f9fa;
}

.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.age-gate.hidden {
    display: none;
}

.age-gate-box {
    background: white;
    padding: 60px 50px;
    border-radius: 10px;
    max-width: 550px;
    text-align: center;
    border: 4px solid #06b6d4;
}

.age-icon {
    font-size: 4em;
    margin-bottom: 20px;
}

.age-gate-box h2 {
    font-size: 2em;
    color: #06b6d4;
    margin-bottom: 20px;
    font-weight: 800;
}

.age-gate-box p {
    color: #555;
    margin-bottom: 30px;
    line-height: 1.7;
    font-size: 1.05em;
}

.age-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-confirm, .btn-deny {
    padding: 16px 32px;
    font-size: 1.05em;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Raleway', sans-serif;
    transition: all 0.3s ease;
}

.btn-confirm {
    background: #06b6d4;
    color: white;
}

.btn-confirm:hover {
    background: #0891b2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.4);
}

.btn-deny {
    background: #e5e7eb;
    color: #374151;
}

.btn-deny:hover {
    background: #d1d5db;
}

.site-header {
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.main-nav {
    padding: 0;
}

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-text {
    font-size: 1.8em;
    font-weight: 800;
    color: #06b6d4;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.menu-toggle .bar {
    width: 28px;
    height: 3px;
    background: #06b6d4;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translateY(10px);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-link {
    color: #374151;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05em;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #06b6d4;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #06b6d4;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: white;
        width: 100%;
        padding: 40px 0;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        gap: 0;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        text-align: center;
        padding: 15px 0;
        border-bottom: 1px solid #e5e7eb;
    }

    .nav-link::after {
        display: none;
    }
}

.content-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.hero-banner {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    padding: 80px 30px;
    color: white;
}

.hero-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5em;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.tagline {
    font-size: 1.3em;
    margin-bottom: 35px;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-cta {
    display: inline-block;
    background: white;
    color: #06b6d4;
    padding: 18px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-box {
    font-size: 12em;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.intro-block {
    background: white;
    padding: 80px 30px;
}

.intro-block h2 {
    font-size: 2.8em;
    color: #06b6d4;
    text-align: center;
    margin-bottom: 25px;
    font-weight: 800;
}

.intro-text {
    text-align: center;
    font-size: 1.2em;
    color: #555;
    max-width: 900px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

.grid-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.feature-box {
    background: #f8f9fa;
    padding: 40px 35px;
    border-radius: 10px;
    border-left: 5px solid #06b6d4;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.feature-emoji {
    font-size: 3em;
    display: block;
    margin-bottom: 20px;
}

.feature-box h3 {
    font-size: 1.6em;
    color: #06b6d4;
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-box p {
    color: #555;
    line-height: 1.8;
}

.game-showcase {
    background: #f8f9fa;
    padding: 80px 30px;
}

.game-showcase h2 {
    font-size: 2.8em;
    color: #06b6d4;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 800;
}

.showcase-intro {
    text-align: center;
    font-size: 1.2em;
    color: #555;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.game-embed {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    margin-bottom: 30px;
}

.game-iframe {
    width: 100%;
    height: 650px;
    border: none;
    display: block;
}

.game-notes {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.note-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05em;
    color: #555;
}

.note-icon {
    font-size: 1.5em;
}

.legal-notices {
    background: white;
    padding: 80px 30px;
}

.notice-card {
    background: #fef3c7;
    border: 3px solid #f59e0b;
    border-radius: 10px;
    padding: 45px;
}

.notice-card h3 {
    font-size: 2em;
    color: #f59e0b;
    margin-bottom: 30px;
    font-weight: 800;
    text-align: center;
}

.notice-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.notice-point strong {
    display: block;
    font-size: 1.3em;
    color: #f59e0b;
    margin-bottom: 10px;
    font-weight: 700;
}

.notice-point p {
    color: #555;
    line-height: 1.8;
    font-size: 1.05em;
}

.info-deep {
    background: #f8f9fa;
    padding: 80px 30px;
}

.split-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.split-left h2, .split-right h2 {
    font-size: 2.2em;
    color: #06b6d4;
    margin-bottom: 25px;
    font-weight: 800;
}

.split-left p, .split-right p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05em;
}

.community-stats {
    background: white;
    padding: 80px 30px;
}

.community-stats h2 {
    font-size: 2.8em;
    color: #06b6d4;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 800;
}

.stats-display {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.stat-box {
    background: #f8f9fa;
    padding: 50px 30px;
    border-radius: 10px;
    text-align: center;
    border-top: 5px solid #06b6d4;
}

.stat-value {
    font-size: 3.5em;
    font-weight: 800;
    color: #06b6d4;
    margin-bottom: 15px;
}

.stat-desc {
    font-size: 1.2em;
    color: #555;
    font-weight: 600;
}

.final-cta {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    padding: 80px 30px;
}

.cta-box {
    text-align: center;
    color: white;
}

.cta-box h2 {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: 800;
}

.cta-box p {
    font-size: 1.3em;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-button-large {
    display: inline-block;
    background: white;
    color: #06b6d4;
    padding: 20px 50px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cta-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.site-footer {
    background: #1f2937;
    color: white;
    padding: 60px 30px 30px;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
}

.footer-col h4 {
    font-size: 1.4em;
    margin-bottom: 20px;
    font-weight: 700;
    color: #06b6d4;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 15px;
}

.resource-links, .footer-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.resource-links a, .footer-nav a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.resource-links a:hover, .footer-nav a:hover {
    color: #06b6d4;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    max-width: 1400px;
    margin: 0 auto;
}

.play-hero {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    padding: 70px 30px;
    text-align: center;
    color: white;
}

.play-hero h1 {
    font-size: 3.5em;
    font-weight: 800;
    margin-bottom: 20px;
}

.play-subtitle {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
    line-height: 1.7;
}

.game-player {
    background: white;
    padding: 60px 0;
}

.full-width-game {
    margin-bottom: 60px;
}

.game-container-play {
    max-width: 100%;
    padding: 0 30px;
}

.game-iframe-full {
    width: 100%;
    height: 750px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.play-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.info-card {
    background: #f8f9fa;
    padding: 35px;
    border-radius: 10px;
    border-top: 4px solid #06b6d4;
}

.card-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.info-card h3 {
    font-size: 1.5em;
    color: #06b6d4;
    margin-bottom: 15px;
    font-weight: 700;
}

.info-card p {
    color: #555;
    line-height: 1.8;
}

.play-reminder-section {
    background: #f8f9fa;
    padding: 60px 30px;
}

.reminder-banner {
    background: white;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    border: 3px solid #06b6d4;
}

.reminder-banner h3 {
    font-size: 2em;
    color: #06b6d4;
    margin-bottom: 15px;
    font-weight: 800;
}

.reminder-banner p {
    font-size: 1.15em;
    color: #555;
    line-height: 1.8;
}

.legal-hero {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    padding: 70px 30px;
    text-align: center;
    color: white;
}

.legal-hero h1 {
    font-size: 3.5em;
    font-weight: 800;
    margin-bottom: 15px;
}

.legal-date {
    font-size: 1.1em;
    opacity: 0.9;
}

.legal-body {
    background: white;
    padding: 80px 30px;
}

.legal-document {
    max-width: 950px;
    margin: 0 auto;
}

.legal-document h2 {
    font-size: 2em;
    color: #06b6d4;
    margin-top: 50px;
    margin-bottom: 20px;
    font-weight: 700;
}

.legal-document h2:first-child {
    margin-top: 0;
}

.legal-document p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05em;
}

.legal-document ul {
    margin: 20px 0 20px 25px;
}

.legal-document li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-document a {
    color: #06b6d4;
    text-decoration: underline;
}

.legal-document a:hover {
    color: #0891b2;
}

.terms-summary {
    background: #f0f9ff;
    border-left: 5px solid #06b6d4;
    padding: 30px;
    margin-top: 50px;
    border-radius: 5px;
}

.terms-summary h3 {
    font-size: 1.7em;
    color: #06b6d4;
    margin-bottom: 15px;
    font-weight: 700;
}

.terms-summary p {
    color: #555;
    font-size: 1.1em;
}

.warning-box {
    background: #fef3c7;
    border-left-color: #f59e0b;
}

.warning-box h3 {
    color: #f59e0b;
}

.warning-box ul {
    margin-top: 20px;
    list-style: none;
}

.warning-box li strong {
    color: #f59e0b;
}

@media (max-width: 968px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 2.5em;
    }

    .visual-box {
        font-size: 8em;
    }

    .split-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .grid-features {
        grid-template-columns: 1fr;
    }

    .game-iframe, .game-iframe-full {
        height: 500px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .hero-text h1, .play-hero h1, .legal-hero h1 {
        font-size: 2em;
    }

    .tagline, .play-subtitle {
        font-size: 1.1em;
    }

    .intro-block h2, .game-showcase h2, .community-stats h2 {
        font-size: 2em;
    }

    .age-gate-box {
        padding: 40px 30px;
        margin: 20px;
    }

    .age-icon {
        font-size: 3em;
    }

    .game-iframe, .game-iframe-full {
        height: 400px;
    }
}
