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

body {
    font-family: 'Inter', sans-serif;
    background: #0f172a;
    color: #e2e8f0;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Age Verification */
.age-verification-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.age-verification-modal.hidden {
    display: none;
}

.age-modal-content {
    background: #1e293b;
    padding: 3rem;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 25px 50px rgba(139, 92, 246, 0.3);
    border: 1px solid #8B5CF6;
}

.age-modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.age-emoji {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
}

.age-modal-header h2 {
    color: #8B5CF6;
    font-size: 2rem;
    font-weight: 700;
}

.age-modal-body p {
    color: #cbd5e1;
    margin-bottom: 1rem;
    text-align: center;
    line-height: 1.7;
}

.age-confirm-question {
    font-weight: 600;
    color: #e2e8f0;
    font-size: 1.1rem;
    margin-top: 1.5rem;
}

.age-modal-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-confirm,
.btn-deny {
    flex: 1;
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}

.btn-confirm {
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
    color: white;
}

.btn-confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.4);
}

.btn-deny {
    background: #334155;
    color: #cbd5e1;
}

.btn-deny:hover {
    background: #475569;
}

/* Navbar */
.navbar {
    background: #1e293b;
    border-bottom: 2px solid #8B5CF6;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: #8B5CF6;
}

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

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: #8B5CF6;
    border-radius: 3px;
    transition: all 0.3s;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.nav-link:hover,
.nav-link.active {
    color: #8B5CF6;
}

.nav-link.active {
    border-bottom-color: #8B5CF6;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #312E81, #1e1b4b);
    padding: 5rem 0;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #8B5CF6;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}

.hero-text {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.hero-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.5);
}

/* Features Section */
.features-section {
    background: #0f172a;
    padding: 5rem 0;
}

.features-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-box {
    background: #1e293b;
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid #334155;
    transition: all 0.3s;
}

.feature-box:hover {
    border-color: #8B5CF6;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-box h3 {
    color: #8B5CF6;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-box p {
    color: #cbd5e1;
    line-height: 1.8;
}

/* Game Section */
.game-section {
    background: #1e293b;
    padding: 5rem 0;
}

.game-section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #8B5CF6;
    margin-bottom: 3rem;
}

.game-container {
    background: #0f172a;
    border-radius: 15px;
    padding: 1.5rem;
    border: 2px solid #8B5CF6;
}

.game-display {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.game-iframe {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
}

.game-disclaimer {
    text-align: center;
    color: #cbd5e1;
    font-style: italic;
}

/* Advantages Section */
.advantages-section {
    background: #0f172a;
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #8B5CF6;
    margin-bottom: 3rem;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.advantage-card {
    background: #1e293b;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #334155;
    transition: all 0.3s;
}

.advantage-card:hover {
    border-color: #8B5CF6;
    transform: translateY(-5px);
}

.advantage-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.advantage-icon {
    font-size: 2rem;
}

.advantage-header h4 {
    color: #8B5CF6;
    font-size: 1.3rem;
    font-weight: 700;
}

.advantage-card p {
    color: #cbd5e1;
    line-height: 1.7;
}

/* Disclosures Section */
.disclosures-section {
    background: #1e293b;
    padding: 5rem 0;
}

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

.disclosure-item {
    background: #0f172a;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #8B5CF6;
}

.disclosure-item h4 {
    color: #8B5CF6;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.disclosure-item p {
    color: #cbd5e1;
    line-height: 1.7;
}

.item-warning {
    border-left-color: #F59E0B;
}

.item-info {
    border-left-color: #3B82F6;
}

.item-alert {
    border-left-color: #EF4444;
}

.item-notice {
    border-left-color: #10B981;
}

/* Footer */
.site-footer {
    background: #1e293b;
    padding: 3rem 0 1.5rem;
    border-top: 2px solid #8B5CF6;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    font-weight: 800;
    font-size: 1.3rem;
    color: #8B5CF6;
}

.footer-tagline {
    color: #94a3b8;
    font-size: 0.95rem;
}

.footer-links-section h4 {
    color: #8B5CF6;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links-list a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links-list a:hover {
    color: #8B5CF6;
}

.footer-copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Page Banner */
.page-banner {
    background: linear-gradient(135deg, #312E81, #1e1b4b);
    padding: 4rem 0;
    text-align: center;
}

.page-banner h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #8B5CF6;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}

.page-banner p {
    font-size: 1.2rem;
    color: #cbd5e1;
}

/* Document Section */
.document-section {
    background: #0f172a;
    padding: 4rem 0;
}

.document-content {
    background: #1e293b;
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid #334155;
}

.document-content h2 {
    color: #8B5CF6;
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.document-content h2:first-child {
    margin-top: 0;
}

.document-content p {
    color: #cbd5e1;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.document-content ul {
    margin: 1rem 0 1.5rem 2rem;
    color: #cbd5e1;
}

.document-content li {
    margin-bottom: 0.6rem;
    line-height: 1.7;
}

.doc-date {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    color: #94a3b8;
    font-style: italic;
}

.warning-block {
    background: #422006;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #F59E0B;
    margin-bottom: 2rem;
}

.warning-block h2 {
    color: #FCD34D !important;
    margin-top: 0 !important;
}

.warning-block p {
    color: #FDE68A;
}

.confirmation-block {
    background: #0f172a;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
    border: 1px solid #8B5CF6;
}

.confirmation-block h3 {
    color: #8B5CF6;
    margin-bottom: 1rem;
    font-weight: 700;
}

/* Play Page */
.play-section {
    background: #0f172a;
    padding: 4rem 0;
}

.play-game-container {
    background: #1e293b;
    border-radius: 15px;
    padding: 1.5rem;
    border: 2px solid #8B5CF6;
    margin-bottom: 2rem;
}

.play-game-display {
    border-radius: 10px;
    overflow: hidden;
}

.play-game-iframe {
    width: 100%;
    height: 700px;
    border: none;
    display: block;
}

.play-info-container {
    background: #1e293b;
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid #334155;
}

.play-info-container h3 {
    color: #8B5CF6;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.play-info-container > p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.play-info-list {
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.8rem 0;
    color: #cbd5e1;
}

.info-check {
    color: #8B5CF6;
    font-weight: bold;
    font-size: 1.3rem;
}

.play-info-notice {
    background: #0f172a;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #8B5CF6;
}

.play-info-notice p {
    color: #cbd5e1;
    line-height: 1.8;
    margin: 0;
}

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

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        flex-direction: column;
        background: #1e293b;
        width: 100%;
        padding: 2rem;
        transition: right 0.3s;
        gap: 1rem;
        border-bottom: 2px solid #8B5CF6;
    }

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

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    .features-wrapper {
        grid-template-columns: 1fr;
    }

    .game-iframe {
        height: 400px;
    }

    .play-game-iframe {
        height: 500px;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        justify-content: center;
    }

    .document-content {
        padding: 1.5rem;
    }

    .page-banner h1 {
        font-size: 2.2rem;
    }
}
