:root{
  --bg:#0A0A0A;
  --surface:#161011;
  --surface-2:#221216;
  --accent:#FF0800;
  --accent-deep:#8C0500;
  --text:#F7F0EE;
  --text-muted:#B7A6A3;
  --border:#2A1C1E;
}
body.lrc-browse{
  background:var(--bg);
  color:var(--text);
  font-family:'Montserrat',system-ui,sans-serif;
  padding:0 clamp(16px,4vw,56px) 120px;
  min-height:100vh;
  margin:0;
}
body.lrc-browse *{box-sizing:border-box;}
body.lrc-browse ::selection{background:var(--accent);color:#fff;}

/* ---------- header ---------- */
body.lrc-browse .lrc-header{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:24px;
  padding:22px 0 18px;
  border-bottom:1px solid var(--border);
  flex-wrap:wrap;
  position:sticky;
  top:var(--wp-admin--admin-bar--height, 0px);
  background:var(--bg);
  z-index:20;
}
body.lrc-browse .wordmark{
  height:clamp(100px,13vw,170px);
  display:block;
}
body.lrc-browse .tagline-row{
  display:flex;
  align-items:flex-end;
  gap:14px;
}
body.lrc-browse .tagline{
  font-size:11px;
  letter-spacing:2.2px;
  text-transform:uppercase;
  color:#FFFFFF;
  font-weight:600;
  text-align:center;
  line-height:1.6;
  margin-top:16px;
}
body.lrc-browse .lrc-nav{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:10px 24px;
  list-style:none;
  margin:0;
  padding:0;
}
body.lrc-browse .lrc-nav li{list-style:none;margin:0;padding:0;position:relative;}
body.lrc-browse .lrc-nav a{
  color:#fff;
  text-decoration:none;
  font-size:19px;
  font-weight:600;
  letter-spacing:2.2px;
  text-transform:uppercase;
  transition:color .15s ease;
  white-space:nowrap;
  line-height:1.6;
  display:block;
}
body.lrc-browse .lrc-nav a:hover{color:var(--text);}
body.lrc-browse .lrc-nav .current-menu-item > a,
body.lrc-browse .lrc-nav .current_page_item > a{color:var(--accent);}

/* dropdown submenus (e.g. Artur LEG > Skyrave / President Rosko) */
body.lrc-browse .lrc-nav ul.sub-menu{
  display:none;
  flex-direction:column;
  gap:0;
  list-style:none;
  margin:0;
  padding:8px 0;
  position:absolute;
  top:100%;
  left:0;
  margin-top:12px;
  background:var(--surface);
  border:1px solid var(--border);
  min-width:190px;
  z-index:30;
}
body.lrc-browse .lrc-nav li:hover > ul.sub-menu,
body.lrc-browse .lrc-nav li:focus-within > ul.sub-menu{display:flex;}
body.lrc-browse .lrc-nav ul.sub-menu li{padding:0;}
body.lrc-browse .lrc-nav ul.sub-menu a{display:block;padding:9px 16px;}

/* hamburger toggle (mobile only) */
body.lrc-browse .lrc-nav-toggle{
  display:none;
  flex-direction:column;
  justify-content:center;
  align-items:stretch;
  gap:5px;
  width:44px;
  height:44px;
  padding:11px 8px;
  background:none;
  border:none;
  cursor:pointer;
  flex:none;
}
body.lrc-browse .lrc-nav-toggle span{
  display:block;
  width:100%;
  height:2px;
  background:var(--text);
  border-radius:1px;
}
body.lrc-browse .lrc-live-badge-mobile{
  display:none;
}

@media (max-width:760px){
  body.lrc-browse .lrc-nav-toggle{display:flex;}
  body.lrc-browse .lrc-live-badge-mobile{
    display:inline-block;
    color:var(--accent);
    background:#fff;
    font-weight:700;
    font-size:15px;
    letter-spacing:.5px;
    padding:8px 20px;
    border-radius:6px;
    border:none;
    text-decoration:none;
    font-family:inherit;
    cursor:pointer;
    -webkit-appearance:none;
    appearance:none;
    animation:lrc-live-pulse 1.1s ease-in-out infinite;
  }
  body.lrc-browse .lrc-nav .menu-item-13669{
    display:none;
  }

  body.lrc-browse .lrc-nav{
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:0;
    position:absolute;
    left:0;
    right:0;
    top:100%;
    background:var(--surface);
    border-top:1px solid var(--border);
    border-bottom:1px solid var(--border);
    padding:6px 0;
    z-index:40;
    box-shadow:0 12px 24px rgba(0,0,0,.35);
  }
  body.lrc-browse .lrc-nav.is-open{display:flex;}
  body.lrc-browse .lrc-nav li{width:100%;}
  body.lrc-browse .lrc-nav a{
    font-size:19px;
    letter-spacing:1px;
    padding:16px clamp(16px,4vw,56px);
    line-height:1.3;
    width:100%;
  }
  body.lrc-browse .lrc-nav ul.sub-menu{
    display:flex;
    position:static;
    flex-direction:column;
    border:none;
    background:rgba(255,255,255,.04);
    min-width:0;
    margin-top:0;
    padding:0;
    z-index:auto;
    box-shadow:none;
  }
  body.lrc-browse .lrc-nav ul.sub-menu a{
    padding:14px clamp(16px,4vw,56px) 14px calc(clamp(16px,4vw,56px) + 18px);
    font-size:14px;
  }
}

@media (max-width:600px){
  body.lrc-browse .tile-season,
  body.lrc-browse .tile-overlay .guest,
  body.lrc-browse .tile-overlay .season-full{
    display:none;
  }
  body.lrc-browse .tile-overlay .meta{
    display:none;
  }
}

/* ---------- page title ---------- */
body.lrc-browse .section-head{
  display:flex;
  align-items:baseline;
  justify-content:flex-end;
  margin:38px 0 18px;
  gap:16px;
  flex-wrap:wrap;
}
body.lrc-browse .section-head h1{
  font-family:'Barlow Condensed',sans-serif;
  font-weight:900;
  font-size:clamp(26px,3vw,34px);
  text-transform:uppercase;
  letter-spacing:.5px;
  margin:0;
  text-wrap:balance;
}
body.lrc-browse .section-head .count{
  font-size:12px;
  color:var(--text-muted);
  letter-spacing:.5px;
  font-weight:600;
}

/* ---------- grid ---------- */
body.lrc-browse .grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(230px,1fr));
  gap:0;
  margin-top:24px;
}
@media (max-width:900px){
  body.lrc-browse .grid{grid-template-columns:repeat(auto-fill,minmax(160px,1fr));}
}
@media (max-width:600px){
  body.lrc-browse .grid{grid-template-columns:repeat(auto-fill,minmax(120px,1fr));}
}
@media (max-width:360px){
  body.lrc-browse .grid{grid-template-columns:repeat(2,1fr);}
}
body.lrc-browse .tile{
  position:relative;
  aspect-ratio:1/1;
  overflow:hidden;
  background:var(--surface);
  cursor:pointer;
  padding:0;
  border:none;
  outline:2px solid transparent;
  outline-offset:2px;
  transition:outline-color .15s ease, transform .15s ease;
  -webkit-tap-highlight-color:transparent;
}
body.lrc-browse .tile:focus-visible{outline-color:var(--accent);}
body.lrc-browse .tile-art{
  position:absolute;inset:0;
  display:block;
}
body.lrc-browse .tile-art img{
  position:absolute;inset:0;
  width:100%;height:100%;
  object-fit:cover;
  display:block;
}
body.lrc-browse .tile-art .fallback-bg{
  position:absolute;inset:0;
  background:
    radial-gradient(120% 90% at 18% 8%, rgba(255,255,255,.10), transparent 55%),
    var(--tile-grad);
}
body.lrc-browse .tile-initial{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:'Barlow Condensed',sans-serif;
  font-weight:900;
  font-size:clamp(48px,9vw,86px);
  color:rgba(255,255,255,.20);
  line-height:1;
  user-select:none;
}
body.lrc-browse .tile-season{
  position:absolute;
  top:8px;left:8px;
  font-size:10px;
  font-weight:700;
  letter-spacing:.5px;
  color:rgba(255,255,255,.85);
  background:rgba(0,0,0,.42);
  backdrop-filter:blur(2px);
  padding:3px 7px;
  border-radius:3px;
  z-index:2;
}

/* overlay (hover on desktop, tap-revealed on touch) — play button centered */
body.lrc-browse .tile-overlay{
  position:absolute;inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(8,3,3,.55);
  opacity:0;
  transition:opacity .18s ease, background .18s ease;
  z-index:3;
}
body.lrc-browse .tile-overlay .meta{
  position:absolute;
  left:0;right:0;bottom:0;
  padding:10px 10px 12px;
  text-align:left;
  background:linear-gradient(180deg, transparent, rgba(0,0,0,.85) 65%);
}
body.lrc-browse .tile-overlay .guest{
  font-family:'Barlow Condensed',sans-serif;
  font-weight:800;
  font-size:clamp(14px,1.5vw,17px);
  text-transform:uppercase;
  letter-spacing:.3px;
  line-height:1.15;
  text-wrap:balance;
  display:block;
}
body.lrc-browse .tile-overlay .season-full{
  font-size:10px;
  color:var(--text-muted);
  font-weight:600;
  letter-spacing:.4px;
  text-transform:uppercase;
  display:block;
  margin-top:2px;
}
body.lrc-browse .play-btn{
  width:50px;height:50px;
  border-radius:50%;
  border:none;
  background:var(--accent);
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 6px 20px rgba(255,8,0,.45);
  transition:background .15s ease, transform .15s ease;
  flex:none;
  transform:scale(.85);
  pointer-events:none;
}
body.lrc-browse .tile.revealed .play-btn{
  pointer-events:auto;
}
body.lrc-browse .play-btn:hover{background:#ff2a1f;}
body.lrc-browse .play-btn:active{transform:scale(.78);}
body.lrc-browse .play-btn svg{width:19px;height:19px;fill:#fff;margin-left:2px;}
body.lrc-browse .play-btn.is-playing svg{margin-left:0;}

/* desktop hover reveal */
@media (hover:hover) and (pointer:fine){
  body.lrc-browse .tile:hover .tile-overlay,
  body.lrc-browse .tile:focus-visible .tile-overlay{opacity:1;}
  body.lrc-browse .tile:hover .play-btn,
  body.lrc-browse .tile:focus-visible .play-btn{transform:scale(1);pointer-events:auto;}
  body.lrc-browse .tile:hover{transform:scale(1.035);z-index:4;}
}
/* touch: revealed state toggled via JS class */
body.lrc-browse .tile.revealed .tile-overlay{opacity:1;}
body.lrc-browse .tile.revealed .play-btn{transform:scale(1);}

/* ---------- sticky player ---------- */
body.lrc-browse .player-bar{
  position:fixed;
  left:0;right:0;bottom:0;
  background:var(--surface);
  border-top:1px solid var(--border);
  padding:11px clamp(16px,4vw,56px);
  display:flex;
  align-items:center;
  gap:16px;
  transform:translateY(110%);
  transition:transform .28s cubic-bezier(.2,.8,.3,1);
  z-index:50;
}
body.lrc-browse .player-bar.open{transform:translateY(0);}
body.lrc-browse .player-bar .p-play{
  width:38px;height:38px;border-radius:50%;border:none;background:var(--accent);
  display:flex;align-items:center;justify-content:center;flex:none;cursor:pointer;
}
body.lrc-browse .player-bar .p-play svg{width:14px;height:14px;fill:#fff;}
body.lrc-browse .player-bar .p-meta{min-width:0;flex:1;}
body.lrc-browse .player-bar .p-title{
  font-size:12.5px;font-weight:700;color:var(--text);
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
}
body.lrc-browse .player-bar .p-guest{
  font-size:11px;color:var(--text-muted);font-weight:500;
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
}
body.lrc-browse .player-bar .p-progress{
  flex:2;
  height:3px;
  padding:14px 0;
  box-sizing:content-box;
  background:var(--border);
  background-clip:content-box;
  border-radius:2px;
  overflow:hidden;
  min-width:60px;
  cursor:pointer;
  touch-action:none;
  -webkit-tap-highlight-color:transparent;
}
body.lrc-browse .player-bar .p-progress i{
  display:block;height:100%;width:0%;
  background:var(--accent);
  transition:width .1s linear;
  pointer-events:none;
}
body.lrc-browse .player-bar .p-progress.seeking i{transition:none;}
body.lrc-browse .player-bar .p-close{
  background:none;border:none;color:var(--text-muted);
  font-size:20px;line-height:1;cursor:pointer;padding:4px 6px;flex:none;
}
body.lrc-browse .player-bar .p-close:hover{color:var(--text);}

body.lrc-browse .lrc-footer{
  margin-top:46px;
  padding-top:18px;
  border-top:1px solid var(--border);
  font-size:11px;
  color:var(--text-muted);
  letter-spacing:.3px;
}

body.lrc-browse .lrc-nav .menu-item-13669{
  order:-1;
}
body.lrc-browse .lrc-nav .menu-item-13669 > a{
  color:var(--accent);
  background:#fff;
  font-weight:700;
  letter-spacing:.5px;
  padding:4px 12px;
  border-radius:4px;
  display:inline-block;
  width:auto;
  animation:lrc-live-pulse 1.1s ease-in-out infinite;
}
@keyframes lrc-live-pulse{
  0%,100%{opacity:1;}
  50%{opacity:.25;}
}
