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

body {
    font-family: 'Roboto', sans-serif;
    background: #0f0f23;
    color: #e0e0e0;
    line-height: 1.6;
}

/* Age Gate */
.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.95) 0%, rgba(79, 70, 229, 0.95) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.age-gate.hidden {
    display: none;
}

.age-gate-card {
    background: #1a1a35;
    padding: 50px 45px;
    border-radius: 20px;
    max-width: 520px;
    text-align: center;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(124, 58, 237, 0.5);
}

.age-gate-icon {
    font-size: 80px;
    margin-bottom: 25px;
}

.age-gate-title {
    font-size: 36px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 900;
}

.age-gate-text {
    font-size: 17px;
    color: #d0d0d0;
    margin-bottom: 12px;
}

.age-gate-subtext {
    font-size: 16px;
    color: #b0b0b0;
    margin-bottom: 10px;
}

.age-gate-note {
    font-size: 14px;
    color: #9ca3af;
    margin-bottom: 35px;
}

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

.age-btn {
    padding: 16px 35px;
    border: none;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
}

.age-yes {
    background: #7c3aed;
    color: #fff;
}

.age-yes:hover {
    background: #6d28d9;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.5);
}

.age-no {
    background: #ef4444;
    color: #fff;
}

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

/* Navigation */
.top-bar {
    background: #1a1a35;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.site-title {
    font-size: 28px;
    font-weight: 900;
    color: #7c3aed;
    letter-spacing: 1px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.toggle-bar {
    width: 28px;
    height: 3px;
    background: #7c3aed;
    margin: 4px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

.nav-link {
    color: #d0d0d0;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    padding: 8px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #7c3aed;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: #7c3aed;
}

/* Hero */
.hero-area {
    background: linear-gradient(135deg, #1a1a35 0%, #0f0f23 100%);
    padding: 100px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stars-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(2px 2px at 20% 30%, white, transparent),
                      radial-gradient(2px 2px at 60% 70%, white, transparent),
                      radial-gradient(1px 1px at 50% 50%, white, transparent),
                      radial-gradient(1px 1px at 80% 10%, white, transparent),
                      radial-gradient(2px 2px at 90% 60%, white, transparent),
                      radial-gradient(1px 1px at 33% 90%, white, transparent);
    background-size: 200% 200%;
    animation: stars 60s linear infinite;
    opacity: 0.6;
}

@keyframes stars {
    from { background-position: 0 0; }
    to { background-position: 200% 200%; }
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.hero-heading {
    font-size: 58px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.hero-text {
    font-size: 20px;
    color: #d0d0d0;
    margin-bottom: 45px;
    line-height: 1.7;
}

.hero-features {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-feature {
    background: rgba(124, 58, 237, 0.2);
    border: 2px solid rgba(124, 58, 237, 0.5);
    padding: 15px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-emoji {
    font-size: 24px;
}

.feature-text {
    color: #fff;
    font-weight: 700;
    font-size: 15px;
}

/* Sections */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.welcome-section {
    padding: 90px 0;
    background: #0f0f23;
}

.welcome-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: center;
}

.section-heading {
    font-size: 42px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 25px;
}

.section-heading.center {
    text-align: center;
}

.welcome-text p {
    font-size: 17px;
    color: #b0b0b0;
    line-height: 1.9;
}

.visual-box {
    background: #1a1a35;
    padding: 40px 35px;
    border-radius: 18px;
    text-align: center;
    border: 2px solid rgba(124, 58, 237, 0.3);
}

.visual-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.visual-box h3 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
}

.visual-box p {
    color: #b0b0b0;
    line-height: 1.7;
}

/* Highlights */
.highlights-section {
    padding: 90px 0;
    background: #1a1a35;
}

.highlights-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.highlight-item {
    padding: 40px 30px;
    background: #0f0f23;
    border-radius: 18px;
    text-align: center;
    border: 2px solid rgba(124, 58, 237, 0.3);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    border-color: #7c3aed;
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.3);
}

.highlight-icon-wrapper {
    margin-bottom: 25px;
}

.highlight-icon {
    font-size: 55px;
}

.highlight-item h3 {
    font-size: 26px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
}

.highlight-item p {
    color: #b0b0b0;
    line-height: 1.8;
}

/* Info Notices */
.info-notices {
    padding: 90px 0;
    background: #0f0f23;
}

.notices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

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

.notice-danger {
    background: rgba(239, 68, 68, 0.1);
    border-color: #ef4444;
}

.notice-info {
    background: rgba(59, 130, 246, 0.1);
    border-color: #3b82f6;
}

.notice-warning {
    background: rgba(249, 115, 22, 0.1);
    border-color: #f97316;
}

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

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

/* Game Section */
.game-section {
    padding: 90px 0;
    background: #1a1a35;
}

.game-description {
    text-align: center;
    font-size: 18px;
    color: #b0b0b0;
    margin-bottom: 45px;
}

.game-wrapper {
    background: #0f0f23;
    padding: 20px;
    border-radius: 18px;
    border: 3px solid #7c3aed;
}

.game-frame {
    width: 100%;
    height: 650px;
    border: none;
    border-radius: 12px;
}

.game-note {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 35px;
    padding: 22px 30px;
    background: rgba(124, 58, 237, 0.15);
    border-radius: 12px;
    border: 2px solid rgba(124, 58, 237, 0.4);
}

.note-icon {
    font-size: 30px;
}

.game-note p {
    color: #d0d0d0;
    font-weight: 500;
    line-height: 1.7;
}

/* Benefits */
.benefits-section {
    padding: 90px 0;
    background: #0f0f23;
}

.benefits-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-col {
    padding: 35px 30px;
    background: #1a1a35;
    border-radius: 15px;
    border: 2px solid rgba(124, 58, 237, 0.3);
}

.benefit-num {
    width: 60px;
    height: 60px;
    background: #7c3aed;
    color: #fff;
    font-size: 28px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 20px;
}

.benefit-col h4 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 12px;
    font-weight: 700;
}

.benefit-col p {
    color: #b0b0b0;
    line-height: 1.8;
}

/* Play Page */
.page-header {
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
    padding: 70px 40px;
    text-align: center;
    color: #fff;
}

.page-title {
    font-size: 50px;
    font-weight: 900;
    margin-bottom: 15px;
}

.page-desc {
    font-size: 18px;
    opacity: 0.95;
}

.play-section {
    padding: 80px 0;
    background: #0f0f23;
}

.game-wrapper-large {
    background: #1a1a35;
    padding: 18px;
    border-radius: 18px;
    border: 3px solid #7c3aed;
    margin-bottom: 60px;
}

.game-frame-large {
    width: 100%;
    height: 750px;
    border: none;
    border-radius: 12px;
}

.play-guide {
    margin-bottom: 50px;
}

.guide-heading {
    font-size: 38px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 35px;
    text-align: center;
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.guide-item {
    background: #1a1a35;
    padding: 32px 28px;
    border-radius: 15px;
    border: 2px solid rgba(124, 58, 237, 0.3);
    text-align: center;
}

.guide-emoji {
    font-size: 42px;
    display: block;
    margin-bottom: 18px;
}

.guide-item h4 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 12px;
    font-weight: 700;
}

.guide-item p {
    color: #b0b0b0;
    line-height: 1.7;
}

.play-warning-box {
    background: rgba(239, 68, 68, 0.1);
    border: 3px solid #ef4444;
    border-radius: 15px;
    padding: 38px 35px;
}

.play-warning-box h3 {
    font-size: 27px;
    color: #fff;
    margin-bottom: 22px;
    font-weight: 700;
}

.warning-text p {
    color: #c0c0c0;
    margin-bottom: 14px;
    line-height: 1.8;
}

/* Legal Pages */
.legal-section {
    padding: 80px 0;
    background: #0f0f23;
}

.legal-document {
    background: #1a1a35;
    padding: 55px 50px;
    border-radius: 18px;
    border: 2px solid rgba(124, 58, 237, 0.3);
}

.legal-document h2 {
    font-size: 34px;
    font-weight: 900;
    color: #fff;
    margin-top: 45px;
    margin-bottom: 22px;
}

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

.legal-document h3 {
    font-size: 26px;
    font-weight: 700;
    color: #e0e0e0;
    margin-top: 32px;
    margin-bottom: 16px;
}

.legal-document p {
    color: #b0b0b0;
    margin-bottom: 20px;
    line-height: 1.9;
}

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

.legal-document li {
    color: #b0b0b0;
    margin-bottom: 10px;
    line-height: 1.8;
}

.terms-summary,
.privacy-summary,
.disclaimer-summary {
    background: rgba(124, 58, 237, 0.15);
    border: 2px solid #7c3aed;
    border-radius: 15px;
    padding: 35px;
    margin-top: 45px;
}

.terms-summary h3,
.privacy-summary h3,
.disclaimer-summary h3 {
    margin-top: 0;
    font-size: 27px;
    color: #fff;
}

.important-alert {
    background: rgba(239, 68, 68, 0.15);
    border: 2px solid #ef4444;
    border-radius: 15px;
    padding: 38px;
    margin-bottom: 45px;
}

.important-alert h2 {
    margin-top: 0;
}

.final-agreement {
    background: rgba(124, 58, 237, 0.2);
    border: 2px solid #7c3aed;
    border-radius: 15px;
    padding: 35px;
    margin-top: 45px;
    text-align: center;
}

.final-agreement p {
    margin: 0;
    font-size: 18px;
    color: #fff;
}

/* Footer */
.site-footer {
    background: #1a1a35;
    padding: 70px 40px 35px 40px;
    border-top: 2px solid rgba(124, 58, 237, 0.3);
}

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

.footer-section h4 {
    color: #7c3aed;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-section p {
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 18px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.footer-links a:hover {
    color: #7c3aed;
}

.footer-bottom {
    text-align: center;
    padding-top: 35px;
    border-top: 2px solid rgba(124, 58, 237, 0.2);
}

.footer-bottom p {
    color: #888;
    font-size: 14px;
}

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

    .nav-links {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: #1a1a35;
        width: 100%;
        padding: 30px 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        transition: left 0.3s ease;
        gap: 0;
    }

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

    .nav-links li {
        padding: 15px 40px;
    }

    .hero-heading {
        font-size: 40px;
    }

    .hero-text {
        font-size: 18px;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
    }

    .hero-feature {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .section-heading {
        font-size: 34px;
    }

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

    .game-frame,
    .game-frame-large {
        height: 500px;
    }

    .legal-document {
        padding: 35px 25px;
    }

    .age-gate-card {
        margin: 20px;
        padding: 35px 28px;
    }

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

    .age-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .game-frame,
    .game-frame-large {
        height: 400px;
    }

    .container,
    .nav-container,
    .page-header,
    .site-footer {
        padding-left: 20px;
        padding-right: 20px;
    }
}