:root {
    --gold: #c5a059;
    --gold-light: #f4efe2;
    --gold-dark: #876a33;
    --wood: #2a110b;
    --wood-deep: #160a07;
    --paper: #e6dfcc;
    --red-accent: #b80f14;
    --shadow: rgba(0, 0, 0, 0.55);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Georgia, 'Times New Roman', serif;
    background: var(--wood-deep);
    color: var(--gold-light);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--gold);
    text-decoration: none;
}

a:hover {
    color: #e8d5a3;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

/* Header */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(22, 10, 7, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(197, 160, 89, 0.25);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 72px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gold-light);
}

.brand img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    background: var(--paper);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-title {
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
}

.brand-sub {
    font-size: 0.75rem;
    opacity: 0.75;
    letter-spacing: 0.08em;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.site-nav a {
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    opacity: 0.9;
}

.site-nav a:hover {
    opacity: 1;
}

.nav-cta {
    padding: 10px 18px;
    border: 1px solid var(--gold);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(197, 160, 89, 0.18), rgba(197, 160, 89, 0.05));
    white-space: nowrap;
}

.menu-toggle {
    display: none;
    background: none;
    border: 1px solid rgba(197, 160, 89, 0.4);
    color: var(--gold-light);
    border-radius: 8px;
    padding: 8px 12px;
    cursor: pointer;
    font-family: inherit;
}

/* Hero */

.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    background:
        radial-gradient(ellipse 90% 70% at 15% 25%, rgba(184, 15, 20, 0.22), transparent 55%),
        radial-gradient(ellipse 70% 55% at 85% 15%, rgba(197, 160, 89, 0.16), transparent 50%),
        radial-gradient(ellipse 60% 45% at 50% 100%, rgba(42, 17, 11, 0.9), transparent 60%),
        linear-gradient(155deg, #0a0403 0%, #160a07 38%, #241008 72%, #1a0b08 100%);
}

.hero-scene {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-grid {
    position: absolute;
    inset: -20%;
    background-image:
        linear-gradient(rgba(197, 160, 89, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(197, 160, 89, 0.06) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 45%, #000 20%, transparent 75%);
    transform: perspective(600px) rotateX(58deg) scale(1.15);
    transform-origin: center 80%;
    opacity: 0.55;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    animation: hero-float 14s ease-in-out infinite;
}

.hero-glow-1 {
    width: 420px;
    height: 420px;
    top: -8%;
    right: 8%;
    background: rgba(197, 160, 89, 0.18);
}

.hero-glow-2 {
    width: 320px;
    height: 320px;
    bottom: 10%;
    left: -4%;
    background: rgba(184, 15, 20, 0.2);
    animation-delay: -4s;
}

.hero-glow-3 {
    width: 240px;
    height: 240px;
    top: 42%;
    left: 48%;
    background: rgba(135, 106, 51, 0.14);
    animation-delay: -8s;
}

.hero-card {
    position: absolute;
    border-radius: 14px;
    border: 1px solid rgba(197, 160, 89, 0.28);
    background: linear-gradient(145deg, rgba(244, 239, 226, 0.08), rgba(22, 10, 7, 0.35));
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(6px);
    animation: hero-drift 18s ease-in-out infinite;
}

.hero-card::after {
    content: '♠';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.4rem;
    color: rgba(197, 160, 89, 0.35);
}

.hero-card-1 {
    width: 118px;
    height: 168px;
    top: 18%;
    right: 12%;
    transform: rotate(12deg);
}

.hero-card-2 {
    width: 96px;
    height: 136px;
    bottom: 22%;
    right: 28%;
    transform: rotate(-18deg);
    animation-delay: -6s;
}

.hero-card-2::after {
    content: '♦';
    color: rgba(184, 15, 20, 0.45);
}

.hero-card-3 {
    width: 84px;
    height: 120px;
    top: 34%;
    right: 6%;
    transform: rotate(28deg);
    opacity: 0.65;
    animation-delay: -11s;
}

.hero-card-3::after {
    content: '♣';
}

.hero-ring {
    position: absolute;
    width: min(520px, 70vw);
    height: min(520px, 70vw);
    top: 50%;
    right: -8%;
    transform: translateY(-50%);
    border-radius: 50%;
    border: 1px solid rgba(197, 160, 89, 0.14);
    box-shadow:
        inset 0 0 80px rgba(197, 160, 89, 0.05),
        0 0 120px rgba(184, 15, 20, 0.08);
}

.hero-ring::before,
.hero-ring::after {
    content: '';
    position: absolute;
    inset: 18%;
    border-radius: 50%;
    border: 1px dashed rgba(197, 160, 89, 0.12);
}

.hero-ring::after {
    inset: 34%;
    border-style: solid;
    opacity: 0.5;
}

@keyframes hero-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(0, -18px) scale(1.04); }
}

@keyframes hero-drift {
    0%, 100% { transform: translateY(0) rotate(var(--rot, 12deg)); }
    50% { transform: translateY(-14px) rotate(calc(var(--rot, 12deg) + 4deg)); }
}

@media (prefers-reduced-motion: reduce) {
    .hero-glow,
    .hero-card {
        animation: none;
    }
}

.hero-card-1 { --rot: 12deg; }
.hero-card-2 { --rot: -18deg; }
.hero-card-3 { --rot: 28deg; }

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.hero-eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    padding: 6px 14px;
    border: 1px solid rgba(197, 160, 89, 0.45);
    border-radius: 999px;
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.8);
}

.hero h1 span {
    color: var(--gold);
}

.hero-lead {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    opacity: 0.92;
    margin-bottom: 32px;
    max-width: 58ch;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-family: inherit;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: linear-gradient(180deg, #d4b06a, var(--gold-dark));
    color: var(--wood-deep);
    border-color: #e8d5a3;
    box-shadow: 0 8px 24px rgba(197, 160, 89, 0.25);
    font-weight: bold;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(197, 160, 89, 0.5);
    color: var(--gold-light);
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.9rem;
    opacity: 0.85;
}

.hero-meta span::before {
    content: '◆';
    color: var(--red-accent);
    margin-right: 8px;
    font-size: 0.65rem;
    vertical-align: middle;
}

/* Sections */

section {
    padding: 88px 0;
}

.section-head {
    text-align: center;
    margin-bottom: 48px;
}

.section-eyebrow {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.section-head h2 {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    margin-bottom: 12px;
}

.section-head p {
    max-width: 62ch;
    margin: 0 auto;
    opacity: 0.82;
}

/* About */

.about {
    background: linear-gradient(180deg, var(--wood-deep), #1f0d09);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.about-text p + p {
    margin-top: 16px;
}

.about-card {
    background: rgba(42, 17, 11, 0.75);
    border: 1px solid rgba(197, 160, 89, 0.28);
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 16px 40px var(--shadow);
}

.about-card h3 {
    color: var(--gold);
    margin-bottom: 16px;
    font-size: 1.15rem;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 12px;
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
}

/* Cards */

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.card {
    background: rgba(42, 17, 11, 0.7);
    border: 1px solid rgba(197, 160, 89, 0.22);
    border-radius: 16px;
    padding: 28px 24px;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.card:hover {
    border-color: rgba(197, 160, 89, 0.5);
    transform: translateY(-3px);
}

.card-icon {
    font-size: 1.6rem;
    margin-bottom: 14px;
}

.card h3 {
    color: var(--gold);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.card p {
    opacity: 0.85;
    font-size: 0.95rem;
}

/* Game flow */

.game-flow {
    background: #1a0b08;
}

.flow-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.flow-step {
    padding: 28px;
    border-radius: 16px;
    border: 1px solid rgba(197, 160, 89, 0.2);
    background: rgba(22, 10, 7, 0.65);
}

.flow-step h3 {
    color: var(--gold);
    margin-bottom: 12px;
}

.flow-step .phase {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--red-accent);
}

/* Schedule */

.schedule-list {
    display: grid;
    gap: 16px;
    max-width: 760px;
    margin: 0 auto;
}

.schedule-item {
    display: grid;
    grid-template-columns: 110px 1fr auto;
    gap: 20px;
    align-items: center;
    padding: 20px 24px;
    border-radius: 14px;
    background: rgba(42, 17, 11, 0.65);
    border: 1px solid rgba(197, 160, 89, 0.2);
}

.schedule-date {
    text-align: center;
}

.schedule-date strong {
    display: block;
    font-size: 1.5rem;
    color: var(--gold);
    line-height: 1;
}

.schedule-date span {
    font-size: 0.8rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.schedule-place {
    font-size: 0.88rem;
    opacity: 0.75;
    margin-top: 4px;
}

.schedule-badge {
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(197, 160, 89, 0.35);
    font-size: 0.78rem;
    white-space: nowrap;
    color: var(--gold);
}

.schedule-note {
    text-align: center;
    margin-top: 24px;
    opacity: 0.75;
    font-size: 0.92rem;
}

/* Gallery */

.gallery {
    background: linear-gradient(180deg, #1a0b08, var(--wood-deep));
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.gallery-item {
    position: relative;
    min-height: 260px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(197, 160, 89, 0.2);
    background: rgba(42, 17, 11, 0.8);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item.wide {
    grid-column: span 2;
    min-height: 300px;
}

.gallery-item.wide img {
    min-height: 300px;
}

/* Host */

.host-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
    align-items: center;
}

.host-photo {
    border-radius: 18px;
    overflow: hidden;
    border: 2px solid rgba(197, 160, 89, 0.35);
    box-shadow: 0 20px 50px var(--shadow);
    aspect-ratio: 4 / 5;
    background: rgba(42, 17, 11, 0.8);
}

.host-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.host-content h2 span {
    color: var(--gold);
}

.host-role {
    color: var(--gold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 16px;
}

.host-quote {
    margin-top: 20px;
    padding: 18px 20px;
    border-left: 3px solid var(--gold);
    background: rgba(197, 160, 89, 0.08);
    font-style: italic;
    opacity: 0.9;
}

/* Contact */

.contact {
    background: #140805;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.contact-card {
    padding: 28px;
    border-radius: 16px;
    border: 1px solid rgba(197, 160, 89, 0.25);
    background: rgba(42, 17, 11, 0.6);
}

.contact-card h3 {
    color: var(--gold);
    margin-bottom: 16px;
}

.contact-links {
    display: grid;
    gap: 12px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(197, 160, 89, 0.15);
    color: var(--gold-light);
}

.contact-link:hover {
    border-color: rgba(197, 160, 89, 0.45);
    color: #fff;
}

/* Footer */

.site-footer {
    padding: 32px 0 40px;
    border-top: 1px solid rgba(197, 160, 89, 0.15);
    text-align: center;
    font-size: 0.88rem;
    opacity: 0.7;
}

.site-footer p + p {
    margin-top: 8px;
}

/* Mobile nav */

@media (max-width: 900px) {
    .about-grid,
    .host-grid,
    .contact-grid,
    .flow-steps {
        grid-template-columns: 1fr;
    }

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

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item,
    .gallery-item.wide {
        grid-column: span 1;
        min-height: 220px;
    }

    .gallery-item img,
    .gallery-item.wide img {
        min-height: 220px;
    }

    .hero-card,
    .hero-ring {
        opacity: 0.45;
    }

    .schedule-item {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: left;
    }

    .schedule-date {
        text-align: left;
    }

    .schedule-badge {
        justify-self: start;
    }
}

@media (max-width: 720px) {
    .menu-toggle {
        display: block;
    }

    .site-nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        padding: 16px 20px 24px;
        background: rgba(22, 10, 7, 0.98);
        border-bottom: 1px solid rgba(197, 160, 89, 0.2);
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.25s ease, opacity 0.25s ease;
    }

    .site-nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .site-nav a {
        padding: 10px 0;
        border-bottom: 1px solid rgba(197, 160, 89, 0.1);
    }

    .nav-cta {
        text-align: center;
        margin-top: 8px;
    }

    section {
        padding: 64px 0;
    }
}
