/* ═══════════════════════════════════════════════════════
   DOT.AY — style.css
   Aesthetic: Punk × Windows 95
   ═══════════════════════════════════════════════════════ */


/* ── 01  CUSTOM PROPERTIES ─────────────────────────────── */

:root {
  --orange:      #FF4500;
  --orange-lt:   #FF7733;
  --orange-xlt:  #FFB347;
  --pink:        #E8006A;
  --pink-lt:     #FF5BA8;
  --green:       #00CC44;
  --green-neon:  #39FF14;
  /* WordArt extrusion colours */
  --xtr-1:       #E8006A;
  --xtr-2:       #C4005A;
  --xtr-3:       #8A0040;
  /* Win95 chrome */
  --silver:      #C0C0C0;
  --silver-lt:   #DFDFDF;
  --silver-dk:   #808080;
  --silver-xdk:  #404040;
  --white:       #FFFFFF;
  --black:       #000000;
}


/* ── 01b DARK MODE OVERRIDES ───────────────────────────── */

[data-theme="dark"] {
  --silver:      #2a2a2a;
  --silver-lt:   #3a3a3a;
  --silver-dk:   #555555;
  --silver-xdk:  #aaaaaa;
  --white:       #1e1e1e;
  --black:       #e8e8e8;
}

[data-theme="dark"] body {
  background-color: #0a0005;
  background-image:
    radial-gradient(circle, rgba(255,69,0,0.12) 1px, transparent 1px),
    radial-gradient(circle, rgba(232,0,106,0.07) 1px, transparent 1px);
}

[data-theme="dark"] .w95-content {
  background: #1a1a1a;
}

[data-theme="dark"] .release-thumb,
[data-theme="dark"] .video-thumb  { background: #111; }

[data-theme="dark"] .cf-input {
  background: #111;
  color: #e8e8e8;
}

[data-theme="dark"] .body-text,
[data-theme="dark"] .release-name { color: #cccccc; }

[data-theme="dark"] .w95-listbox  { background: #222; border-color: #444; }
[data-theme="dark"] .w95-list-item { border-bottom-color: #333; }
[data-theme="dark"] .list-link    { color: #e8e8e8; }
[data-theme="dark"] .list-detail  { color: #888; }

[data-theme="dark"] .contact-link {
  background: #2a2a2a;
  color: #e8e8e8;
}

[data-theme="dark"] .lightbox-window { background: #2a2a2a; }
[data-theme="dark"] .lightbox-body.audio-mode { background: #1a1a1a; }

[data-theme="dark"] .video-card         { background: #222; }
[data-theme="dark"] .video-name         { color: #cccccc; }
[data-theme="dark"] .vid-year           { color: #666; }

[data-theme="dark"] .coming-up         { background: #1a1a1a; border-color: #444; }
[data-theme="dark"] .gig-row           { border-bottom-color: #333; }
[data-theme="dark"] .gig-row:hover     { background: #2a1a1f; }
[data-theme="dark"] .gig-name          { color: #e8e8e8; }
[data-theme="dark"] .gig-venue         { color: #888; }

[data-theme="dark"] .w95-menubar,
[data-theme="dark"] .w95-menu-item,
[data-theme="dark"] .has-dropdown    { color: #e8e8e8; }

[data-theme="dark"] .w95-dropdown    { background: #2a2a2a; color: #e8e8e8; }
[data-theme="dark"] .w95-dropdown-item { color: #e8e8e8; }
[data-theme="dark"] .w95-dropdown-sep  { background: #444; border-top-color: #555; }

[data-theme="dark"] .ticker-wrap {
  background:
    repeating-linear-gradient(
      -55deg,
      rgba(0,0,0,0.15) 0,
      rgba(0,0,0,0.15) 4px,
      transparent 4px,
      transparent 14px
    ),
    #7a1500;
  border-bottom-color: #000;
}
[data-theme="dark"] .ticker-label  { background: #6a003a; }
[data-theme="dark"] .ticker-item   { color: #ffccaa; }
[data-theme="dark"] .ticker-sep    { color: rgba(255,180,120,0.4); }
[data-theme="dark"] .t-date        { background: #ffccaa; color: #1a0000; }


/* ── 02  @PROPERTY — ANIMATABLE CUSTOM PROPS ───────────── */

/* Allows CSS to interpolate/transition the titlebar gradient angle */
@property --tbar-angle {
  syntax: "<angle>";
  initial-value: 92deg;
  inherits: false;
}

/* Allows smooth hue animation on stickers without JS */
@property --sticker-hue {
  syntax: "<number>";
  initial-value: 0;
  inherits: false;
}


/* ── 03  SELECTION & SCROLLBAR ─────────────────────────── */

::selection {
  background: var(--orange);
  color: var(--white);
}

/* Win95-flavoured scrollbar */
::-webkit-scrollbar       { width: 16px; height: 16px; }
::-webkit-scrollbar-track { background: var(--silver); }
::-webkit-scrollbar-thumb {
  background: var(--silver);
  border-top:    2px solid var(--silver-lt);
  border-left:   2px solid var(--silver-lt);
  border-right:  2px solid var(--silver-xdk);
  border-bottom: 2px solid var(--silver-xdk);
  min-height: 30px;
}
::-webkit-scrollbar-thumb:hover { background: var(--silver-lt); }
::-webkit-scrollbar-button {
  background: var(--silver);
  border-top:    2px solid var(--silver-lt);
  border-left:   2px solid var(--silver-lt);
  border-right:  2px solid var(--silver-xdk);
  border-bottom: 2px solid var(--silver-xdk);
  display: block;
  height: 16px;
}
::-webkit-scrollbar-corner { background: var(--silver); }


/* ── 04  RESET & BODY ──────────────────────────────────── */

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

html { height: 100%; }

body {
  font-family: 'Arial', 'Helvetica', sans-serif;
  font-size: 13px;
  background-color: #1a0305;
  /* punk pixel-noise desktop pattern */
  background-image:
    radial-gradient(circle, rgba(255,69,0,0.08) 1px, transparent 1px),
    radial-gradient(circle, rgba(232,0,106,0.05) 1px, transparent 1px);
  background-size: 28px 28px, 44px 44px;
  background-position: 0 0, 14px 14px;
  min-height: 100vh;
  padding-bottom: 52px; /* taskbar clearance */
  color: var(--black);
}


/* ── 05  TICKER ────────────────────────────────────────── */

.ticker-wrap {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: sticky;
  top: 0;
  z-index: 900;
  border-bottom: 3px solid var(--black);
  /* diagonal stripe on the orange band — pure CSS texture */
  background:
    repeating-linear-gradient(
      -55deg,
      rgba(0,0,0,0.06) 0,
      rgba(0,0,0,0.06) 4px,
      transparent 4px,
      transparent 14px
    ),
    var(--orange);
}

.ticker-inner { display: flex; align-items: stretch; }

.ticker-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 17px;
  letter-spacing: 2px;
  color: var(--white);
  background: var(--pink);
  padding: 5px 14px;
  flex-shrink: 0;
  border-right: 3px solid var(--black);
  display: flex;
  align-items: center;
  gap: 7px;
}

.ticker-pin { font-size: 13px; }

.ticker-track-wrap { overflow: hidden; flex: 1; }

.ticker-track {
  display: inline-flex;
  align-items: center;
  animation: ticker-scroll 38s linear infinite;
  will-change: transform;
}

.ticker-track:hover,
.ticker-track.paused { animation-play-state: paused; cursor: default; }

.ticker-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  letter-spacing: 1.5px;
  color: var(--black);
  padding: 6px 0;
  white-space: nowrap;
}

.t-date {
  color: var(--white);
  background: var(--black);
  padding: 1px 6px;
  margin-right: 6px;
  font-size: 14px;
}

.ticker-sep {
  padding: 6px 16px;
  font-size: 16px;
  color: rgba(0,0,0,0.35);
}

.t-news {
  color: var(--black);
  background: var(--green-neon);
  padding: 1px 6px;
  margin-right: 6px;
  font-size: 14px;
}

.ticker-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.ticker-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

[data-theme="dark"] .t-news { color: #000; }


/* ── 06  DESKTOP WRAPPER ───────────────────────────────── */

.desktop {
  max-width: 1020px;
  margin: 18px auto;
  padding: 0 12px;
}


/* ── 07  WIN95 WINDOW ──────────────────────────────────── */

.w95-window {
  background: var(--silver);
  border-top:    2px solid var(--white);
  border-left:   2px solid var(--white);
  border-right:  2px solid var(--silver-xdk);
  border-bottom: 2px solid var(--silver-xdk);
  box-shadow: 1px 1px 0 var(--silver-dk), -1px -1px 0 var(--silver-lt);
  transform: rotate(-0.4deg);
}


/* ── 08  TITLEBAR ──────────────────────────────────────── */

.w95-titlebar {
  /* @property trick: gradient angle breathes slowly */
  background: linear-gradient(var(--tbar-angle), var(--orange) 0%, var(--pink) 100%);
  animation: tbar-breathe 6s ease-in-out infinite;
  padding: 4px 6px 4px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}

.w95-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 3px;
  color: var(--white);
  text-shadow: 1px 1px 0 rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  gap: 8px;
}

.w95-title-icon {
  width: 16px;
  height: 16px;
  background: var(--green-neon);
  border: 1px solid rgba(0,0,0,0.4);
  display: inline-block;
  flex-shrink: 0;
  /* neon pulse using the @property sticker-hue isn't needed here —
     direct keyframe is cleaner for this glow */
  animation: icon-pulse 2.4s ease-in-out infinite;
}

.w95-controls { display: flex; gap: 2px; }

.w95-ctrl-btn {
  width: 18px;
  height: 16px;
  font-size: 10px;
  font-weight: bold;
  font-family: 'Arial', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--silver);
  border-top:    2px solid var(--white);
  border-left:   2px solid var(--white);
  border-right:  2px solid var(--silver-xdk);
  border-bottom: 2px solid var(--silver-xdk);
  cursor: pointer;
  color: var(--black);
}

.w95-ctrl-btn:active {
  border-color: var(--silver-xdk) var(--white) var(--white) var(--silver-xdk);
}


/* ── 09  MENU BAR ──────────────────────────────────────── */

.w95-menubar {
  background: var(--silver);
  border-bottom: 1px solid var(--silver-dk);
  padding: 2px 4px;
  display: flex;
  gap: 1px;
  flex-wrap: wrap;
  position: relative;
  z-index: 200;
}

.w95-menu-item {
  font-size: 12px;
  padding: 2px 8px;
  cursor: pointer;
  user-select: none;
}

.w95-menu-item:hover {
  background: var(--orange);
  color: var(--white);
}

/* File menu with dropdown */
.has-dropdown {
  position: relative;
  font-size: 12px;
  padding: 2px 8px;
  cursor: pointer;
  user-select: none;
}
.has-dropdown:hover,
.has-dropdown.open {
  background: var(--orange);
  color: var(--white);
}

.w95-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 190px;
  background: var(--silver);
  border-top:    2px solid var(--white);
  border-left:   2px solid var(--white);
  border-right:  2px solid var(--silver-xdk);
  border-bottom: 2px solid var(--silver-xdk);
  box-shadow: 2px 2px 0 #000;
  z-index: 300;
  padding: 2px 0;
}

.w95-dropdown-item {
  font-size: 12px;
  padding: 4px 20px 4px 28px;
  cursor: pointer;
  white-space: nowrap;
}
.w95-dropdown-item:hover {
  background: var(--orange);
  color: var(--white);
}

.w95-dropdown-sep {
  height: 1px;
  background: var(--silver-dk);
  margin: 3px 4px;
  border-top: 1px solid var(--white);
}


/* ── 10  NAV TABS ──────────────────────────────────────── */

.w95-tabs {
  background: var(--silver);
  padding: 6px 8px 0;
  display: flex;
  gap: 3px;
  flex-wrap: wrap;
  border-bottom: 2px solid var(--silver-dk);
}

.w95-tab {
  font-family: 'Arial', sans-serif;
  font-size: 12px;
  font-weight: bold;
  padding: 4px 14px 5px;
  cursor: pointer;
  background: var(--silver-dk);
  color: var(--white);
  border-top:    2px solid var(--silver-lt);
  border-left:   2px solid var(--silver-lt);
  border-right:  2px solid var(--silver-xdk);
  border-bottom: none;
  position: relative;
  top: 1px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  /* dashed focus ring using outline offset trick */
  outline-offset: -3px;
}

.w95-tab:hover {
  background: var(--silver);
  color: var(--black);
}

.w95-tab.active {
  background: var(--white);
  color: var(--black);
  border-top-color:  var(--white);
  border-left-color: var(--white);
  border-right-color: var(--silver-dk);
  top: 2px;
  padding-bottom: 7px;
}

/* CSS :has() — when chiptune tab is active, tint the icon green */
.w95-window:has([data-section="chiptune"].active) .w95-title-icon { background: var(--green-neon); }
.w95-window:has([data-section="dj"].active)       .w95-title-icon { background: var(--pink-lt); }
.w95-window:has([data-section="field"].active)    .w95-title-icon { background: #7EC8E3; }
.w95-window:has([data-section="visuals"].active)  .w95-title-icon { background: var(--orange-lt); }
.w95-window:has([data-section="shows"].active)    .w95-title-icon { background: #FFDD44; }
.w95-window:has([data-section="contact"].active)  .w95-title-icon { background: var(--pink); }


/* ── 11  CONTENT PANE ──────────────────────────────────── */

.w95-content {
  background: var(--white);
  padding: 20px 22px 28px;
  border-top:    2px solid var(--silver-dk);
  border-left:   2px solid var(--silver-dk);
  border-right:  2px solid var(--silver-lt);
  border-bottom: 2px solid var(--silver-lt);
  margin: 0 4px 4px;
  min-height: 460px;
}

.section { display: none; }

/* section fade-in when activated via JS .active class */
.section.active {
  display: block;
  animation: sec-in 0.18s ease-out both;
}


/* ── 12  WORDART TYPOGRAPHY ────────────────────────────── */

/*
  MAIN TITLE — per-letter WordArt tumble effect
  ─────────────────────────────────────────────
  Technique:
    • Each letter is an inline-block span, allowing independent
      transform (rotate + translateY) so they tumble like the
      classic Word 97 WordArt arc effect.
    • text-shadow on each span uses 8 stepped layers at 1-2px
      increments — this is what creates the solid chunky 3D
      depth (à la Clippy / "Make WordArt").
    • Because text-shadow lives in the element's LOCAL coordinate
      space, the extrusion direction rotates WITH each letter —
      so the depth always looks correct regardless of the angle.
    • -webkit-text-stroke punches a dark outline around the fill.
*/

.punk-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 96px;
  line-height: 1;
  display: flex;
  align-items: flex-end;
  gap: 1px;
  flex-wrap: nowrap;
  margin-bottom: 14px;
  /* padding gives room for rotated letters + deep shadow to breathe */
  padding: 18px 0 48px;
  overflow: visible;
}

/* ── shared letter style ── */
.punk-heading span {
  display: block;
  flex-shrink: 0;
  color: #FF8C42;
  -webkit-text-stroke: 2.5px #200000;
  /*
    8 stepped shadow layers → solid block extrusion
    Colour shifts: orange face → pink mid → dark red → black drop
  */
  text-shadow:
    /* body of extrusion — saturated pinks */
    1px  2px 0 #E8006A,
    2px  4px 0 #DF005E,
    3px  6px 0 #D40052,
    4px  8px 0 #C20046,
    5px 10px 0 #AC003A,
    /* mid — start lightening */
    6px 12px 0 #BA2255,
    7px 14px 0 #CC4470,
    8px 16px 0 #DC6E90,
    9px 18px 0 #E994B0,
    10px 20px 0 #F3BBCE,
    /* tip — fade to white */
    11px 22px 0 #F9D8E6,
    12px 24px 0 #FDEEF4,
    13px 25px 1px rgba(255,255,255,0.95),
    14px 27px 3px rgba(255,255,255,0.7),
    15px 29px 6px rgba(255,255,255,0.4);
}

/* ── uniform lean — all letters same angle, Clippy-style ── */
.punk-heading span    { transform: rotate(-12deg); }
.punk-heading .ph-dot { transform: rotate(-12deg) scale(0.72); margin: 0 -4px; }

/* ── hover wobble — letters ripple with staggered delay ── */
.punk-heading { cursor: default; }

.punk-heading:hover span    { animation: letter-wobble 0.55s ease-in-out infinite; }
.punk-heading:hover .ph-dot { animation: dot-wobble   0.55s ease-in-out infinite; }

.punk-heading:hover span:nth-child(1) { animation-delay: 0.00s; }
.punk-heading:hover span:nth-child(2) { animation-delay: 0.06s; }
.punk-heading:hover span:nth-child(3) { animation-delay: 0.12s; }
.punk-heading:hover span:nth-child(4) { animation-delay: 0.18s; }
.punk-heading:hover span:nth-child(5) { animation-delay: 0.24s; }
.punk-heading:hover span:nth-child(6) { animation-delay: 0.30s; }


/* ── SECTION HEADINGS ── */
/*
  Same deep-extrusion trick but applied to the whole word as a
  block — individual letter rotation would be impractical for
  variable-length headings. Overall skewX gives the lean.
*/

.sec-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px;
  letter-spacing: 3px;
  line-height: 1;
  display: inline-block;
  transform: skewX(-12deg);
  color: #FF8C42;
  -webkit-text-stroke: 1.5px #200000;
  /* scaled-down version of punk-heading extrusion → white fade */
  text-shadow:
    1px  2px 0 #E8006A,
    2px  4px 0 #DF005E,
    3px  5px 0 #D40052,
    4px  6px 0 #C22260,
    5px  8px 0 #CC4470,
    6px  9px 0 #DC6E90,
    7px 11px 0 #EDAABF,
    8px 13px 0 #F9D8E6,
    9px 14px 1px rgba(255,255,255,0.9),
   10px 16px 3px rgba(255,255,255,0.5);
  padding-bottom: 6px;
  border-bottom: none;
  margin-bottom: 18px;
  cursor: default;
}

.sec-heading:hover { animation: sec-wobble 0.5s ease-in-out infinite; }

.sub-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 2px;
  color: var(--pink);
  margin: 24px 0 9px;
  border-left: 5px solid var(--green-neon);
  padding-left: 8px;
  /* subtle drop for depth without full extrusion */
  text-shadow: 1px 1px 0 rgba(0,0,0,0.2);
}

.body-text {
  font-size: 13px;
  line-height: 1.65;
  color: #1a1a1a;
  max-width: 700px;
  margin-bottom: 16px;
}

.body-text a {
  color: var(--orange);
  text-decoration: underline;
  font-weight: bold;
}

.body-text a:hover { color: var(--pink); }


/* ── 13  STICKER BADGE ─────────────────────────────────── */

/*
  clip-path gives the "dog-eared" torn-corner effect.
  --sticker-hue (@property) allows a smooth hue cycle animation.
*/

.sticker {
  --sticker-hue: 0;
  display: inline-block;
  background: var(--green-neon);
  color: var(--black);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 1px;
  padding: 3px 9px 3px 8px;
  transform: rotate(-2deg);
  margin-left: 8px;
  /* torn corner */
  clip-path: polygon(0 0, calc(100% - 7px) 0, 100% 7px, 100% 100%, 7px 100%, 0 calc(100% - 7px));
  animation: sticker-hue-cycle 5s linear infinite;
  vertical-align: middle;
}

.sticker-sm {
  font-size: 10px;
  padding: 2px 6px;
  clip-path: polygon(0 0, calc(100% - 5px) 0, 100% 5px, 100% 100%, 5px 100%, 0 calc(100% - 5px));
}


/* ── 14  WIN95 GROUP BOX ───────────────────────────────── */

.w95-group {
  border: 2px solid;
  border-color: var(--silver-dk) var(--white) var(--white) var(--silver-dk);
  padding: 16px 12px 12px;
  margin-bottom: 16px;
  position: relative;
}

.w95-group-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  letter-spacing: 1px;
  background: var(--white);
  position: absolute;
  top: -11px;
  left: 10px;
  padding: 0 6px;
  color: var(--pink);
}


/* ── 15  COMING UP PANEL ───────────────────────────────── */

.coming-up {
  border: 2px solid var(--silver-dk);
  box-shadow: inset 1px 1px 0 var(--silver-xdk);
  background: #FFFFF4;
  margin-bottom: 18px;
}

.coming-up-header {
  background: var(--pink);
  padding: 5px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.coming-up-header span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 2px;
  color: var(--white);
}

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

.gig-row {
  display: flex;
  align-items: center;
  padding: 8px 10px;
  border-bottom: 1px solid #e8e8e8;
  gap: 12px;
  transition: background 0.08s;
}

.gig-row:last-child { border-bottom: none; }
.gig-row:hover      { background: #FFF0F5; }

.gig-date {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  letter-spacing: 1px;
  color: var(--orange);
  flex-shrink: 0;
  width: 56px;
}

.gig-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.gig-name {
  font-size: 12px;
  font-weight: bold;
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

a.gig-name:hover { color: var(--orange); text-decoration: underline; }

.gig-venue { font-size: 11px; color: var(--silver-xdk); }
.gig-tba   { color: var(--silver-dk); font-style: italic; font-weight: normal; }


/* ── 16  WIN95 LISTBOX ─────────────────────────────────── */

/*
  CSS counters: auto-number list items without touching the HTML.
  counter-reset on the list, counter-increment on each item,
  ::before injects the formatted number.
*/

.w95-listbox {
  border-top:    2px solid var(--silver-dk);
  border-left:   2px solid var(--silver-dk);
  border-right:  2px solid var(--white);
  border-bottom: 2px solid var(--white);
  background: var(--white);
  list-style: none;
  box-shadow: inset 1px 1px 0 var(--silver-xdk);
  counter-reset: playlist;
}

.w95-list-item {
  display: flex;
  align-items: center;
  padding: 5px 8px 5px 6px;
  gap: 8px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  font-size: 12px;
  counter-increment: playlist;
  transition: background 0.06s, color 0.06s;
}

.w95-list-item:last-child { border-bottom: none; }

/* CSS counter injected as the row number */
.w95-list-item::before {
  content: counter(playlist, decimal-leading-zero);
  color: var(--silver-dk);
  font-size: 11px;
  min-width: 22px;
  text-align: right;
  font-family: monospace;
  flex-shrink: 0;
}

/* Venue rows (no counter) */
.w95-list-item.no-count { counter-increment: none; align-items: flex-start; flex-wrap: wrap; }
.w95-list-item.no-count::before { content: "—"; color: var(--silver-dk); padding-top: 1px; }

.list-detail {
  width: 100%;
  padding-left: 30px; /* aligns under the link, past the "—" */
  font-size: 10px;
  color: var(--silver-xdk);
  font-family: 'Arial', sans-serif;
  margin-top: 1px;
  line-height: 1.4;
}
.w95-list-item:hover .list-detail { color: rgba(255,255,255,0.75); }

.w95-list-item:hover {
  background: var(--orange);
  color: var(--white);
}

.w95-list-item:hover .list-link { color: var(--white); text-decoration: none; }
.w95-list-item:hover .list-tag  { border-color: rgba(255,255,255,0.6); color: rgba(255,255,255,0.8); }

.list-link {
  flex: 1;
  color: var(--black);
  text-decoration: none;
  font-weight: bold;
}

.list-tag {
  font-size: 9px;
  font-weight: bold;
  padding: 1px 5px;
  border: 1px solid currentColor;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.tag-sc   { color: var(--orange); }
.tag-yt   { color: var(--pink);   }
.tag-pod  { color: var(--green);  }
.tag-mc   { color: #5000ff;       }
.tag-comp { color: #7700aa;       }


/* ── 17  RELEASE GRID ──────────────────────────────────── */

.release-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.release-card {
  display: block;
  text-decoration: none;
  color: var(--black);
  text-align: center;
  padding: 6px;
  cursor: pointer;
}

.release-thumb {
  width: 100%;
  aspect-ratio: 1;
  border-top:    2px solid var(--silver-dk);
  border-left:   2px solid var(--silver-dk);
  border-right:  2px solid var(--white);
  border-bottom: 2px solid var(--white);
  box-shadow: inset 1px 1px 0 var(--silver-xdk);
  background: #f0ede8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.12s;
}

/* conic-gradient hatching inside placeholder — no image needed */
.release-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: conic-gradient(
    from 0deg at 50% 50%,
    rgba(255,69,0,0.06) 0deg,
    transparent 45deg,
    rgba(232,0,106,0.05) 90deg,
    transparent 135deg,
    rgba(255,69,0,0.06) 180deg,
    transparent 225deg,
    rgba(232,0,106,0.05) 270deg,
    transparent 315deg,
    rgba(255,69,0,0.06) 360deg
  );
}

.thumb-txt {
  font-size: 9px;
  color: #bbb;
  text-align: center;
  padding: 8px;
  z-index: 1;
  line-height: 1.6;
  font-style: italic;
}

.release-name {
  font-size: 11px;
  font-weight: bold;
  color: var(--black);
  line-height: 1.3;
  transition: color 0.1s;
}

.release-card:hover .release-thumb { border-color: var(--orange) var(--orange-lt) var(--orange-lt) var(--orange); }
.release-card:hover .release-name  { color: var(--orange); }


/* ── 18  VIDEO GRID ────────────────────────────────────── */

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
  gap: 8px;
}

.video-card {
  display: block;
  text-decoration: none;
  border-top:    2px solid var(--silver-dk);
  border-left:   2px solid var(--silver-dk);
  border-right:  2px solid var(--white);
  border-bottom: 2px solid var(--white);
  background: #f0ede8;
  transition: border-color 0.1s;
}

.video-card:hover {
  border-top-color:  var(--orange);
  border-left-color: var(--orange);
}

.video-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.video-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* vertical scan-line texture on video thumbnails */
.video-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    rgba(255,69,0,0.07) 0,
    rgba(255,69,0,0.07) 2px,
    transparent 2px,
    transparent 10px
  );
  pointer-events: none;
}

.v-play {
  font-size: 30px;
  color: rgba(255,69,0,0.7);
  z-index: 1;
  transition: color 0.1s, transform 0.1s;
}

.video-card:hover .v-play {
  color: var(--orange);
  transform: scale(1.15);
}

.video-name {
  font-size: 11px;
  font-weight: bold;
  padding: 5px 7px;
  color: #222;
  line-height: 1.3;
}

.video-card:hover .video-name { color: var(--orange); }


/* ── 19  HOME PAGE ─────────────────────────────────────── */

.home-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 0 16px;
}

.home-logo {
  display: block;
  max-height: 220px;
  width: auto;
  filter:
    drop-shadow(1px 2px 0 #E8006A)
    drop-shadow(1px 2px 0 #DF005E)
    drop-shadow(1px 2px 0 #D40052)
    drop-shadow(1px 2px 0 #BE0048)
    drop-shadow(1px 2px 0 #CC4470)
    drop-shadow(1px 2px 0 #DC6E90)
    drop-shadow(1px 2px 0 #F0AABF)
    drop-shadow(1px 2px 0 #FDEEF4)
    drop-shadow(1px 2px 3px rgba(255,255,255,0.6));
  transform: rotate(-12deg);
  transform-origin: center center;
  padding: 8px 40px 44px 8px;
  cursor: default;
}
.home-logo:hover {
  animation: letter-wobble 0.55s ease-in-out infinite;
}

/* bio row: text left, profile image right */
.bio-row {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 20px;
  align-items: start;
  margin-bottom: 16px;
}

.bio-img-wrap {
  border-top:    2px solid var(--silver-dk);
  border-left:   2px solid var(--silver-dk);
  border-right:  2px solid var(--white);
  border-bottom: 2px solid var(--white);
  box-shadow: inset 1px 1px 0 var(--silver-xdk);
  overflow: hidden;
  flex-shrink: 0;
}

.bio-img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center 20%;
}

/* real album art inside release-thumb */
.release-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1; /* sits above the ::before conic-gradient pattern */
}

.home-top {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 22px;
  margin-bottom: 20px;
}

.home-nav-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
  gap: 5px;
  margin-top: 16px;
}

.home-nav-btn {
  font-family: 'Arial', sans-serif;
  font-size: 12px;
  font-weight: bold;
  padding: 7px 10px;
  background: var(--silver);
  color: var(--black);
  border-top:    2px solid var(--white);
  border-left:   2px solid var(--white);
  border-right:  2px solid var(--silver-xdk);
  border-bottom: 2px solid var(--silver-xdk);
  cursor: pointer;
  text-align: left;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 7px;
  letter-spacing: 0.3px;
  transition: background 0.06s, color 0.06s;
}

.home-nav-btn:hover {
  background: var(--orange);
  color: var(--white);
  border-top-color:  var(--orange-lt);
  border-left-color: var(--orange-lt);
}

.home-nav-btn:active {
  border-color: var(--silver-xdk) var(--white) var(--white) var(--silver-xdk);
}

.btn-ico { font-size: 15px; }


/* ── 20  CONTACT ───────────────────────────────────────── */

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 16px;
}

.contact-link {
  font-family: 'Arial', sans-serif;
  font-size: 12px;
  font-weight: bold;
  padding: 8px 14px;
  background: var(--silver);
  color: var(--black);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-top:    2px solid var(--white);
  border-left:   2px solid var(--white);
  border-right:  2px solid var(--silver-xdk);
  border-bottom: 2px solid var(--silver-xdk);
  transition: background 0.08s, color 0.08s;
}

.contact-link:hover {
  background: var(--pink);
  color: var(--white);
}

.venues-wrap { columns: 2; column-gap: 12px; }

/* ── contact form ── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 520px;
  margin-top: 4px;
}

.cf-row {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.cf-label {
  font-family: 'Arial', sans-serif;
  font-size: 10px;
  font-weight: bold;
  color: var(--silver-xdk);
  letter-spacing: 0.5px;
}

.cf-input {
  font-family: 'Arial', sans-serif;
  font-size: 12px;
  padding: 5px 7px;
  background: var(--white);
  color: var(--black);
  border-top:    2px solid var(--silver-xdk);
  border-left:   2px solid var(--silver-xdk);
  border-right:  2px solid var(--white);
  border-bottom: 2px solid var(--white);
  outline: none;
}
.cf-input:focus {
  border-top-color:  var(--orange);
  border-left-color: var(--orange);
}

.cf-textarea {
  resize: vertical;
  min-height: 90px;
}

.cf-submit-row {
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}

.cf-submit {
  font-family: 'Arial', sans-serif;
  font-size: 11px;
  font-weight: bold;
  padding: 5px 16px;
  background: var(--silver);
  color: var(--black);
  cursor: pointer;
  border-top:    2px solid var(--white);
  border-left:   2px solid var(--white);
  border-right:  2px solid var(--silver-xdk);
  border-bottom: 2px solid var(--silver-xdk);
  transition: background 0.08s, color 0.08s;
}
.cf-submit:hover:not(:disabled) {
  background: var(--orange);
  color: var(--white);
}
.cf-submit:active:not(:disabled) {
  border-top-color:    var(--silver-xdk);
  border-left-color:   var(--silver-xdk);
  border-right-color:  var(--white);
  border-bottom-color: var(--white);
}
.cf-submit:disabled { opacity: 0.6; cursor: default; }

.cf-banner {
  font-family: 'Arial', sans-serif;
  font-size: 12px;
  font-weight: bold;
  padding: 7px 12px;
  margin-bottom: 10px;
  display: none; /* shown by @formspree/ajax when needed */
}
.cf-banner-success {
  background: #d4edda;
  color: #155724;
  border-left: 3px solid var(--green);
}
.cf-banner-error {
  background: #f8d7da;
  color: #721c24;
  border-left: 3px solid var(--pink);
}

.cf-field-error {
  font-family: 'Arial', sans-serif;
  font-size: 10px;
  color: var(--pink);
  min-height: 14px;
  display: block;
}


/* ── 21  EMBED ─────────────────────────────────────────── */

/* ── 22  LIGHTBOX ──────────────────────────────────────── */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.78);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  animation: lb-in 0.12s ease-out;
}

.lightbox[hidden] { display: none; }

@keyframes lb-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.lightbox-window {
  width: min(840px, 100%);
  background: var(--silver);
  border-top:    2px solid var(--white);
  border-left:   2px solid var(--white);
  border-right:  2px solid var(--silver-xdk);
  border-bottom: 2px solid var(--silver-xdk);
  box-shadow: 4px 4px 0 rgba(0,0,0,0.5);
  animation: lb-window-in 0.15s ease-out;
}

@keyframes lb-window-in {
  from { transform: scale(0.95) translateY(8px); opacity: 0; }
  to   { transform: scale(1)    translateY(0);   opacity: 1; }
}

.lightbox-titlebar { cursor: default; }

.lightbox-body {
  background: #000;
  border-top:    2px solid var(--silver-xdk);
  border-left:   2px solid var(--silver-xdk);
  border-right:  2px solid var(--silver-lt);
  border-bottom: 2px solid var(--silver-lt);
  margin: 4px;
}

.lightbox-body iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
}

/* SoundCloud visual player — taller, no fixed aspect ratio */
.lightbox-body.audio-mode {
  background: #f2ede8;
}
.lightbox-body.audio-mode iframe {
  aspect-ratio: auto;
  height: clamp(300px, 50vh, 420px);
}

.vid-year { color: var(--silver-dk); font-weight: normal; }
.video-card:hover .vid-year { color: var(--orange-xlt); }

.lightbox-footer {
  padding: 5px 8px 6px;
  text-align: right;
  border-top: 1px solid var(--silver-dk);
}

.lb-external-link {
  font-size: 11px;
  font-family: 'Arial', sans-serif;
  color: var(--silver-xdk);
  text-decoration: none;
  padding: 2px 6px;
}
.lb-external-link:hover {
  background: var(--orange);
  color: var(--white);
}


/* ── 23  TASKBAR ───────────────────────────────────────── */

.taskbar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 48px;
  background: var(--silver);
  border-top: 2px solid var(--white);
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 6px;
  z-index: 999;
}

/* ── Start easter egg popup ── */
.start-popup {
  position: fixed;
  bottom: 54px;
  left: 6px;
  z-index: 1000;
  background: var(--silver);
  border-top:    2px solid var(--white);
  border-left:   2px solid var(--white);
  border-right:  2px solid var(--silver-xdk);
  border-bottom: 2px solid var(--silver-xdk);
  box-shadow: 4px 4px 0 rgba(0,0,0,0.5);
  animation: lb-window-in 0.15s ease-out;
  width: min(340px, 90vw);
}

.start-popup-titlebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3px 4px;
  background: linear-gradient(90deg, var(--pink) 0%, var(--orange) 100%);
  user-select: none;
}

.start-popup-titlebar .w95-title {
  color: var(--white);
  font-size: 12px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 5px;
}

.start-popup-body {
  background: #000;
  border-top:    2px solid var(--silver-xdk);
  border-bottom: 2px solid var(--silver-lt);
  margin: 4px;
  line-height: 0;
}

.start-popup-body video {
  display: block;
  width: 100%;
  max-height: 50vh;
}

.start-btn {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 17px;
  letter-spacing: 2px;
  padding: 4px 14px;
  background: var(--silver);
  color: var(--black);
  border-top:    2px solid var(--white);
  border-left:   2px solid var(--white);
  border-right:  2px solid var(--silver-xdk);
  border-bottom: 2px solid var(--silver-xdk);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.start-btn:hover  { background: var(--orange); color: var(--white); }
.start-btn:active { border-color: var(--silver-xdk) var(--white) var(--white) var(--silver-xdk); }

.start-dot {
  width: 10px;
  height: 10px;
  background: var(--orange);
  border: 1px solid var(--black);
  display: inline-block;
  flex-shrink: 0;
}

.taskbar-divider {
  width: 2px;
  height: 34px;
  border-left:  1px solid var(--silver-dk);
  border-right: 1px solid var(--white);
  margin: 0 2px;
}

.taskbar-window {
  font-size: 11px;
  font-weight: bold;
  padding: 4px 10px;
  background: var(--silver-dk);
  color: var(--white);
  border-top:    2px solid var(--silver-lt);
  border-left:   2px solid var(--silver-lt);
  border-right:  2px solid var(--silver-xdk);
  border-bottom: 2px solid var(--silver-xdk);
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.taskbar-hits {
  margin-left: auto;
  height: 20px;
  display: block;
  image-rendering: auto;
}

.taskbar-clock {
  margin-left: 6px;
  border-top:    2px solid var(--silver-dk);
  border-left:   2px solid var(--silver-dk);
  border-right:  2px solid var(--white);
  border-bottom: 2px solid var(--white);
  padding: 4px 10px;
  font-size: 12px;
  font-family: 'Arial', monospace;
  white-space: nowrap;
}


/* ── 23  KEYFRAMES ─────────────────────────────────────── */

/* @property — titlebar gradient angle oscillates */
@keyframes tbar-breathe {
  0%, 100% { --tbar-angle: 88deg; }
  50%       { --tbar-angle: 96deg; }
}

/* neon pulse on the title icon */
@keyframes icon-pulse {
  0%, 100% { box-shadow: 0 0 3px var(--green-neon); }
  50%       { box-shadow: 0 0 10px var(--green-neon), 0 0 20px rgba(57,255,20,0.4); }
}

/* @property — sticker hue cycles through 360° */
@keyframes sticker-hue-cycle {
  to { --sticker-hue: 360; }
}

.sticker {
  /* apply the custom property to a filter */
  filter: hue-rotate(calc(var(--sticker-hue) * 1deg));
}

/* section fade + rise */
@keyframes sec-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0);   }
}

/* punk-heading: per-letter wobble (base angle -12deg) */
@keyframes letter-wobble {
  0%   { transform: rotate(-12deg); }
  20%  { transform: rotate(-22deg) translateY(-5px); }
  45%  { transform: rotate(-3deg)  translateY(4px); }
  65%  { transform: rotate(-18deg) translateY(-2px); }
  82%  { transform: rotate(-9deg)  translateY(1px); }
  100% { transform: rotate(-12deg); }
}

/* same but preserves the period's scale(0.72) */
@keyframes dot-wobble {
  0%   { transform: rotate(-12deg) scale(0.72); }
  20%  { transform: rotate(-22deg) scale(0.72) translateY(-5px); }
  45%  { transform: rotate(-3deg)  scale(0.72) translateY(4px); }
  65%  { transform: rotate(-18deg) scale(0.72) translateY(-2px); }
  82%  { transform: rotate(-9deg)  scale(0.72) translateY(1px); }
  100% { transform: rotate(-12deg) scale(0.72); }
}

/* sec-heading: whole-word wobble (base skewX -12deg) */
@keyframes sec-wobble {
  0%   { transform: skewX(-12deg); }
  20%  { transform: skewX(-22deg) rotate(-3deg); }
  45%  { transform: skewX(-3deg)  rotate(1deg); }
  65%  { transform: skewX(-18deg) rotate(-2deg); }
  82%  { transform: skewX(-8deg)  rotate(0.5deg); }
  100% { transform: skewX(-12deg); }
}

/* ticker scroll */
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ── 24  RESPONSIVE ────────────────────────────────────── */

/* tablet */
@media (max-width: 860px) {
  .release-grid { grid-template-columns: repeat(2, 1fr); }
  .video-grid   { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .home-top { grid-template-columns: 1fr; }
  .bio-row  { grid-template-columns: 1fr; }
  .desktop  { margin: 0; padding: 0; }
  .w95-window { transform: none; }
  .punk-heading { font-size: 56px; }
  .sec-heading  { font-size: 32px; }
  .release-grid { grid-template-columns: repeat(2, 1fr); }
  .video-grid   { grid-template-columns: repeat(2, 1fr); }
}

/* mobile — single column */
@media (max-width: 480px) {
  .release-grid    { grid-template-columns: 1fr; }
  .video-grid      { grid-template-columns: 1fr; }
  .home-nav-grid   { grid-template-columns: repeat(2, 1fr); }
  .venues-wrap     { columns: 1; }
  .gig-venue       { display: none; }
  .w95-content     { padding: 14px 12px 20px; }
  .punk-heading    { font-size: 44px; }

  /* bio image: switch to landscape crop on mobile so it fills width naturally */
  .bio-img {
    height: auto;
    aspect-ratio: 4/3;
    object-position: center 15%;
  }
}
