@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;900&family=Philosopher:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #0d0a07;
    --bg-warm: #1a1410;
    --gold-primary: #c9a227;
    --gold-light: #e8d48b;
    --gold-dark: #8b7019;
    --cream: #f5efe0;
    --text-secondary: #b5a996;
    --card-bg: rgba(26, 20, 16, 0.92);
    --border-gold: rgba(201, 162, 39, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Philosopher', serif;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-warm) 50%, var(--bg-dark) 100%);
    min-height: 100vh;
    color: var(--cream);
    line-height: 1.8;
}

.top-bar {
    background: linear-gradient(90deg, var(--bg-dark), var(--bg-warm), var(--bg-dark));
    border-bottom: 2px solid var(--gold-primary);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-bar-inner {
    max-width: 1800px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.brand {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
    letter-spacing: 4px;
}

.brand-symbol {
    width: 45px;
    height: 45px;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    font-family: 'Cinzel', serif;
    color: var(--cream);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 2px;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover {
    color: var(--gold-primary);
}

.nav-menu a::before {
    content: '◆';
    position: absolute;
    left: -20px;
    opacity: 0;
    color: var(--gold-primary);
    font-size: 0.6rem;
    transition: opacity 0.3s;
}

.nav-menu a:hover::before {
    opacity: 1;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    width: 30px;
    height: 2px;
    background: var(--gold-primary);
    transition: all 0.3s;
}

.menu-toggle.open span:first-child {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open span:last-child {
    transform: rotate(-45deg) translate(5px, -5px);
}

.main-content {
    min-height: 100vh;
}

.banner {
    background: radial-gradient(ellipse at top, rgba(201, 162, 39, 0.08) 0%, transparent 60%);
    padding: 5rem 2rem 4rem;
    text-align: center;
    border-bottom: 1px solid var(--border-gold);
}

.banner h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 900;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
    letter-spacing: 6px;
    text-transform: uppercase;
}

.banner p {
    font-size: 1.15rem;
    max-width: 850px;
    margin: 0 auto;
    color: var(--text-secondary);
}

.alert-boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 3rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.alert-box {
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    background: var(--card-bg);
    border: 1px solid var(--border-gold);
    padding: 2rem;
    text-align: center;
    position: relative;
}

.alert-box::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gold-primary);
}

.alert-box .symbol {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.alert-box h3 {
    font-family: 'Cinzel', serif;
    color: var(--gold-primary);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}

.alert-box p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.gameplay-area {
    padding: 4rem 2rem;
    max-width: 1600px;
    margin: 0 auto;
}

.gameplay-area h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    text-align: center;
    color: var(--gold-light);
    margin-bottom: 2rem;
    letter-spacing: 3px;
}

.game-frame {
    background: var(--card-bg);
    border: 2px solid var(--gold-dark);
    padding: 1rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 30px rgba(201, 162, 39, 0.05);
}

.game-frame iframe {
    width: 100%;
    height: 620px;
    border: none;
    display: block;
}

.description-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.description-section h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.description-section p {
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

.two-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin: 4rem 0;
}

.column-block {
    background: var(--card-bg);
    border: 1px solid var(--border-gold);
    padding: 2.5rem;
}

.column-block h3 {
    font-family: 'Cinzel', serif;
    color: var(--gold-primary);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.column-block p {
    color: var(--text-secondary);
}

.text-page {
    padding: 6rem 2rem 4rem;
    max-width: 950px;
    margin: 0 auto;
}

.text-page h1 {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    color: var(--gold-light);
    margin-bottom: 2rem;
    letter-spacing: 4px;
    border-bottom: 2px solid var(--gold-dark);
    padding-bottom: 1rem;
}

.text-page h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    color: var(--gold-primary);
    margin: 2.5rem 0 1rem;
    letter-spacing: 1px;
}

.text-page p, .text-page li {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.text-page ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.bottom-section {
    background: linear-gradient(180deg, transparent, var(--bg-dark));
    border-top: 2px solid var(--gold-dark);
    padding: 3rem 2rem;
    margin-top: 4rem;
}

.bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.gaming-links {
    margin-bottom: 2rem;
}

.gaming-links h4 {
    font-family: 'Cinzel', serif;
    color: var(--gold-primary);
    font-size: 0.95rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.gaming-links a {
    color: var(--text-secondary);
    text-decoration: none;
    margin: 0 1.5rem;
    transition: color 0.3s;
}

.gaming-links a:hover {
    color: var(--gold-primary);
}

.bottom-text {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.age-gate {
    position: fixed;
    inset: 0;
    background: rgba(13, 10, 7, 0.97);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.age-gate.dismissed {
    display: none;
}

.age-dialog {
    background: var(--card-bg);
    border: 2px solid var(--gold-primary);
    padding: 3rem;
    max-width: 460px;
    width: 100%;
    text-align: center;
}

.age-dialog h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    color: var(--gold-light);
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.age-dialog p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.age-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.age-action {
    padding: 0.9rem 2rem;
    border: 2px solid var(--gold-primary);
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 2px;
}

.age-action.confirm {
    background: var(--gold-primary);
    color: var(--bg-dark);
}

.age-action.confirm:hover {
    background: var(--gold-light);
}

.age-action.deny {
    background: transparent;
    color: var(--text-secondary);
}

.age-action.deny:hover {
    border-color: #c0392b;
    color: #e74c3c;
}

@media (max-width: 950px) {
    .nav-menu {
        position: fixed;
        top: 77px;
        left: 0;
        width: 100%;
        background: var(--bg-dark);
        border-bottom: 2px solid var(--gold-dark);
        padding: 2rem;
        transform: translateY(-150%);
        transition: transform 0.4s;
    }

    .nav-menu.visible {
        transform: translateY(0);
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .nav-menu a::before {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .two-columns {
        grid-template-columns: 1fr;
    }

    .game-frame iframe {
        height: 480px;
    }

    .gaming-links a {
        display: block;
        margin: 0.5rem 0;
    }
}

@media (max-width: 600px) {
    .brand {
        font-size: 1.3rem;
        letter-spacing: 2px;
    }

    .brand-symbol {
        width: 35px;
        height: 35px;
    }

    .banner {
        padding: 3rem 1.5rem;
    }

    .game-frame iframe {
        height: 380px;
    }

    .text-page {
        padding: 5rem 1.5rem 3rem;
    }

    .text-page h1 {
        font-size: 1.6rem;
    }

    .age-dialog {
        padding: 2rem 1.5rem;
    }

    .age-actions {
        flex-direction: column;
    }
}
