/* Late 90s Internet Portal Skin (1995-2000)
 * Inspired by classic Moviefone-era web design:
 * mustard chrome, black masthead, cream panels, red link accents.
 */

:root {
  --page-mustard: #f2c665;
  --mast-black: #050505;
  --cream: #ececc1;
  --cream-2: #e4e4b1;
  --rule-red: #bb4d28;
  --rule-red-dark: #94361b;
  --ink: #1b1b10;
  --ink-soft: #333322;
  --ink-dim: #665f45;
  --link: #a11700;
  --link-hover: #d22b0b;
  --slate: #8f8fc0;

  --title-font: "Bookman Old Style", "Times New Roman", Times, serif;
  --body-font: "Times New Roman", Times, serif;
  --mono-font: "Courier New", Courier, monospace;
  --ui-font: Verdana, Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html, body { min-height: 100%; }

body,
body.skin-multiplex-90s {
  margin: 0;
  font-family: var(--body-font);
  color: var(--ink);
  background:
    radial-gradient(circle at 12px 12px, rgba(255, 244, 179, 0.42) 0 1px, transparent 1px 14px),
    radial-gradient(circle at 4px 4px, rgba(187, 77, 40, 0.18) 0 1px, transparent 1px 10px),
    linear-gradient(180deg, #f5cc73 0%, var(--page-mustard) 100%);
  background-size: 20px 20px, 14px 14px, auto;
}

.page {
  width: min(1200px, calc(100% - 12px));
  margin: 0 auto;
  border-left: 1px solid #9f6a20;
  border-right: 1px solid #9f6a20;
  background: var(--page-mustard);
}

.marquee {
  padding: 0;
  border-bottom: 2px solid var(--rule-red-dark);
  background: var(--page-mustard);
}

.marquee__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  min-height: 102px;
  padding: 10px 14px;
  border-bottom: 3px solid #d3a545;
  background:
    radial-gradient(480px 110px at 25% 35%, rgba(255,232,145,.18), rgba(255,232,145,0) 65%),
    var(--mast-black);
}

.marquee__brand {
  margin-top: 6px;
  font-family: var(--title-font);
  font-size: clamp(24px, 2.6vw, 34px);
  letter-spacing: 0;
  text-transform: lowercase;
  color: #f3ba4e;
  text-shadow: 0 1px 0 #000, 0 0 10px rgba(243,186,78,.2);
}

.marquee__date {
  margin-top: 66px;
  font-size: 32px;
  color: #f0c262;
  letter-spacing: 0;
  text-transform: uppercase;
}

.marquee__dateValue {
  font-family: var(--ui-font);
  font-size: 23px;
  color: #cf5d18;
  text-shadow: 0 1px 0 #ffe9b5;
}

.marquee__sub {
  margin-top: 0;
  padding: 8px 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  border-top: 1px solid #f7df9a;
  border-bottom: 1px solid #b47a2c;
  background: #efc164;
}

.controls-hint {
  width: 100%;
  font-family: var(--ui-font);
  font-size: 11px;
  color: #6d4f29;
  padding: 2px 2px 0;
}

.chip {
  font-family: var(--ui-font);
  font-size: 12px;
  padding: 2px 8px;
  border-top: 1px solid #f9e2aa;
  border-left: 1px solid #f9e2aa;
  border-right: 1px solid #99611d;
  border-bottom: 1px solid #99611d;
  border-radius: 999px;
  color: #4d2b0d;
  background: #f2d790;
  text-decoration: none;
}

.chip--dim {
  color: #6d4f29;
  background: #eac678;
}

.chip--btn {
  cursor: pointer;
  font-weight: bold;
  color: #fff5e8;
  background: linear-gradient(180deg, #c74b2d 0%, #9f2f19 100%);
  border-top-color: #f3b6aa;
  border-left-color: #f3b6aa;
  border-right-color: #7e2717;
  border-bottom-color: #7e2717;
}

.chip--btn:hover { filter: brightness(1.06); }
.chip--btn:active { transform: translateY(1px); }

button.chip {
  appearance: none;
  -webkit-appearance: none;
}

.about-chip {
  position: relative;
}

.about-chip summary {
  list-style: none;
  cursor: pointer;
}

.about-chip summary::-webkit-details-marker {
  display: none;
}

.about-chip__panel {
  position: absolute;
  z-index: 12;
  top: calc(100% + 6px);
  left: 0;
  width: min(380px, calc(100vw - 36px));
  padding: 8px 10px;
  border: 1px solid #99611d;
  border-radius: 8px;
  color: #3b2412;
  background: #f8e5b0;
  font-family: var(--ui-font);
  font-size: 11px;
  line-height: 1.35;
}

.status-banner details {
  margin-top: 4px;
}

.status-banner summary {
  cursor: pointer;
}

.date-picker {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  margin-right: 4px;
}

.date-picker__label {
  font-family: var(--ui-font);
  font-size: 11px;
  font-weight: bold;
  color: #642d10;
}

.date-picker__select,
.date-picker__go {
  height: 24px;
  border: 1px solid #9a651f;
  border-radius: 6px;
  padding: 0 6px;
  font-family: var(--ui-font);
  font-size: 12px;
  color: #3b2412;
  background: #f8e5b0;
}

.date-picker__go {
  cursor: pointer;
  color: #fff;
  border-color: #7d2414;
  background: linear-gradient(180deg, #c7482a 0%, #9b2d18 100%);
  font-weight: bold;
}

.date-picker__go:hover { filter: brightness(1.07); }
.date-picker__go:disabled { opacity: .8; cursor: wait; }

.board {
  margin: 0;
  padding: 8px 8px 10px;
  display: block;
  background: var(--page-mustard);
}

.screen {
  margin-bottom: 8px;
  border: 1px solid var(--rule-red-dark);
  box-shadow: 0 0 0 2px #e2b35d inset;
  border-radius: 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
  padding: 8px;
}

.screen:last-child { margin-bottom: 0; }

.screen__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #d1b67f;
  padding-bottom: 4px;
}

.screen__number {
  font-family: var(--mono-font);
  font-size: 11px;
  letter-spacing: .6px;
  color: #6f5b2e;
  text-transform: uppercase;
}

.status {
  position: relative;
  font-family: var(--ui-font);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .4px;
  border: 1px solid #be9f61;
  border-radius: 0;
  padding: 2px 6px;
  color: #5c4a2b;
  background: #f6ebcf;
}

.status--new {
  border-color: #af6648;
  color: #8d2c13;
  background: #ffe2d6;
  animation: blink-badge 1.15s steps(2, end) infinite;
}

.status--new::before {
  content: "NEW! ";
  color: #c31300;
  font-weight: 700;
}

.status--now {
  color: #5f5638;
}

.screen__title {
  margin: 6px 0 4px;
  font-family: var(--title-font);
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.05;
  text-transform: none;
  letter-spacing: 0;
  color: var(--link);
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

.screen__details {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
  font-size: 13px;
  color: var(--ink-soft);
}

.pill {
  border: 1px solid #bea76b;
  border-radius: 0;
  padding: 1px 5px;
  color: #433118;
  background: #f8eecf;
}

.dot { color: #897655; }

.flag {
  display: inline-block;
  padding: 0 4px;
  border: 1px solid #a77b2f;
  background: linear-gradient(180deg, #fff0ad 0%, #ffd16c 100%);
  color: #6a3f00;
  font-weight: bold;
  font-family: var(--ui-font);
  animation: blink-badge 1.35s steps(2, end) infinite;
}

.flag::before {
  content: "* ";
  color: var(--rule-red);
}

.screen__times {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  border-top: 1px dotted #c79f58;
  padding-top: 6px;
}

.time {
  font-family: var(--mono-font);
  font-size: 12px;
  border-top: 1px solid #fff1cf;
  border-left: 1px solid #fff1cf;
  border-right: 1px solid #a97f3d;
  border-bottom: 1px solid #a97f3d;
  border-radius: 0;
  padding: 2px 6px;
  color: #59381d;
  background: #f8e8c0;
}

.fineprint {
  margin-top: 0;
  border-top: 2px solid var(--rule-red-dark);
  border-radius: 0;
  padding: 8px 10px 12px;
  background: #efc164;
  font-size: 11px;
  color: #5a3d1f;
  text-transform: none;
}

.fineprint__line + .fineprint__line { margin-top: 4px; }
.fineprint__dim { color: #7a5b36; }
.fineprint a { color: #7e2717; }
.fineprint a:hover { color: #a11700; }

@keyframes blink-badge {
  0% { opacity: 1; }
  49% { opacity: 1; }
  50% { opacity: .5; }
  100% { opacity: .5; }
}

@media (max-width: 860px) {
  .marquee__date {
    margin-top: 10px;
    width: 100%;
    font-size: 11px;
    color: #d8b26a;
  }

  .marquee__dateValue {
    font-size: 18px;
    display: inline-block;
    margin-top: 2px;
  }
}
