@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700&family=Vollkorn:wght@400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cyan: #06b6d4;
    --cyan-light: #22d3ee;
    --cyan-glow: rgba(6, 182, 212, 0.4);
    --dark: #042f2e;
    --darker: #021716;
    --card: #0a3c3a;
    --teal: #5eead4;
    --white: #f0fdfa;
}

body {
    font-family: 'Rubik', sans-serif;
    background: var(--darker);
    color: var(--white);
    line-height: 1.7;
}

h1, h2, h3, h4 {
    font-family: 'Vollkorn', serif;
}

/* Navigation Strip */
.nav-strip {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(2, 23, 22, 0.94);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(6, 182, 212, 0.25);
}

.nav-row {
    max-width: 1350px;
    margin: 0 auto;
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-svg {
    width: 40px;
    height: 40px;
}

.logo-name {
    font-family: 'Vollkorn', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cyan);
}

.menu-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.menu-links a {
    color: var(--teal);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: 0.3s;
}

.menu-links a:hover {
    color: var(--cyan-light);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--cyan);
}

/* Wide Hero */
.wide-hero {
    padding: 140px 25px 90px;
    background: linear-gradient(180deg, var(--dark) 0%, var(--darker) 100%);
    position: relative;
}

.wide-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 20%, rgba(6, 182, 212, 0.08) 0%, transparent 50%);
}

.hero-container {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-container h1 {
    font-size: 3.2rem;
    margin-bottom: 22px;
    color: var(--white);
}

.hero-container h1 .highlight {
    color: var(--cyan);
}

.hero-container > p {
    font-size: 1.15rem;
    color: var(--teal);
    max-width: 650px;
    margin-bottom: 40px;
}

.notice-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 45px;
}

.notice-tag {
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid var(--cyan);
    padding: 12px 26px;
    border-radius: 5px;
    font-size: 0.85rem;
    color: var(--cyan-light);
    font-weight: 500;
}

.primary-btn {
    display: inline-block;
    background: var(--cyan);
    color: var(--darker);
    padding: 16px 45px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 6px;
    transition: 0.3s;
    box-shadow: 0 0 25px var(--cyan-glow);
}

.primary-btn:hover {
    background: var(--cyan-light);
    transform: translateY(-3px);
}

/* Game Zone */
.game-zone {
    padding: 80px 25px;
    background: var(--card);
}

.zone-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.zone-title {
    text-align: center;
    margin-bottom: 45px;
}

.zone-title h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: var(--white);
}

.zone-title p {
    color: var(--teal);
}

.game-box {
    background: var(--darker);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(6, 182, 212, 0.2);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.game-box iframe {
    width: 100%;
    height: 560px;
    border: none;
    display: block;
}

/* Highlights */
.highlights {
    padding: 80px 25px;
    background: var(--darker);
}

.highlights-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.highlight-card {
    background: var(--card);
    padding: 38px 28px;
    border-radius: 10px;
    text-align: center;
    border-top: 3px solid var(--cyan);
    transition: 0.3s;
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.highlight-icon {
    font-size: 2.8rem;
    margin-bottom: 18px;
}

.highlight-card h3 {
    font-size: 1.2rem;
    color: var(--cyan);
    margin-bottom: 12px;
}

.highlight-card p {
    color: var(--teal);
    font-size: 0.92rem;
}

/* Story Area */
.story-area {
    padding: 80px 25px;
    background: linear-gradient(135deg, var(--card) 0%, var(--darker) 100%);
}

.story-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.story-inner h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--white);
}

.story-inner p {
    color: var(--teal);
    margin-bottom: 18px;
    font-size: 1.02rem;
}

/* Footer */
.footer-section {
    background: #010e0d;
    padding: 50px 25px 28px;
    border-top: 1px solid rgba(6, 182, 212, 0.15);
}

.footer-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.support-area h4 {
    font-family: 'Rubik', sans-serif;
    font-size: 0.8rem;
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.support-area a {
    color: var(--teal);
    text-decoration: none;
    margin: 0 14px;
    font-size: 0.9rem;
    transition: 0.3s;
}

.support-area a:hover {
    color: var(--cyan-light);
}

.legal-text {
    color: var(--teal);
    font-size: 0.8rem;
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    opacity: 0.6;
}

/* Age Gate */
.age-gate {
    position: fixed;
    inset: 0;
    background: rgba(2, 23, 22, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.age-gate.inactive {
    display: none;
}

.gate-box {
    background: var(--card);
    padding: 50px;
    border-radius: 14px;
    text-align: center;
    max-width: 420px;
    border: 2px solid var(--cyan);
    box-shadow: 0 0 50px var(--cyan-glow);
}

.gate-box h2 {
    color: var(--cyan);
    font-size: 1.6rem;
    margin-bottom: 16px;
}

.gate-box p {
    color: var(--teal);
    margin-bottom: 28px;
}

.gate-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-allow, .btn-deny {
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: 0.3s;
}

.btn-allow {
    background: var(--cyan);
    color: var(--darker);
}

.btn-allow:hover {
    background: var(--cyan-light);
}

.btn-deny {
    background: rgba(94, 234, 212, 0.1);
    color: var(--teal);
    border: 1px solid var(--teal);
}

.btn-deny:hover {
    background: rgba(94, 234, 212, 0.2);
}

/* Page Layouts */
.page-header {
    padding: 140px 25px 55px;
    background: var(--card);
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.page-header h1 {
    font-size: 2.4rem;
    color: var(--white);
}

.page-body {
    max-width: 850px;
    margin: 0 auto;
    padding: 55px 25px;
}

.page-body h2 {
    color: var(--cyan);
    font-size: 1.4rem;
    margin: 38px 0 15px;
}

.page-body p {
    color: var(--teal);
    margin-bottom: 16px;
}

.page-body ul {
    color: var(--teal);
    padding-left: 24px;
    margin-bottom: 16px;
}

.page-body li {
    margin-bottom: 9px;
}

/* Responsive */
@media (max-width: 900px) {
    .highlights-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .menu-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--darker);
        flex-direction: column;
        padding: 20px 25px;
        gap: 15px;
        display: none;
        border-bottom: 1px solid rgba(6, 182, 212, 0.2);
    }
    
    .menu-links.open {
        display: flex;
    }
    
    .hero-container h1 {
        font-size: 2.3rem;
    }
    
    .notice-row {
        flex-direction: column;
    }
    
    .game-box iframe {
        height: 380px;
    }
    
    .gate-box {
        margin: 20px;
        padding: 35px 25px;
    }
}
