/* =========================================================
   Collegium Gladiatorium – modern, sötét aréna stílus
   ========================================================= */

:root {
    --bg-deep:        #0b0805;
    --bg-dark:        #110b07;
    --bg-elev:        #1a120b;
    --bg-card:        #1e1610;
    --bg-soft:        #2a1f15;

    --line:           #3a2b1c;

    --text:           #f5ebd9;
    --text-dim:       #c9bba0;
    --text-mute:      #8a7c66;

    --gold:           #d4a64a;
    --gold-bright:    #f0c45a;
    --bronze:         #a36a2c;
    --blood:          #8a1f1f;
    --sand:           #d8c08a;

    --shadow-lg:      0 30px 60px -20px rgba(0,0,0,.7);
    --shadow-md:      0 16px 32px -16px rgba(0,0,0,.6);

    --radius-sm:      6px;
    --radius:         12px;
    --radius-lg:      18px;

    --maxw:           1180px;

    --font-display:   'Cinzel', 'Times New Roman', serif;
    --font-body:      'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    background: var(--bg-deep);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: var(--gold-bright); text-decoration: none; transition: color .2s; }
a:hover { color: var(--sand); }

.container {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* ============== Typography ============== */
h1, h2, h3 {
    font-family: var(--font-display);
    color: var(--text);
    letter-spacing: .02em;
    line-height: 1.15;
    margin: 0 0 .5em;
    font-weight: 700;
}
h1 {
    font-size: clamp(1.9rem, 7vw, 4.4rem);
    overflow-wrap: break-word;
    hyphens: auto;
}
h2 { font-size: clamp(1.8rem, 3.4vw, 2.7rem); }
h3 { font-size: 1.25rem; letter-spacing: .04em; }

.kicker {
    text-transform: uppercase;
    letter-spacing: .25em;
    font-size: .78rem;
    font-weight: 600;
    color: var(--gold);
    margin: 0 0 1em;
}
.kicker.small { font-size: .7rem; margin-bottom: .4em; }

.eyebrow {
    text-transform: uppercase;
    letter-spacing: .35em;
    font-size: .72rem;
    color: var(--gold);
    margin: 0 0 1.4em;
}

.lead { font-size: 1.1rem; color: var(--text-dim); }
.muted { color: var(--text-mute); }
.small { font-size: .82rem; }
.center { text-align: center; }
.accent { color: var(--gold-bright); }

/* ============== Header / Nav ============== */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(11, 8, 5, .55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: background .3s, border-color .3s, box-shadow .3s;
}
.site-header.scrolled {
    background: rgba(11, 8, 5, .92);
    border-color: var(--line);
    box-shadow: 0 6px 20px rgba(0,0,0,.4);
}

.nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 24px;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
}
.brand:hover { color: var(--text); }

.brand-mark {
    width: 44px; height: 44px;
    border: 2px solid var(--gold);
    color: var(--gold);
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.05rem;
    display: grid;
    place-items: center;
    border-radius: 4px;
    letter-spacing: .04em;
    background: linear-gradient(180deg, rgba(212,166,74,.15), rgba(212,166,74,0));
}
.brand-text strong {
    font-family: var(--font-display);
    font-size: 1.05rem;
    letter-spacing: .08em;
    display: block;
    line-height: 1;
}
.brand-text em {
    font-style: normal;
    font-size: .72rem;
    color: var(--text-mute);
    letter-spacing: .15em;
    text-transform: uppercase;
}

.nav {
    display: flex;
    align-items: center;
    gap: 22px;
}
.nav a {
    color: var(--text-dim);
    font-weight: 500;
    font-size: .95rem;
    position: relative;
    padding: 6px 0;
    white-space: nowrap;
}
.nav a::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width .25s;
}
.nav a:hover { color: var(--text); }
.nav a:hover::after { width: 100%; }

.nav .cta-link {
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: background .2s, color .2s;
}
.nav .cta-link::after { display: none; }
.nav .cta-link:hover {
    background: var(--gold);
    color: var(--bg-deep);
}

/* Mobile toggle */
.nav-toggle {
    display: none;
    background: none;
    border: 0;
    width: 38px; height: 38px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 0;
}
.nav-toggle span {
    display: block;
    height: 2px;
    width: 26px;
    background: var(--gold);
    transition: transform .25s, opacity .25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============== Buttons ============== */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: .98rem;
    letter-spacing: .04em;
    transition: transform .2s, background .2s, color .2s, box-shadow .2s, border-color .2s;
    cursor: pointer;
    border: 1px solid transparent;
    font-family: var(--font-body);
}
.btn-primary {
    background: linear-gradient(180deg, var(--gold-bright), var(--bronze));
    color: #1a1006;
    box-shadow: 0 10px 24px -10px rgba(212,166,74,.6);
}
.btn-primary:hover {
    transform: translateY(-2px);
    color: #1a1006;
    box-shadow: 0 14px 30px -10px rgba(212,166,74,.7);
}
.btn-ghost {
    background: transparent;
    color: var(--text);
    border-color: var(--line);
}
.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold-bright);
}
.btn-sm {
    padding: 8px 14px;
    font-size: .85rem;
    letter-spacing: .03em;
}

/* Hivatalos oldal CTA a kártyákon: szolid, kontraszt-háttér + finom
   arany szegély — olvasható a portré-mozaik felett, de visszafogott. */
.next-show-cta {
    background: rgba(15, 10, 6, 0.65);
    color: var(--gold-bright, #f0c45a);
    border: 1px solid rgba(184, 146, 63, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.next-show-cta:hover,
.next-show-cta:focus-visible {
    background: rgba(15, 10, 6, 0.85);
    border-color: var(--gold, #d4a64a);
    color: #fff;
}

/* ============== Hero ============== */
.hero {
    position: relative;
    min-height: 100vh;
    display: grid;
    align-items: center;
    isolation: isolate;
    overflow: hidden;
    padding: 140px 0 80px;
}

.hero-bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(1200px 600px at 70% 30%, rgba(212,166,74,.18), transparent 60%),
        radial-gradient(900px 600px at 20% 70%, rgba(138,31,31,.22), transparent 60%),
        linear-gradient(180deg, #0a0604 0%, #18100a 60%, #0b0805 100%);
    z-index: -2;
}
.hero-bg::before {
    content: "";
    position: absolute; inset: 0;
    background-image:
        repeating-linear-gradient(
            45deg,
            rgba(212,166,74,.03) 0 2px,
            transparent 2px 12px
        );
    opacity: .6;
}
.hero-overlay {
    position: absolute; inset: 0;
    background:
        url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='600' height='600' viewBox='0 0 600 600'><g fill='none' stroke='%23d4a64a' stroke-opacity='.05' stroke-width='1'><circle cx='300' cy='300' r='280'/><circle cx='300' cy='300' r='220'/><circle cx='300' cy='300' r='160'/><circle cx='300' cy='300' r='100'/></g></svg>") center/contain no-repeat;
    z-index: -1;
    opacity: .7;
    animation: floatRing 14s ease-in-out infinite alternate;
}
@keyframes floatRing {
    from { transform: translateY(-10px) scale(1); }
    to   { transform: translateY(10px) scale(1.04); }
}

.hero-inner { position: relative; z-index: 1; }

.hero-title {
    margin: 0 0 .4em;
    text-shadow: 0 4px 30px rgba(0,0,0,.6);
}

.hero-lead {
    max-width: 640px;
    font-size: 1.2rem;
    color: var(--text-dim);
    margin: 0 0 2em;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 3em;
}

.hero-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    max-width: 760px;
    border-top: 1px solid var(--line);
    padding-top: 24px;
}
.hero-meta div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.hero-meta strong {
    font-family: var(--font-display);
    color: var(--gold);
    font-size: .85rem;
    letter-spacing: .15em;
    text-transform: uppercase;
}
.hero-meta span {
    color: var(--text-dim);
    font-size: .95rem;
}

.scroll-cue {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    width: 26px; height: 42px;
    border: 2px solid var(--gold);
    border-radius: 14px;
    z-index: 2;
}
.scroll-cue span {
    position: absolute;
    left: 50%;
    top: 8px;
    transform: translateX(-50%);
    width: 4px; height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollDot 1.6s infinite;
}
@keyframes scrollDot {
    0%   { opacity: 1; transform: translate(-50%, 0); }
    100% { opacity: 0; transform: translate(-50%, 18px); }
}

/* ============== Sections (shared) ============== */
.section {
    padding: 110px 0;
    position: relative;
}
.section-dark { background: var(--bg-dark); }
.section-arena {
    background:
        radial-gradient(800px 400px at 10% 0%, rgba(212,166,74,.08), transparent 60%),
        radial-gradient(800px 500px at 90% 100%, rgba(138,31,31,.12), transparent 60%),
        var(--bg-deep);
}

.section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 60px;
}
.section-head .lead { margin: 0 auto; }

/* Two-column grid */
.grid-2 {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 64px;
    align-items: start;
}

/* Profile card */
.profile-card {
    background: linear-gradient(180deg, var(--bg-card), var(--bg-elev));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}
.profile-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.profile-card h3 {
    color: var(--gold);
    margin-bottom: 1.2em;
}
.profile-card dl {
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: 8px 18px;
    margin: 0;
}
.profile-card dt {
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: var(--text-mute);
    align-self: center;
}
.profile-card dd {
    margin: 0;
    color: var(--text);
}

/* Check list */
.check-list {
    list-style: none;
    padding: 0;
    margin: 1.6em 0 0;
    display: grid;
    gap: 10px;
}
.check-list li {
    position: relative;
    padding-left: 28px;
    color: var(--text-dim);
}
.check-list li::before {
    content: "";
    position: absolute;
    left: 0; top: .55em;
    width: 14px; height: 14px;
    background: linear-gradient(135deg, var(--gold-bright), var(--bronze));
    transform: rotate(45deg);
    border-radius: 2px;
}

/* ============== Edzés cards ============== */
.cards-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 60px;
}
.card {
    background: linear-gradient(180deg, var(--bg-card), var(--bg-elev));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 36px 30px;
    transition: transform .3s, border-color .3s, box-shadow .3s;
    position: relative;
    overflow: hidden;
}
.card::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: linear-gradient(180deg, var(--gold), transparent);
    opacity: .6;
}
.card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: var(--shadow-lg);
}
.card-num {
    font-family: var(--font-display);
    font-size: 2.4rem;
    color: var(--gold);
    opacity: .5;
    margin-bottom: 10px;
}

/* Edzés-felszerelés blokk */
.kit {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-bottom: 24px;
}
.kit-block {
    background: linear-gradient(180deg, var(--bg-card), var(--bg-elev));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px 30px;
}
.kit-block .kicker {
    margin-bottom: 14px;
}
.kit-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.kit-list li {
    position: relative;
    padding: 8px 0 8px 22px;
    border-bottom: 1px solid var(--line);
    line-height: 1.5;
}
.kit-list li:last-child {
    border-bottom: 0;
}
.kit-list li::before {
    content: "";
    position: absolute;
    left: 0; top: 1.05em;
    width: 9px; height: 9px;
    background: linear-gradient(135deg, var(--gold-bright), var(--bronze));
    transform: rotate(45deg);
    border-radius: 1px;
}

/* Schedule strip */
.schedule {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin: 60px 0 14px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.schedule-block {
    padding: 28px 24px;
    text-align: center;
    border-right: 1px solid var(--line);
}
.schedule-block:last-child { border-right: 0; }
.schedule-block .big {
    font-family: var(--font-display);
    font-size: 1.15rem;
    margin: 0;
    line-height: 1.5;
}

/* ============== Gladiátor típusok ============== */
.types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-bottom: 18px;
}
.type-card {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px 22px;
    transition: transform .3s, border-color .3s, background .3s;
    position: relative;
}
.type-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
    background: var(--bg-elev);
}
.type-card h3 {
    color: var(--gold-bright);
    font-size: 1.15rem;
    margin-bottom: .3em;
}
.type-meta {
    color: var(--text-mute);
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin: 0 0 1em;
    font-style: italic;
}
.type-card p:last-child {
    color: var(--text-dim);
    font-size: .94rem;
    margin: 0;
}

/* Háttérképes type-card variáns: a fegyvernem-oldal első képe a kártya háttere,
   sötét gradient overlay-jel a szöveg-olvashatóságért. */
.type-card.has-bg-image {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
    min-height: 260px;
    color: #f0e8d4;
}
.type-card.has-bg-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 10, 6, .35) 0%, rgba(15, 10, 6, .82) 55%, rgba(15, 10, 6, .96) 100%);
    pointer-events: none;
    transition: background .3s;
}
.type-card.has-bg-image > * {
    position: relative;
    z-index: 1;
}
.type-card.has-bg-image:hover::before {
    background: linear-gradient(180deg, rgba(15, 10, 6, .2) 0%, rgba(15, 10, 6, .65) 55%, rgba(15, 10, 6, .9) 100%);
}
.type-card.has-bg-image h3 {
    text-shadow: 0 1px 4px rgba(0, 0, 0, .75);
}
.type-card.has-bg-image .type-meta {
    color: #e8e0cc;
    text-shadow: 0 1px 3px rgba(0, 0, 0, .7);
}
.type-card.has-bg-image p:not(.type-meta) {
    color: #d8d0c0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, .6);
}

/* ============== Mosaic ============== */
.section-mosaic {
    background: var(--bg-dark);
}
.mosaic {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 200px;
    gap: 18px;
}
.mosaic-item {
    background: linear-gradient(160deg, var(--bg-soft), var(--bg-card));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform .3s, border-color .3s;
    position: relative;
    overflow: hidden;
}
.mosaic-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(212,166,74,.18), transparent 60%);
    opacity: .8;
    transition: opacity .3s;
}
.mosaic-item:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
}
.mosaic-item:hover::before { opacity: 1; }
.mosaic-item h3 {
    color: var(--gold-bright);
    font-size: 1.2rem;
    position: relative;
}
.mosaic-item p {
    color: var(--text-dim);
    margin: 0;
    font-size: .94rem;
    position: relative;
}
.m-1 { grid-column: span 3; grid-row: span 2; }
.m-2 { grid-column: span 3; }
.m-3 { grid-column: span 2; }
.m-4 { grid-column: span 2; }
.m-5 { grid-column: span 2; }

/* ============== Call section ============== */
.section-call {
    background:
        radial-gradient(900px 500px at 50% 0%, rgba(212,166,74,.18), transparent 60%),
        linear-gradient(180deg, #14100a 0%, #0d0806 100%);
    text-align: center;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.call-inner { max-width: 820px; margin: 0 auto; }
.call-inner h2 { font-size: clamp(2rem, 4vw, 3rem); }
.call-inner .lead { margin-bottom: 2.4em; }

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 2.4em;
}
.step {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(0,0,0,.3);
    text-align: left;
}
.step span {
    flex: 0 0 auto;
    width: 40px; height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, var(--gold-bright), var(--bronze));
    color: var(--bg-deep);
    font-family: var(--font-display);
    font-weight: 900;
}
.step p { margin: 0; color: var(--text-dim); font-size: .95rem; }

.call-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 2.4em;
}

.who-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 24px;
    text-align: left;
    color: var(--text-dim);
    font-size: .95rem;
}
.who-list li {
    padding-left: 22px;
    position: relative;
}
.who-list li::before {
    content: "›";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

/* ============== Contact ============== */
.contact-list {
    display: grid;
    gap: 18px;
    margin-top: 1.5em;
}
.contact-list > div {
    display: grid;
    gap: 4px;
}
.contact-list a { font-size: 1.05rem; }

.contact-form {
    background: linear-gradient(180deg, var(--bg-card), var(--bg-elev));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow-md);
    display: grid;
    gap: 14px;
}
.contact-form h3 {
    color: var(--gold);
    margin-bottom: .4em;
}
.contact-form label {
    display: grid;
    gap: 6px;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--text-mute);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
    background: var(--bg-deep);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    color: var(--text);
    padding: 12px 14px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color .2s, background .2s;
    text-transform: none;
    letter-spacing: normal;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: #0d0904;
}
.contact-form textarea { resize: vertical; min-height: 90px; }
.contact-form .btn { margin-top: 6px; justify-self: start; }

/* ============== Footer ============== */
.site-footer {
    background: #060403;
    border-top: 1px solid var(--line);
    padding: 50px 0 30px;
}
.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: start;
}
.footer-nav {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}
.footer-nav a {
    color: var(--text-dim);
    font-size: .9rem;
}
.footer-nav a:hover { color: var(--gold); }
.footer-note {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
    padding-top: 18px;
    margin: 18px 0 0;
}

/* ============== Reveal animation ============== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .8s ease, transform .8s ease;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============== Responsive ============== */
@media (max-width: 980px) {
    .grid-2 { grid-template-columns: 1fr; gap: 40px; }
    .cards-3, .types-grid { grid-template-columns: repeat(2, 1fr); }
    .schedule { grid-template-columns: 1fr; }
    .schedule-block { border-right: 0; border-bottom: 1px solid var(--line); }
    .schedule-block:last-child { border-bottom: 0; }
    .kit { grid-template-columns: 1fr; gap: 20px; }
    .steps { grid-template-columns: 1fr; }
    .mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
    .m-1, .m-2, .m-3, .m-4, .m-5 { grid-column: span 2; grid-row: auto; }
    .who-list { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
}

/* Nav osszecsuk hamburgerre amint a menupontok nem ferenek ki kenyelmesen.
   A breakpointot a menupontok szama hatarozza meg (jelenleg 8 link). */
@media (max-width: 1180px) {
    .nav-toggle { display: flex; }
    .nav {
        position: absolute;
        top: 100%; left: 0; right: 0;
        flex-direction: column;
        align-items: stretch;
        background: rgba(11, 8, 5, .98);
        border-top: 1px solid var(--line);
        gap: 0;
        padding: 8px 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height .3s ease;
    }
    .nav.open { max-height: 600px; }
    .nav a {
        padding: 14px 24px;
        border-bottom: 1px solid var(--line);
    }
    .nav a:last-child { border-bottom: 0; }
    .nav .cta-link {
        margin: 12px 24px;
        text-align: center;
    }
}

@media (max-width: 720px) {
    body { font-size: 16px; }
    .container { padding: 0 18px; }
    .section { padding: 80px 0; }
    .hero { padding: 120px 0 80px; }
    .hero-meta { grid-template-columns: 1fr; gap: 14px; }
    .hero-lead { font-size: 1.05rem; }

    .hero-title { font-size: clamp(1.7rem, 8.5vw, 2.4rem); }

    .nav-row { padding: 14px 18px; gap: 12px; }
    .brand-mark { width: 38px; height: 38px; font-size: .95rem; }
    .brand-text strong { font-size: .92rem; letter-spacing: .04em; }
    .brand-text em { font-size: .65rem; }

    .cards-3, .types-grid { grid-template-columns: 1fr; }
    .mosaic { grid-template-columns: 1fr; }
    .m-1, .m-2, .m-3, .m-4, .m-5 { grid-column: span 1; }
    .hero-actions .btn { width: 100%; text-align: center; }
}

/* =========================================================
   Type detail pages (website/fegyvernemek/<tipus>.html)
   ========================================================= */

.type-hero {
    position: relative;
    padding: 90px 0 40px;
    isolation: isolate;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}
/* Egy hero után közvetlenül jövő .section (pl. a harcosaink/index.html
   kártya-grid-szekciója) — ne adjon hozzá nagy felső paddingot. */
.type-hero + .section {
    padding-top: 55px;
}
.type-hero::before {
    content: "";
    position: absolute; inset: 0;
    background:
        radial-gradient(900px 500px at 20% 30%, rgba(212,166,74,.18), transparent 60%),
        radial-gradient(700px 500px at 90% 80%, rgba(138,31,31,.20), transparent 60%),
        linear-gradient(180deg, #0a0604 0%, #18100a 60%, #0b0805 100%);
    z-index: -1;
}
.type-hero-grid {
    display: grid;
    grid-template-columns: 1.4fr .9fr;
    gap: 60px;
    align-items: start;
}
.type-hero h1 {
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    margin-bottom: .25em;
}
.type-latin {
    font-style: italic;
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: .15em;
    margin: 0 0 1em;
    text-transform: lowercase;
}
.type-tagline {
    font-size: 1.15rem;
    color: var(--text-dim);
    max-width: 520px;
}
.type-status {
    display: inline-block;
    margin-top: 18px;
    padding: 6px 14px;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: .75rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    border-radius: 999px;
}
.type-status.warn {
    border-color: var(--blood);
    color: #d77a7a;
}

.type-quickfacts {
    background: linear-gradient(180deg, var(--bg-card), var(--bg-elev));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px 20px;
    box-shadow: var(--shadow-md);
}
.type-quickfacts h3 {
    color: var(--gold);
    font-size: .85rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-bottom: .7em;
}
.type-quickfacts dl {
    margin: 0;
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: 6px 14px;
}
.type-quickfacts dt {
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--text-mute);
    align-self: center;
}
.type-quickfacts dd {
    margin: 0;
    color: var(--text);
    font-size: .85rem;
    line-height: 1.35;
}

.crumbs {
    font-size: .82rem;
    color: var(--text-mute);
    text-transform: uppercase;
    letter-spacing: .2em;
    margin: 0 0 1.6em;
}
.crumbs a { color: var(--text-dim); }
.crumbs a:hover { color: var(--gold); }

.type-body {
    padding: 80px 0;
}
.type-grid {
    display: grid;
    grid-template-columns: 1.45fr .85fr;
    gap: 60px;
    align-items: start;
}

.type-section {
    margin-bottom: 56px;
}
.type-section:last-child { margin-bottom: 0; }
.type-section h2 {
    font-size: 1.55rem;
    color: var(--text);
    margin-bottom: .6em;
    border-bottom: 1px solid var(--line);
    padding-bottom: .4em;
}
.type-section p {
    color: var(--text-dim);
}
.type-section ul {
    list-style: none;
    padding: 0;
    margin: 1em 0 0;
    display: grid;
    gap: 8px;
}
.type-section ul li {
    padding-left: 22px;
    position: relative;
    color: var(--text-dim);
}
.type-section ul li::before {
    content: "";
    position: absolute;
    left: 0; top: .55em;
    width: 10px; height: 10px;
    background: linear-gradient(135deg, var(--gold-bright), var(--bronze));
    transform: rotate(45deg);
    border-radius: 1px;
}
.type-section em.term {
    color: var(--gold-bright);
    font-style: italic;
}
.type-section blockquote.inscription {
    margin: 1.2em 0 1em;
    padding: 18px 22px;
    border-left: 3px solid var(--gold);
    background: rgba(255,255,255,.02);
    border-radius: 4px;
}
.type-section blockquote.inscription p:first-child {
    font-family: 'Cinzel', serif;
    font-size: 1.05rem;
    letter-spacing: .04em;
    color: var(--gold-bright);
    margin: 0 0 .6em;
}
.type-section blockquote.inscription p:last-child { margin: 0; }

.type-aside {
    position: sticky;
    top: 100px;
    display: grid;
    gap: 24px;
}
.aside-card {
    background: linear-gradient(180deg, var(--bg-card), var(--bg-elev));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
}
.aside-card h3 {
    color: var(--gold);
    font-size: .92rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    margin-bottom: 1em;
}
.aside-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}
.aside-card ul a {
    color: var(--text-dim);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid rgba(58,43,28,.5);
    font-size: .92rem;
}
.aside-card ul a:hover {
    color: var(--gold-bright);
}
.aside-card ul a:last-child { border-bottom: 0; }
.aside-card ul a span { color: var(--text-mute); font-size: .8rem; }

/* Sources block */
.sources-block {
    background: rgba(0,0,0,.3);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    margin-top: 40px;
}
.sources-block h2 {
    color: var(--gold);
    font-size: 1.2rem;
    border: none;
    margin-bottom: 1em;
}
.sources-block ol {
    margin: 0;
    padding-left: 22px;
    color: var(--text-dim);
    font-size: .92rem;
}
.sources-block ol li {
    margin-bottom: 8px;
    line-height: 1.55;
}
.sources-block a { word-break: break-word; }

.disclaimer {
    margin-top: 28px;
    padding: 18px 22px;
    border-left: 3px solid var(--gold);
    background: rgba(212,166,74,.06);
    color: var(--text-dim);
    font-size: .9rem;
}

/* ============== Status note ============== */
.type-status-note {
    margin: 8px 0 0 0;
    font-size: .82rem;
    line-height: 1.5;
    color: var(--text-dim);
    font-style: italic;
    max-width: 540px;
}
.type-status.warn {
    background: rgba(212,90,60,.12);
    color: #e08a6e;
    border: 1px solid rgba(212,90,60,.25);
}

/* ============== Quickfacts card image (top of the Gyors adatok card) ============== */
.type-quickfacts-image {
    margin: -18px -20px 14px;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background: #1a1410;
}
.type-quickfacts-image a { display: block; }
.type-quickfacts-image img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    background: #1a1410;
    display: block;
    transition: transform .4s ease;
}
.type-quickfacts-image a:hover img { transform: scale(1.03); }
.type-quickfacts-image figcaption {
    padding: 9px 14px 12px;
    font-size: .76rem;
    line-height: 1.45;
    color: var(--text-dim);
    background: rgba(0,0,0,.25);
}
.type-quickfacts-image figcaption .credit {
    display: block;
    margin-top: 4px;
    font-size: .68rem;
    color: var(--gold);
    letter-spacing: .04em;
}
@media (max-width: 760px) {
    .type-quickfacts-image img { height: 200px; }
}
/* Placeholder a fegyvernem-oldalakon, ahol nincs hiteles ókori vizuális forrás. */
.type-quickfacts-image.is-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 220px;
    text-align: center;
    padding: 24px 18px;
    background: linear-gradient(180deg, #1a1410, #0f0a06);
    border-bottom: 1px solid var(--line);
}
.type-quickfacts-image.is-placeholder span {
    font-family: var(--font-display);
    font-size: 2.6rem;
    letter-spacing: .15em;
    color: var(--gold);
    opacity: .7;
    margin-bottom: 10px;
}
.type-quickfacts-image.is-placeholder p {
    margin: 0;
    color: var(--text-dim);
    font-size: .82rem;
    line-height: 1.45;
}

/* ============== Image gallery ============== */
.type-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 18px;
    margin-top: 16px;
}
.type-gallery figure {
    margin: 0;
    background: rgba(212,166,74,.04);
    border: 1px solid rgba(212,166,74,.18);
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.type-gallery img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    background: #1a1410;
    display: block;
    transition: transform .35s ease;
}
.type-gallery a:hover img { transform: scale(1.04); }
.type-gallery figcaption {
    padding: 10px 12px 12px;
    font-size: .82rem;
    line-height: 1.4;
    color: var(--text-dim);
    flex: 1;
}
.type-gallery figcaption .credit {
    display: block;
    margin-top: 6px;
    font-size: .72rem;
    color: var(--gold);
    letter-spacing: .04em;
}
.gallery-note {
    margin-top: 14px;
    font-size: .82rem;
    color: var(--text-dim);
    font-style: italic;
}
.type-gallery .figure-3d {
    grid-column: 1 / -1;
}
.type-gallery.type-gallery-single {
    grid-template-columns: 1fr;
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 28px;
}
.type-gallery .figure-3d .sketchfab-embed-wrapper {
    width: 100%;
    background: #1a1410;
}
.type-gallery .figure-3d iframe {
    display: block;
    width: 100%;
    height: 420px;
    border: 0;
}
@media (max-width: 720px) {
    .type-gallery .figure-3d iframe { height: 320px; }
}

@media (max-width: 980px) {
    .type-hero-grid { grid-template-columns: 1fr; gap: 36px; }
    .type-grid { grid-template-columns: 1fr; gap: 40px; }
    .type-aside { position: static; }
    .type-gallery { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
    .type-gallery img { height: 160px; }
}

/* ============== Card link ============== */
a.type-card {
    color: inherit;
    display: block;
}
a.type-card:hover {
    color: inherit;
}
.type-card .type-cta {
    margin-top: 14px;
    color: var(--gold);
    font-size: .82rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap .2s, color .2s;
}
.type-card:hover .type-cta {
    gap: 14px;
    color: var(--gold-bright);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .reveal { opacity: 1; transform: none; }
}

/* ============== Harcosaink (Aréna arcai) ============== */
.harcos-group-head {
    margin: 8px 0 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
}
.harcos-group-head h2 {
    margin: 0 0 4px;
}
.harcos-group-head--passive {
    margin-top: 48px;
}
.harcosok-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-bottom: 18px;
}
.harcosok-grid--passive {
    opacity: .82;
}
.harcosok-grid--passive .harcos-card-img img {
    filter: grayscale(.55) brightness(.92);
}
.harcos-card {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .3s, border-color .3s, background .3s;
    color: inherit;
    display: flex;
    flex-direction: column;
    text-decoration: none;
}
.harcos-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
    background: var(--bg-elev);
    color: inherit;
}
.harcos-card-img {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #000;
}
.harcos-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}
.harcos-card:hover .harcos-card-img img {
    transform: scale(1.04);
}
.harcos-card-body {
    padding: 14px 18px 16px;
    display: flex;
    flex-direction: column;
    gap: .4em;
}
.harcos-card-body h3 {
    color: var(--gold-bright);
    font-size: 1.1rem;
    margin: 0;
}
.harcos-card-body p {
    color: var(--text-dim);
    font-size: .88rem;
    margin: 0;
    /* Max ~2 sor: ha mégis hosszabb a szöveg, ne nőjön a kártya magassága. */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.harcos-card-body .type-cta {
    margin-top: 8px;
    color: var(--gold);
    font-size: .8rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    transition: gap .2s, color .2s;
}
.harcos-card:hover .type-cta {
    color: var(--gold-bright);
}
.weapon-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0;
}
.weapon-badge {
    display: inline-block;
    padding: 3px 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--text-mute);
    background: rgba(0, 0, 0, .25);
}
.harcos-card:hover .weapon-badge {
    border-color: var(--gold);
    color: var(--gold);
}
@media (max-width: 1100px) {
    .harcosok-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 820px) {
    .harcosok-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
    .harcosok-grid { grid-template-columns: 1fr; }
}

/* Placeholder kártya — manager-ben létezik, de még nincs FB karakterlap */
.harcos-card.is-placeholder {
    cursor: default;
}
.harcos-card.is-placeholder:hover {
    transform: none;
    border-color: var(--line);
    background: var(--bg-card);
}
.harcos-card-img.is-placeholder {
    aspect-ratio: 3 / 4;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 30% 30%, rgba(208, 165, 92, .12), transparent 60%),
        linear-gradient(155deg, #1d1610 0%, #0c0805 100%);
    color: var(--gold);
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 3.2rem;
    letter-spacing: .12em;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .6);
    opacity: .85;
}
.harcos-card.is-placeholder .harcos-card-img.is-placeholder span {
    line-height: 1;
}
.harcos-card-status {
    color: var(--text-mute);
    font-size: .76rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-style: italic;
}

/* "Összes megtekintése" CTA az index szekció alatt — a grid-ben él, ezért
   a teljes sort elfoglalja. */
.harcosok-cta {
    grid-column: 1 / -1;
    margin-top: 12px;
    text-align: center;
}

/* ============== Karakter aloldal — kép-hátteres ============== */
.character-page {
    position: relative;
    min-height: 100vh;
    background-color: #0a0604;
    background-size: cover;
    background-position: center 8%;
    background-attachment: fixed;
    background-repeat: no-repeat;
    padding: 90px 0 70px;
    isolation: isolate;
    overflow: hidden;
}
.character-page.no-bg {
    background-image:
        radial-gradient(900px 500px at 20% 30%, rgba(212, 166, 74, .14), transparent 60%),
        radial-gradient(700px 500px at 90% 80%, rgba(138, 31, 31, .18), transparent 60%),
        linear-gradient(180deg, #0a0604 0%, #18100a 60%, #0b0805 100%);
}
.character-page-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(8, 5, 3, .55) 0%,
            rgba(8, 5, 3, .82) 55%,
            rgba(8, 5, 3, .94) 100%),
        linear-gradient(90deg,
            rgba(8, 5, 3, .35) 0%,
            rgba(8, 5, 3, 0) 55%);
    pointer-events: none;
    z-index: -1;
}
.character-page-inner {
    position: relative;
}
.character-page-head {
    margin-bottom: 56px;
}
.character-page-head .crumbs {
    color: var(--text-mute);
    margin-bottom: .8em;
}
.character-page-head h1 {
    font-size: 3.2rem;
    line-height: 1;
    margin: 0;
    text-shadow: 0 6px 28px rgba(0, 0, 0, .65);
}
.character-page-grid {
    display: grid;
    grid-template-columns: minmax(280px, 4fr) minmax(0, 7fr);
    gap: 36px;
    align-items: start;
}
.character-story-card,
.character-quickfacts-card {
    background: rgba(15, 10, 6, .82);
    border: 1px solid rgba(212, 166, 74, .18);
    border-radius: var(--radius);
    padding: 32px 36px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 18px 48px rgba(0, 0, 0, .45);
}
.character-story-card h2 {
    margin-top: 0;
    margin-bottom: .8em;
}
.character-story-card p {
    color: var(--text);
}
.character-quickfacts-card {
    padding: 24px 26px 22px;
    position: sticky;
    top: 96px;
    overflow: hidden;
}
.character-quickfacts-portrait {
    margin: -24px -26px 18px;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #000;
    border-bottom: 1px solid rgba(212, 166, 74, .18);
}
.character-quickfacts-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
}
.character-quickfacts-portrait.is-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 30% 30%, rgba(208, 165, 92, .12), transparent 60%),
        linear-gradient(155deg, #1d1610 0%, #0c0805 100%);
    color: var(--gold);
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 2.6rem;
    letter-spacing: .12em;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .6);
}
.character-quickfacts-card h3 {
    color: var(--gold-bright);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    margin: 0 0 14px;
}
.character-quickfacts-card dl {
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: 10px 16px;
    margin: 0;
    font-size: .92rem;
}
.character-quickfacts-card dt {
    color: var(--text-mute);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .76rem;
    align-self: center;
}
.character-quickfacts-card dd {
    margin: 0;
    color: var(--text);
}

@media (max-width: 980px) {
    .character-page {
        background-attachment: scroll;
        background-position: center 6%;
        padding: 80px 0 50px;
    }
    .character-page-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .character-quickfacts-card {
        position: static;
    }
    .character-page-head h1 {
        font-size: 2.2rem;
    }
}

/* ============================================================
   Soron következő fellépés — index oldali szekció
   ============================================================ */
.next-show .section-head {
    text-align: center;
    margin-bottom: 36px;
}
.next-show .section-head .lead {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.next-show-card {
    position: relative;
    max-width: 820px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
    border: 1px solid var(--line, rgba(255,255,255,0.1));
    border-radius: 14px;
    padding: 28px 32px;
    min-height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    isolation: isolate;
}

/* TESZT: a soron következő fellépés egyik harcosának portréja a kártya
   háttereként. Egyetlen kép, gradient-maszkkal. */
.next-show-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    border-radius: inherit;
}
.next-show-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    opacity: 0.55;
}
.next-show-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    /* Bal oldal sötét (tartalom kontrasztosan ül rajta), jobbra fade-elődik
       — a portré jobbra érvényesül duotone-ban. */
    background:
        linear-gradient(90deg, rgba(15,10,6,0.95) 0%, rgba(15,10,6,0.78) 35%, rgba(15,10,6,0.30) 100%);
    border-radius: inherit;
}
.next-show-card > * {
    position: relative;
    z-index: 2;
}

.next-show-card[data-state="loading"] .next-show-status {
    display: flex;
}
.next-show-card[data-state="ready"] .next-show-status,
.next-show-card[data-state="empty"] .next-show-status,
.next-show-card[data-state="error"] .next-show-status {
    display: none;
}

.next-show-status {
    display: none;
    align-items: center;
    gap: 12px;
    color: var(--text-mute, var(--muted));
}
.next-show-status .dot {
    width: 10px; height: 10px;
    border-radius: 999px;
    background: var(--gold, #b8923f);
    animation: nextShowPulse 1.6s ease-in-out infinite;
}
@keyframes nextShowPulse {
    0%   { box-shadow: 0 0 0 0 rgba(184,146,63,.55); }
    70%  { box-shadow: 0 0 0 12px rgba(184,146,63,0); }
    100% { box-shadow: 0 0 0 0 rgba(184,146,63,0); }
}

.next-show-body {
    width: 100%;
    display: grid;
    grid-template-columns: 110px 1fr auto;
    gap: 26px;
    align-items: center;
}
/* A [hidden] HTML attribútumot a class-szelektoros display:grid felülírná —
   explicit hidden-rule, hogy a kártya body-ja eltűnjön loading állapotban. */
.next-show-body[hidden] { display: none; }

.next-show-date {
    text-align: center;
    padding: 14px 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--line, rgba(255,255,255,0.1));
    border-radius: 10px;
}
.next-show-date .day {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}
.next-show-date .month {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--gold, #b8923f);
}
.next-show-date .weekday {
    display: block;
    margin-top: 6px;
    font-size: 11px;
    color: var(--text-mute, var(--muted));
    letter-spacing: 0.05em;
}

.next-show-info h3 {
    margin: 0 0 10px;
    font-family: 'Cinzel', serif;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.02em;
}
.next-show-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 18px;
    font-size: 14px;
    color: var(--text-mute, var(--muted));
}
.next-show-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.next-show-meta .icon { opacity: 0.75; }
.next-show-loc {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: inherit;
    text-decoration: none;
    border-bottom: 1px dotted transparent;
    transition: color 0.15s ease, border-color 0.15s ease;
}
.next-show-loc:hover,
.next-show-loc:focus-visible {
    color: var(--text, #f5e9d0);
    border-bottom-color: rgba(184, 146, 63, 0.55);
}
.next-show-loc:focus-visible {
    outline: 2px solid var(--gold, #b8923f);
    outline-offset: 2px;
    border-radius: 2px;
}
.next-show-loc-arrow {
    font-size: 11px;
    opacity: 0;
    transform: translate(-3px, 0);
    transition: opacity 0.15s ease, transform 0.15s ease;
}
.next-show-loc:hover .next-show-loc-arrow,
.next-show-loc:focus-visible .next-show-loc-arrow {
    opacity: 0.85;
    transform: translate(0, 0);
}

.next-show-card-cta {
    display: flex;
    align-items: center;
}

.next-show-card[data-state="empty"] .next-show-body,
.next-show-card[data-state="error"] .next-show-body {
    display: block;
    text-align: center;
}
.next-show-card[data-state="error"] .next-show-body {
    color: var(--text-mute, var(--muted));
}

.next-show-actions {
    margin-top: 26px;
    text-align: center;
}

@media (max-width: 720px) {
    .next-show-card {
        padding: 22px 20px;
    }
    .next-show-body {
        grid-template-columns: 86px 1fr;
        gap: 16px;
    }
    .next-show-card-cta {
        grid-column: 1 / -1;
        margin-top: 8px;
        padding-top: 14px;
        border-top: 1px solid var(--line, rgba(255,255,255,0.1));
    }
    .next-show-info h3 { font-size: 19px; }
    .next-show-date .day { font-size: 28px; }
}
