/* public_html/assets/site.css
   "Martea celor 3 beri" — temă modernă, paletă închisă unitară (espresso + tobacco). */

:root {
  --paper: #181210;       /* fundal pagină */
  --paper-2: #221a14;     /* carduri / suprafețe */
  --surface-2: #2c221a;   /* suprafețe ridicate / inputuri */
  --ink: #f2e9df;         /* text principal */
  --ink-soft: #b6a392;    /* text secundar */
  --line: #3a2d24;        /* margini */
  --line-soft: #2c221a;
  --tobacco: #7b4c38;     /* maro-tutun (brand) */
  --accent: #e2a44b;      /* chihlimbar (accent principal) */
  --accent-2: #7cc063;    /* verde (succes / „perfect") */
  --danger: #e0654c;      /* roșu-cărămidă (alerte / LIVE) */
  --shadow: 0 10px 30px rgba(0,0,0,.45);
  --radius: 14px;
  --maxw: 1060px;
  --font-display: "Zilla Slab", Georgia, "Times New Roman", serif;
  --font-body: "Mulish", -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --cat-fur: #c8893f; --cat-fur-2: #ab6c2a; --cat-belly: #f3e3c5;
  --cat-detail: #7a4a1d; --cat-ear: #d99b8f; --cat-eye: #34230f;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--font-body); line-height: 1.65; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 1.1rem; }
a { color: var(--accent); }
h1, h2, h3 { font-family: var(--font-display); line-height: 1.15; font-weight: 700; letter-spacing: .2px; color: var(--ink); }
.muted { color: var(--ink-soft); }
.hidden { display: none !important; }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.section-title { font-size: 1.95rem; margin: 0 0 1.3rem; position: relative; padding-bottom: .55rem; }
.section-title::after { content: ""; position: absolute; left: 0; bottom: 0; width: 56px; height: 3px;
  border-radius: 3px; background: var(--accent); }
.empty-note { background: var(--paper-2); border: 1px dashed var(--line); border-radius: var(--radius);
  padding: 1.3rem; text-align: center; color: var(--ink-soft); }

/* ---- Header (frosted) ---- */
.site-top { position: sticky; top: 0; z-index: 50; overflow: visible;
  background: #15100b; border-bottom: 1px solid var(--line); }
.site-top-in { display: flex; align-items: center; justify-content: space-between; padding: .6rem 1.1rem; }
.logo { display: flex; align-items: center; gap: .55rem; color: var(--ink); text-decoration: none; font-weight: 700; }
.logo img.logo-mini { height: 44px; width: auto; border-radius: 8px; transition: transform .12s ease; }
.logo:hover img.logo-mini { transform: scale(1.05); }
.logo-zoom { display: none; position: fixed; inset: 0; z-index: 300; align-items: center; justify-content: center;
  pointer-events: none; background: rgba(0,0,0,.7); }
.logo:hover .logo-zoom { display: flex; }
.logo-zoom img { width: auto; height: auto; max-width: 92vw; max-height: 82vh; padding: 8px;
  background: var(--surface-2); border: 1px solid var(--line); border-radius: 14px; box-shadow: 0 18px 50px rgba(0,0,0,.7); }
.logo-text { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; letter-spacing: .5px; }
.site-nav { display: flex; gap: 1.2rem; }
.site-nav a { color: var(--ink-soft); text-decoration: none; font-weight: 600; }
.site-nav a:hover, .site-nav a.on { color: var(--accent); }
.nav-toggle { display: none; background: none; border: 1px solid var(--line); color: var(--ink);
  font-size: 1.5rem; line-height: 1; cursor: pointer; padding: .3rem .6rem; border-radius: 8px; margin-left: auto; }
.nav-toggle:hover { border-color: var(--accent); color: var(--accent); }

.site-main { display: block; }
section { padding: 2.2rem 0; }

/* ---- Buttons ---- */
.btn { display: inline-block; cursor: pointer; font: inherit; font-weight: 600; padding: .55rem 1.05rem;
  border-radius: 9px; border: 1px solid var(--line); background: var(--surface-2); color: var(--ink);
  text-decoration: none; transition: border-color .12s, color .12s, background .12s; }
.btn:hover { border-color: var(--accent); color: var(--accent); }
.btn-primary { background: var(--accent); border-color: var(--accent); color: #1a120c; }
.btn-primary:hover { background: #eeb869; border-color: #eeb869; color: #1a120c; }
.btn-ghost { background: transparent; border-color: var(--line); color: var(--ink-soft); }
.btn-sm { padding: .35rem .7rem; font-size: .85rem; }

/* Focus vizibil global (tastatură) */
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

/* Skip link — sari direct la conținut (apare doar la focus din tastatură) */
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 200; background: var(--accent); color: #1a120c;
  font-weight: 700; padding: .6rem 1rem; border-radius: 0 0 8px 0; text-decoration: none; }
.skip-link:focus { left: 0; }

/* ---- Banner hero ---- */
.home-banner { padding: 0; }
.home-banner img { display: block; width: 100%; max-height: 460px; object-fit: cover; object-position: top center; }

/* ---- Anunț (banner configurabil din admin) ---- */
.home-announce { padding: 1.6rem 0 0; }
.announce-card { position: relative; overflow: hidden; border: 1px solid var(--accent); border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface-2), var(--paper-2)); box-shadow: var(--shadow); padding: 1.4rem 1.6rem; }
.announce-card::before { content: "📣"; position: absolute; top: -12px; right: 6px; font-size: 4.4rem;
  opacity: .10; transform: rotate(12deg); pointer-events: none; }
.announce-title { margin: 0 0 .55rem; font-size: 1.5rem; color: var(--accent); }
.announce-body p { margin: 0 0 .6rem; color: var(--ink); }
.announce-body p:last-child { margin-bottom: 0; }

/* ---- Countdown ---- */
.hero-countdown { background: linear-gradient(180deg, #231911, var(--paper)); text-align: center; padding: 2.8rem 0; }
.kicker { text-transform: uppercase; letter-spacing: 2.5px; font-size: .82rem; color: var(--ink-soft); margin: 0 0 1rem; }
.countdown { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; }
.cd-box { background: var(--paper-2); border: 1px solid var(--line); border-radius: 12px; padding: .9rem 1.15rem; min-width: 80px; box-shadow: var(--shadow); }
.cd-num { display: block; font-family: var(--font-display); font-weight: 700; font-size: 2.4rem; color: var(--accent); font-variant-numeric: tabular-nums; }
.cd-lbl { font-size: .72rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--ink-soft); }
.cd-note { margin-top: 1rem; color: var(--ink-soft); }
.live-banner { display: inline-block; margin-top: .4rem; background: var(--danger); color: #1a120c; font-weight: 800;
  padding: .9rem 1.7rem; border-radius: 30px; text-decoration: none; font-size: 1.2rem; animation: pulse 1.6s infinite; }
@keyframes pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.04); } }

/* ---- Pauză „Berile la fermentat" (înlocuiește countdown-ul) ---- */
.break-board { max-width: 760px; margin: 0 auto; text-align: left;
  background: var(--paper-2); border: 2px dashed var(--danger); border-radius: var(--radius);
  padding: 1.6rem 1.8rem; box-shadow: var(--shadow); }
.break-title { margin: 0 0 .6rem; font-family: var(--font-display); font-weight: 700;
  font-size: 1.7rem; line-height: 1.15; color: var(--danger); text-align: center; }
.break-reason { margin: 0 0 1rem; text-align: center; color: var(--ink-soft); }
.break-reason strong { color: var(--accent); }
.break-body p { margin: 0 0 .7rem; }
.break-body p:last-child { margin-bottom: 0; }
.break-note { margin: 1.1rem 0 0; padding: .7rem 1rem; border-left: 3px solid var(--accent);
  background: var(--surface-2); border-radius: 0 8px 8px 0; font-style: italic; color: var(--ink-soft); }
.break-note p { margin: 0 0 .4rem; }
.break-note p:last-child { margin-bottom: 0; }

/* cartonașul de invitat în pauză (parodie) */
.break-card { background: var(--paper-2); border: 2px dashed var(--line); border-radius: var(--radius);
  padding: 1.5rem; box-shadow: var(--shadow); text-align: center; }
.break-card-ico { font-size: 3rem; line-height: 1; margin-bottom: .5rem; filter: grayscale(.3); }
.break-card-msg { margin: 0; }
.break-card-reason { margin: .8rem 0 0; font-weight: 600; color: var(--accent); }

/* ---- Next episode ---- */
.next-card { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow); }
.ep-num { display: inline-block; background: var(--tobacco); color: #f7ece4; font-weight: 800; padding: .18rem .65rem; border-radius: 20px; font-size: .9rem; }
.ep-date { margin-left: .6rem; color: var(--ink-soft); }
.next-guest { font-size: 1.7rem; margin: .7rem 0 .2rem; }
.next-loc { margin: .2rem 0; }

/* ---- Hosts ---- */
.host-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.2rem; }
.host-card { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem; text-align: center; }
.host-photo { width: 112px; height: 112px; margin: 0 auto .8rem; position: relative; }
.host-photo img { width: 112px; height: 112px; object-fit: cover; border-radius: 50%; border: 3px solid var(--accent);
  cursor: zoom-in; transition: box-shadow .18s ease; }
.host-photo img:hover { position: absolute; left: 50%; top: -14px; transform: translateX(-50%);
  width: 320px; height: 320px; border-radius: 18px; border-width: 4px; z-index: 200; box-shadow: 0 18px 44px rgba(0,0,0,.6); }
.host-initials { width: 112px; height: 112px; border-radius: 50%; background: var(--tobacco); color: #f7ece4;
  display: flex; align-items: center; justify-content: center; font-size: 2.6rem; font-weight: 800; font-family: var(--font-display); margin: 0 auto; }
.host-card h3 { margin: .2rem 0; }

/* ---- YouTube facade ---- */
.yt-facade { position: relative; cursor: pointer; border-radius: var(--radius); overflow: hidden; background: #000; aspect-ratio: 16/9; max-width: 820px; margin: 0 auto; border: 1px solid var(--line); }
.yt-facade img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: .88; }
.yt-play { position: absolute; inset: 0; margin: auto; width: 76px; height: 76px; border-radius: 50%;
  background: rgba(226,164,75,.95); color: #1a120c; font-size: 2rem; display: flex; align-items: center; justify-content: center; }
.yt-facade iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---- Counters ---- */
.counters { display: flex; gap: 1.1rem; justify-content: center; flex-wrap: wrap; }
.counter { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.1rem 1.5rem; text-align: center; min-width: 130px; }
.c-num { display: block; font-family: var(--font-display); font-weight: 700; font-size: 2.4rem; color: var(--accent); }
.c-lbl { color: var(--ink-soft); font-size: .85rem; }
.counter-beers { cursor: help; border-style: dashed; }
.counter-beers:hover { border-color: var(--accent); }

/* ---- Search ---- */
.search-form { display: flex; gap: .6rem; flex-wrap: wrap; }
.search-form input[type=search] { flex: 1 1 240px; padding: .6rem .8rem; border: 1px solid var(--line); border-radius: 9px; font: inherit; background: var(--surface-2); color: var(--ink); }
.search-form input[type=search]::placeholder { color: var(--ink-soft); }

/* ---- Episode grid ---- */
.ep-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.2rem; }
.ep-card { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; text-decoration: none; color: var(--ink); display: flex; flex-direction: column; transition: transform .12s, box-shadow .12s, border-color .12s; }
.ep-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--accent); }
.ep-thumb { position: relative; aspect-ratio: 16/10; background: #2a201a; }
.ep-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ep-thumb-empty { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 2.4rem; }
.ep-card-num { position: absolute; top: 9px; left: 9px; background: var(--tobacco); color: #f7ece4; font-weight: 800; padding: .12rem .55rem; border-radius: 16px; font-size: .8rem; }
.ep-card-live { position: absolute; top: 9px; right: 9px; background: var(--danger); color: #1a120c; padding: .12rem .55rem; border-radius: 16px; font-size: .75rem; font-weight: 800; }
.ep-card-body { padding: .9rem 1rem; }
.ep-card-body h3 { margin: 0 0 .35rem; font-size: 1.15rem; }
.ep-card-meta { display: flex; gap: .8rem; flex-wrap: wrap; color: var(--ink-soft); font-size: .85rem; margin: 0; }
.ep-card-beer { margin: .5rem 0 0; font-size: .85rem; font-weight: 600; color: var(--accent); }

/* ---- Berea serii ---- */
.beer-of-night { margin: 1.6rem 0; }
.bon-card { display: flex; flex-direction: column; align-items: flex-start; gap: .7rem;
  background: linear-gradient(180deg, var(--surface-2), var(--paper-2)); border: 1px solid var(--accent);
  border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.1rem 1.3rem; height: 100%; }

/* Berea serii + Cine ce a votat în paralel */
.beer-row-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; align-items: start; }
.beer-col .section-title { font-size: 1.5rem; }
@media (max-width: 760px) { .beer-row-grid { grid-template-columns: 1fr; gap: 1rem; } }
.bon-main { display: flex; flex-direction: column; gap: .15rem; }
.bon-name { font-family: var(--font-display); font-weight: 700; font-size: 1.45rem; color: var(--ink); }
.bon-brewery { color: var(--ink-soft); font-size: .9rem; }
.bon-name a { color: inherit; text-decoration: none; }
.bon-name a:hover { color: var(--accent); text-decoration: underline; }
.bon-voters { display: block; margin-top: .45rem; font-size: .85rem; color: var(--ink-soft); }
.bon-meta { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; }
.bon-tag { background: var(--paper); border: 1px solid var(--line); border-radius: 30px; padding: .25rem .7rem;
  font-size: .8rem; color: var(--ink-soft); }
.bon-untappd { font-weight: 600; font-size: .85rem; white-space: nowrap; }

/* ---- Cine ce a votat (pe episod) ---- */
.beer-votes { margin: 1.4rem 0; }
.vote-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .5rem; }
.vote-list li { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; background: var(--paper-2);
  border: 1px solid var(--line); border-radius: 10px; padding: .5rem .8rem; }
.vote-who { font-weight: 700; color: var(--ink); }
.vote-type { font-size: .72rem; text-transform: uppercase; letter-spacing: 1px; color: var(--ink-soft);
  border: 1px solid var(--line); border-radius: 30px; padding: .1rem .55rem; }
.vote-arrow { color: var(--ink-soft); }
.vote-beer { color: var(--accent); font-weight: 600; }

/* ---- Pagina Beri (jurnal + top) ---- */
.beri-hero { text-align: center; padding: 2.4rem 0 1rem; }
.beri-hero h1 { margin: 0 0 .4rem; }
/* Podium Top 3 (după voturi) */
.beri-podium { padding-bottom: .5rem; }
.podium { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.4rem; }
.podium-card { position: relative; display: flex; flex-direction: column; align-items: center; text-align: center;
  background: linear-gradient(180deg, var(--surface-2), var(--paper-2)); border: 1px solid var(--accent);
  border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.4rem 1rem 1.1rem; text-decoration: none;
  color: var(--ink); transition: transform .12s, border-color .12s; }
a.podium-card:hover { transform: translateY(-4px); border-color: #eeb869; }
.podium-rank { position: absolute; top: -16px; font-size: 1.9rem; filter: drop-shadow(0 2px 4px rgba(0,0,0,.5)); }
.podium-photo { width: 130px; height: 130px; border-radius: 14px; overflow: hidden; background: var(--paper);
  display: flex; align-items: center; justify-content: center; margin: .5rem 0 .7rem; }
.podium-photo img { width: 100%; height: 100%; object-fit: cover; }
.podium-empty { font-size: 3rem; }
.podium-name { font-family: var(--font-display); font-size: 1.2rem; line-height: 1.15; }
.podium-brewery { color: var(--ink-soft); font-size: .85rem; margin-top: .15rem; }
.podium-votes { margin-top: .7rem; font-weight: 700; color: var(--accent); background: var(--paper);
  border: 1px solid var(--line); border-radius: 30px; padding: .25rem .85rem; }
@media (max-width: 620px) { .podium { grid-template-columns: 1fr; } }

/* Top beri (clasament) */
.top-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .6rem; }
.top-row { position: relative; display: flex; align-items: center; gap: .9rem; background: var(--paper-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: .6rem .9rem; cursor: default; }
.top-row:hover { border-color: var(--accent); }
.top-rank { font-family: var(--font-display); font-weight: 700; color: var(--ink-soft); min-width: 2.2rem; text-align: center; }
.top-thumb { flex: 0 0 48px; width: 48px; height: 48px; border-radius: 10px; overflow: hidden; background: var(--surface-2);
  display: flex; align-items: center; justify-content: center; }
.top-thumb img { width: 100%; height: 100%; object-fit: cover; }
.top-thumb-empty { font-size: 1.4rem; }
.top-info { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; }
.top-info strong { font-size: 1.05rem; }
.top-info a { color: var(--ink); text-decoration: none; }
.top-info a:hover { color: var(--accent); }
.top-sub { color: var(--ink-soft); font-size: .85rem; }
.top-count { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: var(--accent);
  background: var(--paper); border: 1px solid var(--line); border-radius: 30px; padding: .2rem .8rem; white-space: nowrap; }
.top-voters { display: block; margin-top: .3rem; font-size: .8rem; color: var(--ink-soft); }
.top-vote-form { margin: 0; }
.vote-btn { cursor: pointer; font: inherit; font-weight: 700; background: var(--surface-2); color: var(--ink);
  border: 1px solid var(--line); border-radius: 30px; padding: .4rem .85rem; white-space: nowrap;
  transition: border-color .12s, color .12s, background .12s; }
.vote-btn:hover { border-color: var(--accent); color: var(--accent); }
.vote-n { font-variant-numeric: tabular-nums; }
/* Cartonaș la hover peste un rând din arhivă */
.beer-pop { position: absolute; left: 0; bottom: calc(100% - 8px); z-index: 60;
  width: min(320px, 90vw); display: none; flex-direction: column; gap: .8rem;
  background: var(--surface-2); border: 1px solid var(--accent); border-radius: 14px;
  box-shadow: 0 18px 50px rgba(0,0,0,.6); padding: 1rem; }
.top-row:hover .beer-pop, .top-row:focus-within .beer-pop, .top-row.tapped .beer-pop { display: flex; }
.pop-photo { width: 100%; height: 260px; border-radius: 12px; overflow: hidden;
  background: var(--paper); display: flex; align-items: center; justify-content: center; }
.pop-photo img { width: 100%; height: 100%; object-fit: cover; }
.pop-empty { font-size: 4rem; }
.pop-body { display: flex; flex-direction: column; gap: .3rem; min-width: 0; }
.pop-name { font-family: var(--font-display); font-size: 1.3rem; line-height: 1.15; }
.pop-sub { color: var(--ink-soft); font-size: .85rem; }
.pop-stat, .pop-who, .pop-where { color: var(--ink-soft); font-size: .82rem; }
.pop-untappd { margin-top: .45rem; align-self: flex-start; background: var(--accent); color: #1a120c;
  font-weight: 700; text-decoration: none; padding: .45rem .9rem; border-radius: 8px; }
.pop-untappd:hover { background: #eeb869; }

/* ---- Pagina Media (stickere + jingle-uri/piese AI) ---- */
.media-hero { text-align: center; padding: 2.4rem 0 1rem; }
.media-hero h1 { margin: 0 0 .4rem; }
.media-bar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .8rem; margin-bottom: 1.4rem; }
.media-tabs { display: flex; flex-wrap: wrap; gap: .5rem; }
.media-sort { display: flex; align-items: center; gap: .8rem; font-size: .85rem; }
.media-sort label { display: inline-flex; align-items: center; gap: .3rem; cursor: pointer; color: var(--ink-soft); }
.media-tab { cursor: pointer; font: inherit; font-weight: 600; padding: .5rem 1rem; border-radius: 30px;
  border: 1px solid var(--line); background: var(--surface-2); color: var(--ink-soft); transition: all .12s; }
.media-tab:hover { color: var(--accent); border-color: var(--accent); }
.media-tab.active { background: var(--accent); border-color: var(--accent); color: #1a120c; }
.media-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.1rem; align-items: start; }
.media-card { position: relative; background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem; }
.media-title { margin: .2rem 0 .6rem; font-size: 1.15rem; }
.media-actions { display: flex; gap: .5rem; align-items: center; flex-wrap: wrap; }
.media-actions .media-vote-form { margin: 0; }
.media-actions .vote-btn.voted { opacity: .5; cursor: default; }
/* emblema Trending — apare doar la sortarea „cele mai votate" */
.media-crown { position: absolute; top: -10px; right: -6px; font-size: 1.5rem; display: none; z-index: 2;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.55)); }
.media-grid.show-trending .media-crown { display: inline; }
/* sticker */
.sticker-img { background: var(--paper); border-radius: 10px; overflow: hidden; aspect-ratio: 1; display: flex;
  align-items: center; justify-content: center; margin-bottom: .7rem; cursor: zoom-in; }
.sticker-img img { max-width: 100%; max-height: 100%; object-fit: contain; transition: transform .18s; }
.sticker-card:hover .sticker-img img { transform: scale(1.08); }
/* song (long + short) */
.song-card.has-short { grid-column: span 2; }
.song-players { display: grid; grid-template-columns: 1fr; gap: .7rem; }
.song-card.has-short .song-players { grid-template-columns: 1.7fr 1fr; align-items: stretch; }
.song-long, .song-short { display: flex; flex-direction: column; gap: .35rem; background: var(--surface-2);
  border: 1px solid var(--line); border-radius: 10px; padding: .7rem; }
.song-short { background: var(--paper); border-style: dashed; }
.song-lbl { font-size: .72rem; text-transform: uppercase; letter-spacing: 1px; color: var(--ink-soft); }
.song-players audio { width: 100%; height: 38px; }
@media (max-width: 620px) {
  .song-card.has-short { grid-column: auto; }
  .song-card.has-short .song-players { grid-template-columns: 1fr; }
}

/* ---- Episode page ---- */
.ep-head { text-align: center; margin: 1rem 0 1.6rem; }
.ep-head h1 { margin: .5rem 0 .35rem; }
.ep-sub { color: var(--ink-soft); display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.ep-video { margin: 1.6rem auto; }

/* ---- Guests ---- */
.guest-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.1rem; }
.guest { display: flex; gap: 1rem; background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.1rem; align-items: flex-start; }
.guest-photo { flex: 0 0 88px; }
.guest-photo img { width: 88px; height: 88px; object-fit: cover; border-radius: 12px; border: 2px solid var(--accent); }
.guest-noimg { width: 88px; height: 88px; border-radius: 12px; background: #2a201a; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; }
.guest-info h3 { margin: 0 0 .3rem; }
.guest-info p { margin: 0; }

/* ---- Crashers ---- */
.crasher-list { display: flex; flex-wrap: wrap; gap: .8rem; }
.crasher { display: flex; align-items: center; gap: .6rem; background: var(--paper-2); border: 1px solid var(--line); border-radius: 30px; padding: .35rem .95rem .35rem .35rem; }
.crasher img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.crasher span { display: block; font-size: .85rem; color: var(--ink-soft); }

/* ---- Transcript chat ---- */
.chat { display: flex; flex-direction: column; gap: .55rem; max-width: 760px; }
.tr-section { text-align: center; margin: 1.1rem 0 .4rem; }
.tr-section span { background: var(--accent); color: #1a120c; padding: .25rem .9rem; border-radius: 20px; font-size: .85rem; font-weight: 700; }
.tr-narration { text-align: center; font-style: italic; color: var(--ink-soft); margin: .3rem 0; }
.bubble { background: var(--surface-2); border-left: 4px solid var(--spk, var(--accent)); border-radius: 10px; padding: .55rem .85rem; }
.bubble-spk { display: block; font-weight: 700; color: var(--spk, var(--accent)); font-size: .85rem; }
.bubble-txt { display: block; }

/* ---- Gallery ---- */
.gal-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: .6rem; }
.gal-item { display: block; border-radius: 10px; overflow: hidden; border: 1px solid var(--line); aspect-ratio: 1; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .15s; }
.gal-item:hover img { transform: scale(1.06); }
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,.92); display: flex; align-items: center; justify-content: center; z-index: 100; padding: 1rem; }
.lightbox img { max-width: 96vw; max-height: 92vh; border-radius: 10px; box-shadow: 0 10px 40px rgba(0,0,0,.6); }
.lightbox .lb-close { position: absolute; top: 14px; right: 18px; color: #fff; font-size: 2.4rem; cursor: pointer; line-height: 1; background: none; border: none; }

/* ---- Comments ---- */
.comments { max-width: 760px; }
.comment-form { display: flex; flex-direction: column; gap: .6rem; background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.2rem; margin-bottom: 1.3rem; }
.comment-form input[type=text], .comment-form textarea { padding: .6rem .8rem; border: 1px solid var(--line); border-radius: 9px; font: inherit; width: 100%; background: var(--surface-2); color: var(--ink); }
.comment-form input::placeholder, .comment-form textarea::placeholder { color: var(--ink-soft); }
.comment-form textarea { resize: vertical; }
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.comment-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .7rem; }
.comment { background: var(--paper-2); border: 1px solid var(--line); border-radius: 10px; padding: .8rem .95rem; }
.c-head { display: flex; gap: .6rem; align-items: baseline; }
.c-head strong { color: var(--accent); }
.c-head .muted { font-size: .8rem; }
.note { padding: .65rem .95rem; border-radius: 9px; margin-bottom: .8rem; }
.note.ok { background: rgba(124,192,99,.14); border: 1px solid var(--accent-2); color: #bfe6ad; }
.note.bad { background: rgba(224,101,76,.14); border: 1px solid var(--danger); color: #f1b6a9; }

/* ---- Playere audio ---- */
.audio-row { display: flex; gap: 1.2rem; flex-wrap: wrap; align-items: center; }
.jingle { display: flex; align-items: center; gap: .7rem; background: var(--paper-2); border: 1px solid var(--line); border-radius: 40px; padding: .45rem .95rem .45rem .45rem; }
.jingle-btn, .player-btn { flex: 0 0 auto; width: 48px; height: 48px; border-radius: 50%; border: none; cursor: pointer; background: var(--accent); color: #1a120c; font-size: 1.05rem; display: flex; align-items: center; justify-content: center; transition: background .12s; }
.jingle-btn:hover, .player-btn:hover { background: #eeb869; }
.jingle-lbl { font-weight: 700; color: var(--ink-soft); }
.player { display: flex; align-items: center; gap: .9rem; background: var(--paper-2); border: 1px solid var(--line); border-radius: 14px; padding: .8rem 1rem; flex: 1 1 320px; min-width: 250px; box-shadow: var(--shadow); }
.player-main { flex: 1 1 auto; min-width: 0; }
.player-title { font-family: var(--font-display); font-weight: 700; margin-bottom: .4rem; font-size: 1.05rem; }
.player-bar { height: 9px; background: var(--surface-2); border-radius: 5px; cursor: pointer; overflow: hidden; }
.player-fill { height: 100%; width: 0%; background: linear-gradient(90deg, var(--accent), var(--tobacco)); border-radius: 5px; }
.player-time { font-size: .78rem; color: var(--ink-soft); margin-top: .35rem; font-variant-numeric: tabular-nums; }
.ic-pause { display: none; }
.playing .ic-play { display: none; }
.playing .ic-pause { display: inline; }

/* ---- Muzica (player audio + playlisturi) ---- */
.music-player { position: sticky; top: 62px; z-index: 30; display: flex; align-items: center; gap: .8rem;
  background: var(--paper-2); border: 1px solid var(--line); border-radius: 14px; padding: .7rem .9rem;
  box-shadow: var(--shadow); margin-bottom: 1.4rem; }
.mp-btn { flex: 0 0 auto; width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line);
  background: var(--surface-2); color: var(--ink); cursor: pointer; font-size: 1rem; display: flex; align-items: center; justify-content: center; transition: border-color .12s, color .12s; }
.mp-btn:hover { border-color: var(--accent); color: var(--accent); }
.mp-play { background: var(--accent); border-color: var(--accent); color: #1a120c; width: 48px; height: 48px; font-size: 1.1rem; }
.mp-play:hover { background: #eeb869; color: #1a120c; }
.mp-main { flex: 1 1 auto; min-width: 0; }
.mp-now { font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: .35rem; }
.mp-bar { height: 8px; background: var(--surface-2); border-radius: 5px; cursor: pointer; overflow: hidden; }
.mp-fill { height: 100%; width: 0%; background: linear-gradient(90deg, var(--accent), var(--tobacco)); border-radius: 5px; }
.mp-time { font-size: .75rem; color: var(--ink-soft); margin-top: .3rem; font-variant-numeric: tabular-nums; }
.music-player .ic-pause { display: none; }
.music-player.playing .ic-play { display: none; }
.music-player.playing .ic-pause { display: inline; }
.yt-audio { position: relative; }
#yt-frame { position: absolute; left: -9999px; top: 0; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.yt-tabs { display: flex; flex-wrap: wrap; gap: .55rem; margin-bottom: 1rem; }
.yt-tab { padding: .55rem 1.1rem; border-radius: 30px; border: 1px solid var(--line); background: var(--surface-2);
  color: var(--ink); cursor: pointer; font-weight: 600; font: inherit; transition: border-color .12s, color .12s, background .12s; }
.yt-tab:hover { border-color: var(--accent); color: var(--accent); }
.yt-tab.active { background: var(--accent); border-color: var(--accent); color: #1a120c; }

/* ---- Joc cu paharul ---- */
.game-box { text-align: center; }
#beer-game { background: radial-gradient(circle at 50% 32%, #2c221a, #181210); border: 1px solid var(--line);
  border-radius: 16px; box-shadow: var(--shadow); touch-action: none; max-width: 100%; height: auto;
  cursor: pointer; user-select: none; -webkit-user-select: none; }
.game-msg { font-weight: 700; min-height: 1.6em; margin: .9rem 0 .3rem; font-size: 1.05rem; color: var(--ink); }
.game-msg.win { color: var(--accent-2); }
.game-msg.low { color: var(--ink-soft); }
.game-msg.spill { color: var(--danger); }
#game-best { color: var(--ink-soft); }
#game-retry { margin-top: .3rem; }

/* vorba de suflet — notă plutitoare care strălucește */
.beer-quote { position: fixed; z-index: 80; max-width: 300px; transform: translate(-50%, 0);
  font-family: var(--font-body); font-style: italic; font-weight: 600; font-size: 1.02rem; line-height: 1.4;
  color: var(--ink); text-align: center;
  background: rgba(34,26,20,.95); border: 1px solid var(--accent); border-radius: 16px; padding: .7rem 1rem;
  box-shadow: 0 0 26px rgba(226,164,75,.25), var(--shadow); pointer-events: none; opacity: 0; }
.beer-quote.go { animation: beerquote 15s linear forwards; }
@keyframes beerquote {
  0%   { opacity: 0; transform: translate(-50%, 14px) scale(.84); }
  8%   { opacity: 1; transform: translate(-50%, 0) scale(1); }
  25%  { transform: translate(calc(-50% + 8px),  calc(var(--rise, -300px) * .18)) scale(1.01); }
  45%  { transform: translate(calc(-50% + 24px), calc(var(--rise, -300px) * .40)) scale(1.02); }
  65%  { transform: translate(calc(-50% + 14px), calc(var(--rise, -300px) * .62)) scale(1.03); }
  85%  { opacity: 1; transform: translate(calc(-50% + 32px), calc(var(--rise, -300px) * .84)) scale(1.04); }
  100% { opacity: 0; transform: translate(calc(-50% + 44px), var(--rise, -300px)) scale(1.06); }
}
@media (prefers-reduced-motion: reduce) {
  .beer-quote.go { animation: beerquotefade 9s ease forwards; }
  @keyframes beerquotefade { 0%{opacity:0;} 8%{opacity:1;} 85%{opacity:1;} 100%{opacity:0;} }
}

/* ---- Lacăt / dezvăluire episod ---- */
.reveal-wrap { position: relative; }
.reveal-wrap .next-reveal { transition: filter .5s ease, opacity .5s ease; }
.reveal-wrap:not(.unlocked) .next-reveal { filter: blur(10px); opacity: .5; user-select: none; pointer-events: none; }
.reveal-wrap.unlocked .next-reveal { animation: reveal-pop .5s ease; }
@keyframes reveal-pop { from { transform: scale(.96); opacity: .4; } to { transform: scale(1); opacity: 1; } }
.ep-lock { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; text-align: center;
  padding: 1rem; background: rgba(15,11,8,.5); border-radius: var(--radius); transition: opacity .45s ease; }
.reveal-wrap.unlocked .ep-lock { opacity: 0; visibility: hidden; pointer-events: none; }
.lock-inner { max-width: 320px; padding: 1.2rem; background: rgba(34,26,20,.97); border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow); }
.lock-ico { font-size: 2rem; display: block; line-height: 1; }
.lock-inner p { margin: .5rem 0 .9rem; font-size: .95rem; }
.lock-skip { display: inline-block; padding: .38rem .85rem; font-size: .78rem; color: var(--ink-soft);
  background: var(--surface-2); border: 1px solid var(--line); border-radius: 20px; }
.lock-skip:hover { border-color: var(--accent); color: var(--accent); text-decoration: none; }

/* joc + episod alături */
.play-grid { display: flex; gap: 1.8rem; align-items: flex-start; flex-wrap: wrap; justify-content: center; }
.game-col { flex: 0 0 auto; }
.next-col { flex: 1 1 300px; min-width: 260px; align-self: stretch; }
.next-col-title { margin: 0 0 .9rem; font-size: 1.4rem; }
.game-hint { text-align: center; margin-top: 1rem; color: var(--ink-soft); }
.next-card { cursor: pointer; transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease; }
.next-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--accent); }
.next-card:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }
.next-open { display: block; margin-top: .9rem; font-size: .8rem; color: var(--ink-soft); }
@media (max-width: 680px) {
  .play-grid { flex-direction: column; align-items: center; }
  .game-col, .next-col { width: 100%; }
  .next-col { max-width: 420px; }
}

/* ---- 404 ---- */
.notfound { text-align: center; padding: 3rem 0; }
.nf-emoji { font-size: 3.4rem; }
.nf-actions { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; margin-top: 1rem; }

/* titluri-hero mai mari */
.adv-hero h1, .ep-head h1, .muzica h1 { font-size: clamp(2rem, 5vw, 2.8rem); }
.notfound h1 { font-size: clamp(2.1rem, 6vw, 3rem); }

/* ---- Pisica (desktop pet) + halba ---- */
#m3b-cat { position: fixed; left: 0; top: 0; width: 64px; height: 44px; z-index: 60; pointer-events: none; will-change: transform; }
#m3b-cat .cat-svg { width: 100%; height: 100%; display: block; overflow: visible; }
#m3b-cat.left .cat-svg { transform: scaleX(-1); }
#m3b-cat .leg { transform-box: fill-box; transform-origin: top center; }
#m3b-cat.walking .leg-a { animation: catleg .34s infinite ease-in-out; }
#m3b-cat.walking .leg-b { animation: catleg .34s infinite ease-in-out; animation-delay: .17s; }
#m3b-cat.running .leg-a, #m3b-cat.running .leg-b { animation-duration: .15s; }
@keyframes catleg { 0%,100% { transform: rotate(16deg); } 50% { transform: rotate(-16deg); } }
#m3b-cat .cat-tail { transform-box: fill-box; transform-origin: right bottom; animation: cattail 1.3s infinite ease-in-out; }
@keyframes cattail { 0%,100% { transform: rotate(-10deg); } 50% { transform: rotate(14deg); } }
#m3b-cat .cat-core { transform-box: fill-box; transform-origin: center bottom; }
#m3b-cat.walking .cat-core { animation: catbob .34s infinite ease-in-out; }
@keyframes catbob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-1.5px); } }
#m3b-cat .cat-eye { transform-box: fill-box; transform-origin: center; animation: catblink 4.5s infinite; }
@keyframes catblink { 0%,95%,100% { transform: scaleY(1); } 97% { transform: scaleY(.1); } }
#m3b-beer { position: fixed; z-index: 59; pointer-events: none; font-size: 34px; line-height: 1;
  filter: drop-shadow(0 3px 4px rgba(0,0,0,.4)); animation: beerbob 2.4s infinite ease-in-out; }
@keyframes beerbob { 0%,100% { transform: translateY(0) rotate(-3deg); } 50% { transform: translateY(-4px) rotate(3deg); } }
#m3b-cat-toggle { position: fixed; left: 12px; bottom: 64px; z-index: 61; pointer-events: auto;
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line); background: var(--surface-2);
  color: var(--ink-soft); cursor: pointer; font-size: 1rem; opacity: .55; transition: opacity .15s; }
#m3b-cat-toggle:hover { opacity: 1; }
#m3b-cat .cat-emote { position: absolute; left: 50%; top: -12px; transform: translateX(-50%);
  font-size: 15px; line-height: 1; opacity: 0; white-space: nowrap; pointer-events: none; text-shadow: 0 1px 2px rgba(0,0,0,.4); }
#m3b-cat .cat-emote.show { animation: catemote 1.4s ease forwards; }
@keyframes catemote { 0% { opacity: 0; transform: translate(-50%, 4px) scale(.6); }
  18% { opacity: 1; transform: translate(-50%, -6px) scale(1); }
  80% { opacity: 1; transform: translate(-50%, -12px); }
  100% { opacity: 0; transform: translate(-50%, -20px); } }
#m3b-cat.trick-stretch .cat-core { animation: catstretch .9s ease; }
@keyframes catstretch { 0% { transform: scale(1,1); } 30% { transform: scale(1.3,.8); } 60% { transform: scale(1.06,.96); } 100% { transform: scale(1,1); } }
#m3b-cat.trick-roll .cat-svg { animation: catroll .8s ease-in-out; }
@keyframes catroll { 0% { transform: rotate(0); } 100% { transform: rotate(360deg); } }
#m3b-cat.trick-groom .cat-core { animation: catgroom .4s ease-in-out 4; }
@keyframes catgroom { 0%,100% { transform: rotate(0) translateY(0); } 50% { transform: rotate(-7deg) translateY(1px); } }
#m3b-cat.trick-drink .cat-core { animation: catdrink .65s ease-in-out 2; }
@keyframes catdrink { 0%,100% { transform: rotate(0) translateY(0); } 50% { transform: rotate(9deg) translateY(2px); } }
#m3b-cat.sleeping .cat-core { animation: catbreath 2.4s ease-in-out infinite; }
@keyframes catbreath { 0%,100% { transform: scaleY(1); } 50% { transform: scaleY(1.06); } }
@media (prefers-reduced-motion: reduce) {
  #m3b-cat, #m3b-beer, #m3b-cat-toggle { display: none; }
}

/* ---- Footer ---- */
.site-foot { background: #120d09; border-top: 1px solid var(--line); text-align: center; padding: 2rem 0; margin-top: 2.5rem; }
.site-foot .slogan { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; letter-spacing: .5px; margin: 0 0 .3rem; color: var(--accent); }
.site-foot .muted { color: var(--ink-soft); }

/* ---- Back link ---- */
.back-link { margin: 1.6rem 0; }

@media (max-width: 560px) {
  .cd-num { font-size: 1.8rem; }
  .cd-box { min-width: 66px; padding: .65rem .75rem; }
  .next-guest { font-size: 1.35rem; }
}

/* ============================================================
   HYPE / 3D / tobacco în prim-plan
   ============================================================ */
/* Countdown = fundal cald-închis cu plăcuțe de sticlă (glassmorphism) */
.hero-countdown { background: linear-gradient(180deg, #2a1c14, var(--paper)); padding: 3.2rem 0; }
.hero-countdown .kicker { color: rgba(255,255,255,.72); }
.hero-countdown .cd-note { color: rgba(255,255,255,.8); }
.cd-box { background: rgba(16,10,7,.34); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.15); box-shadow: 0 16px 32px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.18); }
.cd-num { text-shadow: 0 0 18px rgba(226,164,75,.5); }
.cd-lbl { color: rgba(255,255,255,.72); }

/* Carduri 3D — se înclină după mouse (JS) + glow chihlimbar la hover */
.ep-card, .counter, .next-card, .cd-box {
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
  transform-style: preserve-3d; will-change: transform; }
.ep-card:hover, .counter:hover, .next-card:hover {
  box-shadow: 0 20px 44px rgba(0,0,0,.55), 0 0 0 1px var(--accent), 0 0 30px rgba(226,164,75,.20);
  border-color: var(--accent); }

/* Titluri-hero + slogan cu degrade (hype) — crem -> chihlimbar, fără segmentul tobacco (altfel coada se „stinge" pe fundal închis) */
.adv-hero h1, .ep-head h1, .muzica h1, .notfound h1, .site-foot .slogan {
  background: linear-gradient(92deg, #f6ecd8 0%, var(--accent) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }

/* Footer cu tentă tobacco */
.site-foot { background: linear-gradient(180deg, #1a120d, #2c1c14); border-top: 2px solid var(--tobacco); }

/* Glow subtil pe butoanele principale */
.btn-primary { box-shadow: 0 8px 22px rgba(226,164,75,.28); }
.btn-primary:hover { box-shadow: 0 10px 28px rgba(226,164,75,.4); }

/* Bordură decorativă (separator între banner și countdown) */
.band-divider { height: 10px; background: linear-gradient(90deg, var(--tobacco), var(--accent), var(--tobacco));
  box-shadow: 0 10px 22px rgba(0,0,0,.7); position: relative; z-index: 2; }

/* Adâncime (3D) la repaus — carduri/contoare/hero nu mai sunt plate */
.ep-card, .host-card, .guest { box-shadow: 0 10px 24px rgba(0,0,0,.4); }
.counter {
  background: linear-gradient(180deg, var(--surface-2), var(--paper-2));
  box-shadow: 0 12px 26px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.07);
}
.adv-hero .yt-facade { box-shadow: 0 16px 38px rgba(0,0,0,.55); }
.adv-stats { perspective: 700px; }
.ep-grid { perspective: 900px; }
.host-card:hover { box-shadow: 0 18px 40px rgba(0,0,0,.55), 0 0 0 1px var(--accent); }

/* „Sunetul tavernei" = bandă tobacco */
.audio-slot { background: linear-gradient(160deg, #7b4c38, #2e1d15); }
.audio-slot .section-title { color: #f7ece4; }

/* Ghemul de ață */
#m3b-yarn { position: fixed; left: 0; top: 0; z-index: 58; pointer-events: none;
  filter: drop-shadow(0 3px 3px rgba(0,0,0,.45)); will-change: transform; }
#m3b-yarn svg { display: block; }
#m3b-yarn.pop svg { animation: yarnpop .35s ease; }
@keyframes yarnpop { 0% { transform: scale(.2); } 60% { transform: scale(1.18); } 100% { transform: scale(1); } }
#m3b-yarn.roll svg { animation: yarnroll .5s ease; }
@keyframes yarnroll { from { transform: rotate(0); } to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { #m3b-yarn { display: none !important; } }

/* Pisica — poze noi: somn (ghemuit) + spălat (lins) */
#m3b-cat .cat-pose { width: 100%; height: 100%; }
#m3b-cat .cat-sleep { transform-box: fill-box; transform-origin: center bottom; animation: sleepbreath 3.2s ease-in-out infinite; }
@keyframes sleepbreath { 0%,100% { transform: scaleY(1); } 50% { transform: scaleY(1.06); } }
#m3b-cat .cat-groom-head { transform-box: fill-box; transform-origin: 60% 85%; animation: groomdip .55s ease-in-out infinite alternate; }
@keyframes groomdip { from { transform: rotate(2deg); } to { transform: rotate(-16deg); } }
#m3b-cat .cat-zzz { animation: zzzfloat 2.6s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
@keyframes zzzfloat { 0% { opacity: .2; transform: translateY(2px); } 50% { opacity: 1; } 100% { opacity: .2; transform: translateY(-4px); } }

/* ---- Iconițe sociale (footer) ---- */
.social-row { display: flex; gap: .7rem; justify-content: center; margin-bottom: 1rem; }
.social-ico { width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; border: 1px solid var(--line); color: var(--ink-soft); background: rgba(255,255,255,.03);
  transition: color .12s, border-color .12s, transform .12s; }
.social-ico:hover { color: var(--accent); border-color: var(--accent); transform: translateY(-2px); }
.social-ico svg { width: 20px; height: 20px; fill: currentColor; }
.site-foot .muted a { color: var(--ink-soft); }
.site-foot .muted a:hover { color: var(--accent); }

/* ---- Despre / Contact ---- */
.despre-hero p, .contact .lead { font-size: 1.15rem; max-width: 720px; color: var(--ink); }
.despre-hero .slogan-line { font-family: var(--font-display); color: var(--accent); font-size: 1.2rem; margin-top: .6rem; }
.despre-concept p, .despre-cta p, .contact p { max-width: 760px; }
.despre-actions { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1rem; }
.contact-card { display: inline-flex; flex-direction: column; gap: .25rem; background: var(--paper-2);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem 1.4rem; box-shadow: var(--shadow); margin: .6rem 0 1.6rem; }
.cc-label { color: var(--ink-soft); font-size: .82rem; text-transform: uppercase; letter-spacing: 1px; }
.cc-email { font-family: var(--font-display); font-size: 1.35rem; color: var(--accent); text-decoration: none; }
.cc-email:hover { text-decoration: underline; }
.contact-socials { display: flex; flex-wrap: wrap; gap: .7rem; }
.contact-social { display: inline-flex; align-items: center; gap: .55rem; padding: .55rem .95rem; border-radius: 30px;
  border: 1px solid var(--line); background: var(--paper-2); color: var(--ink); font-weight: 600; text-decoration: none;
  transition: border-color .12s, color .12s; }
.contact-social:hover { border-color: var(--accent); color: var(--accent); }
.contact-social svg { width: 20px; height: 20px; fill: currentColor; }
.contact-foot { color: var(--ink-soft); margin-top: 1.4rem; }
.host-mail-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; margin-bottom: 1.6rem; }
.host-mail { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.2rem;
  text-align: center; box-shadow: 0 10px 24px rgba(0,0,0,.4); }
.hm-photo { width: 84px; height: 84px; margin: 0 auto .6rem; }
.hm-photo img { width: 84px; height: 84px; object-fit: cover; border-radius: 50%; border: 3px solid var(--accent); }
.host-mail .host-initials { width: 84px; height: 84px; font-size: 2rem; }
.host-mail h3 { margin: .2rem 0 .4rem; }
.hm-email { color: var(--accent); word-break: break-word; text-decoration: none; font-weight: 600; }
.hm-email:hover { text-decoration: underline; }

/* ============================================================
   Optimizări mobil
   ============================================================ */
@media (max-width: 720px) {
  .site-top-in { flex-wrap: wrap; align-items: center; gap: .45rem; padding: .55rem .8rem; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .site-nav { display: none; width: 100%; flex-direction: column; gap: .15rem; font-size: 1.05rem; padding-top: .4rem; }
  .site-top.nav-open .site-nav { display: flex; }
  .site-nav a { display: block; padding: .7rem .5rem; border-radius: 8px; }
  .site-nav a:hover, .site-nav a.on { background: var(--surface-2); }
  .home-banner img { max-height: 250px; }
  .hero-countdown { padding: 2.2rem 0; }
  section { padding: 1.7rem 0; }
  .section-title { font-size: 1.55rem; }
  .music-player { position: static; top: auto; }
  .next-guest { font-size: 1.4rem; }
}
/* Pe ecrane fără hover (touch): nu declanșa zoom-urile, ca să nu „se blocheze" la atingere */
@media (hover: none) {
  .logo:hover .logo-zoom { display: none; }
  .logo:hover img.logo-mini { transform: none; }
  .host-photo img:hover {
    position: static; left: auto; top: auto; transform: none;
    width: 112px; height: 112px; border-width: 3px; border-radius: 50%; box-shadow: none; z-index: auto;
  }
  /* Ținte de atins mai mari pe touch (min 44px) */
  .vote-btn, .media-tab, .yt-tab, .bon-untappd, .lock-skip, .btn-sm { min-height: 44px; display: inline-flex; align-items: center; }
  .social-ico, .contact-social { min-height: 44px; }
  .social-ico { width: 44px; height: 44px; }
  /* Pisica e un „desktop pet" — nu pe touch */
  #m3b-cat, #m3b-cat-toggle, #m3b-yarn { display: none !important; }
}

/* ============================================================
   Batch 1 UX — descriptor logo, footer nav, hero tagline, skip-joc
   ============================================================ */
.logo-tag { color: var(--ink-soft); font-weight: 600; font-size: .85rem; white-space: nowrap; }
@media (max-width: 640px) { .logo-tag { display: none; } }

.foot-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem 1.1rem; margin-bottom: 1rem; }
.foot-nav a { color: var(--ink-soft); text-decoration: none; font-weight: 600; font-size: .9rem; }
.foot-nav a:hover { color: var(--accent); }

/* Hero tagline + CTA pe acasă */
.home-tagline { text-align: center; padding: 1.6rem 0 .2rem; }
.home-tagline .ht-line { font-family: var(--font-display); font-size: clamp(1.25rem, 3.2vw, 1.8rem); color: var(--ink);
  max-width: 32ch; margin: 0 auto 1rem; line-height: 1.2; }
.home-tagline .ht-cta { display: flex; gap: .7rem; justify-content: center; flex-wrap: wrap; }
.home-tagline .ht-kicker { text-transform: uppercase; letter-spacing: 2px; font-size: .8rem; font-weight: 700; color: var(--accent); margin: 0 0 .5rem; }
.home-tagline .ht-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.7rem, 5vw, 2.8rem); line-height: 1.08; margin: 0 auto .55rem; max-width: 22ch; color: var(--ink); }

/* Grila „ultimele aventuri" pe home (conținutul, înaintea jocului) */
.home-recent { padding: 1.4rem 0 .4rem; }
.home-recent-more { text-align: center; margin-top: 1.2rem; }

/* Badge „play" peste thumbnail-ul cardului — semnal vizual că e de ascultat/vizionat */
.ep-card-play { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(20,14,9,.62);
  color: #fff; font-size: 1.05rem; padding-left: 3px; opacity: 0; transition: opacity .15s, transform .15s; pointer-events: none; }
.ep-card:hover .ep-card-play, .ep-card:focus-visible .ep-card-play { opacity: 1; transform: translate(-50%,-50%) scale(1.08); }

/* „Sari peste joc" — link mai clar (actionabil) */
.lock-skip { font-weight: 700; color: var(--accent); }

/* ============================================================
   Batch 3 UX — breadcrumb, share, nav episoade, abonare, reminder
   ============================================================ */
.crumbs { font-size: .85rem; color: var(--ink-soft); margin: .2rem 0 1rem; }
.crumbs a { color: var(--ink-soft); text-decoration: none; }
.crumbs a:hover { color: var(--accent); }
.crumbs .crumb-here { color: var(--accent); font-weight: 700; }

.ep-novideo { background: var(--paper-2); border: 1px dashed var(--line); border-radius: var(--radius);
  padding: 1.3rem; text-align: center; color: var(--ink-soft); margin: 1.2rem 0; }

.share-row { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; margin: 1.2rem 0; }
.share-lbl { color: var(--ink-soft); font-size: .9rem; font-weight: 600; margin-right: .2rem; }

.subscribe-box { display: flex; flex-direction: column; align-items: center; gap: .35rem; text-align: center;
  background: linear-gradient(180deg, var(--surface-2), var(--paper-2)); border: 1px solid var(--accent);
  border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.4rem; margin: 2rem 0 1.2rem; }
.subscribe-box strong { font-family: var(--font-display); font-size: 1.3rem; }
.sub-btns { display: flex; gap: .6rem; flex-wrap: wrap; justify-content: center; margin-top: .4rem; }

.ep-nav { display: flex; align-items: center; justify-content: space-between; gap: .6rem; flex-wrap: wrap; margin: 1.4rem 0; }
.ep-nav > span { flex: 1 1 0; }

.reminder-btn { margin-top: .8rem; }
.cc-actions { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: .6rem; }

/* Taburi de sortare (arhive Beri + Aventuri) */
.sort-tabs { display: flex; flex-wrap: wrap; align-items: center; gap: .4rem; margin: 0 0 1.2rem; }
.sort-lbl { color: var(--ink-soft); font-size: .85rem; margin-right: .3rem; }
.sort-btn { cursor: pointer; font: inherit; font-size: .85rem; font-weight: 600; padding: .35rem .8rem; border-radius: 30px;
  border: 1px solid var(--line); background: var(--surface-2); color: var(--ink-soft); transition: color .12s, border-color .12s, background .12s; }
.sort-btn:hover { color: var(--accent); border-color: var(--accent); }
.sort-btn.active { background: var(--accent); border-color: var(--accent); color: #1a120c; }

/* Pagina Confidențialitate */
.confid .lead { font-size: 1.15rem; color: var(--ink); max-width: 720px; }
.confid-list { max-width: 760px; list-style: none; padding: 0; margin: 0 0 1rem; display: flex; flex-direction: column; gap: .6rem; }
.confid-list li { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); padding: .9rem 1.1rem; }
.confid-foot { max-width: 760px; margin-top: 1.6rem; color: var(--ink-soft); }
