* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: #2c3e50;
    line-height: 1.6;
    min-height: 100vh;
}

.age-verification {
    position: fixed;
    inset: 0;
    background: rgba(44, 62, 80, 0.97);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.age-verification.verified {
    display: none;
}

.verification-box {
    background: #ffffff;
    border-radius: 16px;
    padding: 50px 40px;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.verify-icon {
    font-size: 70px;
    margin-bottom: 20px;
}

.verification-box h2 {
    font-size: 28px;
    margin-bottom: 18px;
    color: #10b981;
    font-weight: 700;
}

.verification-box p {
    margin-bottom: 14px;
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
}

.verify-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.verify-buttons button {
    flex: 1;
    min-width: 150px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
}

.verify-yes {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.verify-yes:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.6);
}

.verify-no {
    background: #f1f5f9;
    color: #64748b;
    border: 2px solid #cbd5e1;
}

.verify-no:hover {
    background: #e2e8f0;
    border-color: #94a3b8;
}

.site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 25px;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 25px;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 26px;
    font-weight: 700;
    color: #10b981;
}

.brand-symbol {
    font-size: 32px;
}

.brand-text {
    letter-spacing: 2px;
}

.main-nav {
    display: flex;
    gap: 25px;
}

.nav-link {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 16px;
}

.nav-link:hover, .nav-link.active-link {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.bar {
    width: 28px;
    height: 3px;
    background: #10b981;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hero-area {
    padding: 70px 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    border-radius: 20px;
    margin: 40px auto;
}

.hero-content {
    text-align: center;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1e293b;
    line-height: 1.2;
}

.hero-text {
    font-size: 20px;
    color: #475569;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-badges {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.badge-item {
    background: #ffffff;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    font-size: 15px;
    color: #10b981;
}

.action-btn {
    display: inline-block;
    padding: 16px 45px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5);
}

.features-area {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 45px;
}

.section-title h2 {
    font-size: 42px;
    margin-bottom: 12px;
    color: #1e293b;
    font-weight: 700;
}

.section-title p {
    font-size: 18px;
    color: #475569;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.feature-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #10b981;
    font-weight: 700;
}

.feature-box p {
    color: #475569;
    line-height: 1.7;
    font-size: 16px;
}

.game-area {
    padding: 60px 0;
}

.game-container {
    background: #ffffff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
}

.game-embed {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 12px;
    background: #000;
}

.game-info {
    text-align: center;
    font-size: 16px;
    color: #475569;
}

.notices-area {
    padding: 60px 0;
}

.notices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.notice-panel {
    background: #ffffff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #10b981;
}

.notice-panel h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #10b981;
    font-weight: 700;
}

.notice-panel p {
    color: #475569;
    line-height: 1.7;
    font-size: 16px;
}

.content-area {
    padding: 60px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 40px;
}

.content-column h3 {
    font-size: 28px;
    margin-bottom: 18px;
    color: #10b981;
    font-weight: 700;
}

.content-column p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 16px;
}

.play-header {
    padding: 50px 0;
    text-align: center;
}

.play-header h1 {
    font-size: 46px;
    margin-bottom: 15px;
    color: #1e293b;
    font-weight: 700;
}

.play-header p {
    font-size: 20px;
    color: #475569;
}

.play-section {
    padding: 40px 0;
}

.play-frame {
    background: #ffffff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.play-embed {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 12px;
    background: #000;
}

.play-details {
    padding: 40px 0;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 30px;
}

.detail-box {
    background: #ffffff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.detail-box h3 {
    font-size: 24px;
    margin-bottom: 18px;
    color: #10b981;
    font-weight: 700;
}

.detail-box p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 14px;
    font-size: 16px;
}

.legal-section {
    padding: 50px 0;
}

.legal-section h1 {
    font-size: 46px;
    margin-bottom: 12px;
    color: #1e293b;
    font-weight: 700;
}

.last-updated {
    color: #94a3b8;
    margin-bottom: 40px;
    font-style: italic;
    font-size: 15px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 38px;
    margin-bottom: 18px;
    color: #10b981;
    font-weight: 700;
}

.legal-content p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 16px;
    font-size: 16px;
}

.legal-content ul {
    margin-left: 30px;
    margin-bottom: 16px;
    color: #475569;
}

.legal-content li {
    margin-bottom: 10px;
    line-height: 1.7;
    font-size: 16px;
}

.legal-content a {
    color: #06b6d4;
    text-decoration: none;
    font-weight: 600;
}

.legal-content a:hover {
    text-decoration: underline;
}

.site-footer {
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    padding: 50px 0 25px;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #10b981;
    font-weight: 700;
}

.footer-section p {
    color: #64748b;
    margin-bottom: 16px;
    line-height: 1.6;
    font-size: 15px;
}

.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-menu a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 15px;
}

.footer-menu a:hover {
    color: #10b981;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid #e2e8f0;
    color: #94a3b8;
    font-size: 14px;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 20px;
        gap: 10px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .main-nav.open {
        max-height: 400px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-text {
        font-size: 18px;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .details-grid {
        grid-template-columns: 1fr;
    }

    .game-embed {
        height: 450px;
    }

    .play-embed {
        height: 520px;
    }

    .verification-box {
        padding: 40px 30px;
    }

    .verify-icon {
        font-size: 60px;
    }

    .verify-buttons {
        flex-direction: column;
    }

    .verify-buttons button {
        width: 100%;
    }
}