@import url('https://fonts.googleapis.com/css2?family=Crimson+Pro:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --void-black: #0a0a0f;
    --void-deep: #12121a;
    --void-purple: #6b21a8;
    --void-violet: #a855f7;
    --void-glow: #c084fc;
    --silver: #d4d4d8;
    --mist: #71717a;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--void-black);
    color: var(--silver);
    line-height: 1.75;
    font-size: 16px;
}

/* Top Bar */
.top-bar {
    background: var(--void-deep);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(168, 85, 247, 0.2);
}

.top-bar-inner {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 30px;
}

.brand-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-symbol {
    width: 38px;
    height: 38px;
    border: 2px solid var(--void-violet);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.brand-symbol::after {
    content: '';
    width: 14px;
    height: 14px;
    background: var(--void-violet);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--void-glow);
}

.brand-name {
    font-family: 'Crimson Pro', serif;
    font-size: 1.9rem;
    font-weight: 600;
    color: var(--void-glow);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    gap: 35px;
}

.nav-menu a {
    color: var(--mist);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.25s;
}

.nav-menu a:hover {
    color: var(--void-glow);
}

.mobile-trigger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-trigger span {
    width: 24px;
    height: 2px;
    background: var(--void-violet);
    transition: 0.3s;
}

/* Welcome Section */
.welcome-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 30px 100px;
    background: 
        radial-gradient(circle at 20% 50%, rgba(107, 33, 168, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 30%, rgba(168, 85, 247, 0.1) 0%, transparent 35%),
        var(--void-black);
    text-align: center;
}

.welcome-content {
    max-width: 850px;
}

.welcome-content h1 {
    font-family: 'Crimson Pro', serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--silver);
    margin-bottom: 25px;
    line-height: 1.1;
}

.welcome-content h1 span {
    color: var(--void-glow);
}

.welcome-content .intro {
    font-size: 1.25rem;
    color: var(--mist);
    margin-bottom: 45px;
    line-height: 1.9;
}

.enter-btn {
    display: inline-block;
    padding: 18px 55px;
    background: transparent;
    border: 2px solid var(--void-violet);
    color: var(--void-glow);
    font-family: 'Crimson Pro', serif;
    font-size: 1.15rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.enter-btn:hover {
    background: var(--void-violet);
    color: var(--void-black);
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.5);
}

/* Notice Strip */
.notice-strip {
    background: var(--void-deep);
    padding: 70px 30px;
}

.notice-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.notice-item {
    text-align: center;
    padding: 35px 25px;
    border: 1px solid rgba(168, 85, 247, 0.15);
    background: rgba(18, 18, 26, 0.5);
}

.notice-item .emoji {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.notice-item h3 {
    font-family: 'Crimson Pro', serif;
    color: var(--void-glow);
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.notice-item p {
    color: var(--mist);
    font-size: 0.95rem;
}

/* Game Arena */
.game-arena {
    padding: 90px 30px;
    background: var(--void-black);
}

.arena-title {
    font-family: 'Crimson Pro', serif;
    font-size: 2.2rem;
    color: var(--void-glow);
    text-align: center;
    margin-bottom: 45px;
}

.game-viewport {
    max-width: 1050px;
    margin: 0 auto;
    background: var(--void-deep);
    border: 1px solid rgba(168, 85, 247, 0.3);
    padding: 8px;
}

.game-viewport iframe {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
}

/* Highlights */
.highlights {
    padding: 90px 30px;
    background: var(--void-deep);
}

.highlights-row {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.highlight-box {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.highlight-box .number {
    font-family: 'Crimson Pro', serif;
    font-size: 3.5rem;
    color: var(--void-glow);
    font-weight: 700;
}

.highlight-box .desc {
    color: var(--mist);
    font-size: 0.9rem;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Area */
.about-area {
    padding: 90px 30px;
    background: var(--void-black);
}

.about-wrapper {
    max-width: 850px;
    margin: 0 auto;
}

.about-wrapper h2 {
    font-family: 'Crimson Pro', serif;
    color: var(--void-glow);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 35px;
}

.about-wrapper p {
    color: var(--mist);
    margin-bottom: 25px;
    text-align: justify;
    font-size: 1.05rem;
}

/* Bottom Section */
.bottom-section {
    background: var(--void-deep);
    padding: 60px 30px 30px;
    border-top: 1px solid rgba(168, 85, 247, 0.2);
}

.bottom-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.bottom-col h4 {
    font-family: 'Crimson Pro', serif;
    color: var(--void-glow);
    font-size: 1.15rem;
    margin-bottom: 22px;
}

.bottom-col ul {
    list-style: none;
}

.bottom-col li {
    margin-bottom: 11px;
}

.bottom-col a {
    color: var(--mist);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.25s;
}

.bottom-col a:hover {
    color: var(--void-glow);
}

.bottom-note {
    text-align: center;
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid rgba(168, 85, 247, 0.1);
    color: var(--mist);
    font-size: 0.85rem;
}

/* Age Gate */
.age-gate {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 15, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.age-gate.hidden {
    display: none;
}

.age-box {
    background: var(--void-deep);
    border: 2px solid var(--void-violet);
    padding: 55px 45px;
    max-width: 500px;
    text-align: center;
    margin: 20px;
}

.age-box h2 {
    font-family: 'Crimson Pro', serif;
    color: var(--void-glow);
    font-size: 1.8rem;
    margin-bottom: 22px;
}

.age-box p {
    color: var(--mist);
    margin-bottom: 35px;
    line-height: 1.8;
}

.age-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.age-action {
    padding: 14px 40px;
    font-family: 'Crimson Pro', serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.25s;
}

.age-action.yes {
    background: var(--void-violet);
    color: white;
}

.age-action.no {
    background: transparent;
    border: 1px solid var(--mist);
    color: var(--mist);
}

.age-action:hover {
    transform: scale(1.05);
}

/* Page Templates */
.page-banner {
    padding: 140px 30px 60px;
    background: var(--void-deep);
    text-align: center;
}

.page-banner h1 {
    font-family: 'Crimson Pro', serif;
    color: var(--void-glow);
    font-size: 2.5rem;
}

.page-body {
    padding: 60px 30px;
    max-width: 850px;
    margin: 0 auto;
}

.page-body h2 {
    font-family: 'Crimson Pro', serif;
    color: var(--void-glow);
    font-size: 1.5rem;
    margin: 45px 0 18px;
}

.page-body p {
    color: var(--mist);
    margin-bottom: 20px;
    line-height: 1.85;
}

.page-body ul {
    margin: 18px 0 18px 28px;
    color: var(--mist);
}

.page-body li {
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 992px) {
    .notice-grid, .bottom-grid {
        grid-template-columns: 1fr;
    }
    
    .highlights-row {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .mobile-trigger {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--void-deep);
        flex-direction: column;
        padding: 25px 30px;
        gap: 18px;
        display: none;
        border-bottom: 1px solid rgba(168, 85, 247, 0.2);
    }
    
    .nav-menu.visible {
        display: flex;
    }
    
    .welcome-content h1 {
        font-size: 2.5rem;
    }
    
    .game-viewport iframe {
        height: 420px;
    }
    
    .age-actions {
        flex-direction: column;
    }
}
