@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Lato:wght@300;400;700&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    background: #0d0d0d;
    color: #f5f5f5;
    line-height: 1.7;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top, #1a1a2e 0%, #0d0d0d 50%, #000 100%);
    z-index: -1;
}

/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(13, 13, 13, 0.98) 0%, rgba(13, 13, 13, 0.9) 100%);
    z-index: 9999;
    border-bottom: 1px solid #d4af37;
}

.header-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    padding: 18px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #d4af37;
    text-decoration: none;
    letter-spacing: 4px;
}

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

.mobile-menu-btn span {
    width: 26px;
    height: 2px;
    background: #d4af37;
    transition: 0.3s ease;
}

.mobile-menu-btn.open span:first-child {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.open span:last-child {
    transform: rotate(-45deg) translate(5px, -5px);
}

.main-nav ul {
    display: flex;
    gap: 40px;
    list-style: none;
}

.main-nav a {
    font-family: 'Cinzel', serif;
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #d4af37;
}

/* Page Content */
.page-content {
    margin-top: 90px;
    min-height: calc(100vh - 90px);
}

/* Hero Banner */
.hero-banner {
    padding: 100px 30px;
    text-align: center;
    position: relative;
}

.hero-banner::after {
    content: '☀';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 400px;
    opacity: 0.03;
    z-index: -1;
}

.hero-banner h1 {
    font-family: 'Cinzel', serif;
    font-size: 3.8rem;
    color: #d4af37;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-banner .tagline {
    font-size: 1.4rem;
    color: #aaa;
    max-width: 800px;
    margin: 0 auto 40px;
    font-weight: 300;
}

/* Info Panels */
.info-panels {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 40px 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.panel {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(13, 13, 13, 0.8) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 35px;
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    text-align: center;
}

.panel-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.panel h3 {
    font-family: 'Cinzel', serif;
    color: #d4af37;
    font-size: 1.3rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.panel p {
    color: #999;
    font-size: 1rem;
}

/* Game Display */
.game-display {
    padding: 60px 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.game-display h2 {
    font-family: 'Cinzel', serif;
    text-align: center;
    color: #d4af37;
    font-size: 2.4rem;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.game-frame {
    background: #000;
    border: 2px solid #d4af37;
    overflow: hidden;
}

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

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 1400px;
    margin: 60px auto;
}

.feature-item {
    padding: 50px 35px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: background 0.3s;
}

.feature-item:hover {
    background: rgba(212, 175, 55, 0.05);
}

.feature-item span {
    font-size: 2.8rem;
    display: block;
    margin-bottom: 20px;
}

.feature-item h4 {
    font-family: 'Cinzel', serif;
    color: #d4af37;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.feature-item p {
    color: #888;
    font-size: 0.95rem;
}

/* Text Content */
.text-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 40px;
}

.text-content h1 {
    font-family: 'Cinzel', serif;
    color: #d4af37;
    font-size: 2.8rem;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: 2px;
}

.text-content h2 {
    font-family: 'Cinzel', serif;
    color: #d4af37;
    font-size: 1.4rem;
    margin: 40px 0 18px;
    letter-spacing: 1px;
}

.text-content p {
    color: #aaa;
    margin-bottom: 18px;
    font-size: 1.05rem;
}

.text-content ul {
    color: #aaa;
    margin: 20px 0 20px 25px;
}

.text-content li {
    margin-bottom: 10px;
}

/* Site Footer */
.site-footer {
    background: #080808;
    border-top: 1px solid #d4af37;
    padding: 60px 30px 40px;
    margin-top: 80px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-inner h4 {
    font-family: 'Cinzel', serif;
    color: #d4af37;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.support-links {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.support-links a {
    color: #777;
    text-decoration: none;
    transition: color 0.3s;
}

.support-links a:hover {
    color: #d4af37;
}

.copyright {
    color: #555;
    font-size: 0.9rem;
    padding-top: 30px;
    border-top: 1px solid #222;
}

/* Age Gate */
.age-gate {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

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

.age-gate-box {
    background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
    border: 2px solid #d4af37;
    padding: 60px;
    text-align: center;
    max-width: 480px;
}

.age-gate-box h2 {
    font-family: 'Cinzel', serif;
    color: #d4af37;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.age-gate-box p {
    color: #999;
    margin-bottom: 35px;
}

.age-gate-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.age-gate-btn {
    font-family: 'Cinzel', serif;
    padding: 14px 45px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 1px;
}

.age-gate-btn.confirm {
    background: #d4af37;
    color: #000;
    border: none;
}

.age-gate-btn.confirm:hover {
    background: #f0c850;
}

.age-gate-btn.deny {
    background: transparent;
    color: #d4af37;
    border: 1px solid #d4af37;
}

.age-gate-btn.deny:hover {
    background: rgba(212, 175, 55, 0.1);
}

/* Responsive */
@media (max-width: 900px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(13, 13, 13, 0.98);
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: transform 0.4s ease;
    }

    .main-nav.visible {
        transform: translateX(0);
    }

    .main-nav ul {
        flex-direction: column;
        text-align: center;
        gap: 35px;
    }

    .main-nav a {
        font-size: 1.3rem;
    }

    .hero-banner h1 {
        font-size: 2.4rem;
    }

    .hero-banner .tagline {
        font-size: 1.1rem;
    }

    .game-frame iframe {
        height: 480px;
    }

    .age-gate-box {
        margin: 20px;
        padding: 40px 30px;
    }

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