:root {
  color-scheme: dark;
  --background: #0f0d0b;
  --background-deep: #080706;
  --surface: #241e19;
  --surface-deep: #171310;
  --surface-soft: #302821;
  --text: #fffaf3;
  --muted: #c9bcad;
  --ember: #ff9d18;
  --ember-light: #ffc35a;
  --burnt: #ed5a23;
  --border: rgba(199, 166, 126, 0.25);
  --border-strong: rgba(255, 157, 24, 0.52);
  --gradient-ember: linear-gradient(135deg, var(--ember-light), var(--burnt));
  --shadow-deep: 0 28px 70px -28px rgba(0, 0, 0, 0.8);
  --radius: 14px;
}

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

html { scroll-behavior: smooth; }

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: radial-gradient(ellipse at 50% 0%, #2b2119 0, var(--background) 34%, var(--background-deep) 100%);
  font-family: "Barlow", Arial, sans-serif;
  line-height: 1.5;
}

button, input { font: inherit; }
button { color: inherit; }

svg {
  width: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.skip-link {
  position: fixed;
  top: -80px;
  left: 1rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  color: #21160b;
  background: var(--ember-light);
  font-weight: 800;
  transition: top 0.2s;
}

.skip-link:focus { top: 1rem; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.ambient-glow {
  position: absolute;
  inset: 0 0 auto;
  height: 600px;
  pointer-events: none;
  background: radial-gradient(circle at 50% 0%, rgba(255, 157, 24, 0.24), transparent 62%);
}

.cave-texture {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: radial-gradient(#fff 0.8px, transparent 0.8px);
  background-size: 22px 22px;
}

.page-shell {
  position: relative;
  width: min(1280px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2.1rem 0 1.5rem;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.brand-copy { display: flex; min-width: 0; flex-direction: column; line-height: 1; }

.brand-logo {
  display: block;
  width: auto;
  height: 60px;
  max-width: min(100%, 58vw);
  max-height: 60px;
  object-fit: contain;
}

.player h1,
.card-header h2 {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0.035em;
}

.brand-tagline { margin-top: 0.2rem; padding-left: 0.2rem; color: var(--muted); font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; }
.header-status, .listeners { display: flex; align-items: center; }
.header-status { gap: 1.5rem; }

.live-pill {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  color: var(--ember-light);
  background: rgba(233, 151, 39, 0.09);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.live-dot, .server-status span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 0 4px rgba(233, 151, 39, 0.13);
  animation: pulse 2.5s ease-in-out infinite;
}
.live-pill.is-offline { color: #ffd1ca; background: rgba(190, 76, 62, 0.16); }
.live-pill.is-offline .live-dot { background: #be4c3e; box-shadow: 0 0 0 4px rgba(190, 76, 62, 0.13); }

.listeners { gap: 0.4rem; color: var(--muted); font-size: 0.85rem; }
.listeners svg { width: 1.1rem; }
.listeners strong { color: var(--text); }

.cave-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(39, 32, 26, 0.98), rgba(21, 17, 14, 0.99));
  box-shadow: var(--shadow-deep), inset 0 1px rgba(255, 255, 255, 0.025);
}

.player {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 112px;
  padding: 0.8rem 1.25rem;
  overflow: hidden;
}

.player-glow {
  position: absolute;
  top: -9rem;
  right: -5rem;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  background: rgba(233, 151, 39, 0.18);
  filter: blur(55px);
}

.play-button {
  position: relative;
  display: grid;
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #26180c;
  background: var(--gradient-ember);
  box-shadow: 0 0 45px rgba(233, 151, 39, 0.33), inset 0 1px rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.play-button:hover { transform: scale(1.04); }
.play-button:active { transform: scale(0.97); }
.play-button svg { position: relative; width: 27px; fill: currentColor; stroke-width: 2.4; }
.play-button .icon-play { margin-left: 5px; }
.icon-pause { display: none; }
.is-playing .icon-play { display: none; }
.is-playing .icon-pause { display: block; fill: none; }

.pulse-ring {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--gradient-ember);
  opacity: 0;
}

.is-playing .pulse-ring { animation: player-pulse 2s ease-out infinite; }
.track-info { position: relative; flex: 1; min-width: 0; overflow: hidden; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  color: var(--ember-light);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.eyebrow svg { width: 1rem; }
.marquee { margin-top: 0.15rem; overflow: hidden; outline-offset: 4px; }
.marquee-content { display: flex; width: max-content; }
.marquee-content h1[aria-hidden="true"] { display: none; }
.marquee.is-overflowing .marquee-content h1[aria-hidden="true"] { display: block; }
.marquee.is-overflowing .marquee-content { animation: marquee var(--marquee-duration, 22s) linear infinite; }
.marquee:hover .marquee-content,
.marquee:focus .marquee-content,
.marquee:focus-within .marquee-content { animation-play-state: paused; }

.player h1 {
  margin: 0;
  padding-right: 3rem;
  font-size: clamp(1.15rem, 4vw, 3rem);
  white-space: nowrap;
}

.player h1 .track-separator { margin: 0 0.55rem; color: var(--muted); }
.player h1 .track-title { color: inherit; }
.player h1 strong { color: var(--ember); font-weight: 400; }
.player h1 i { margin-left: 1.5rem; color: rgba(233, 151, 39, 0.35); font-style: normal; }
.volume-control {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 220px;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(52, 44, 36, 0.5);
}

.volume-control svg { flex: 0 0 auto; color: var(--ember); }
.volume-control input { width: 100%; height: 5px; accent-color: var(--ember); cursor: pointer; }
.volume-control output { width: 1.7rem; color: var(--muted); font-size: 0.75rem; text-align: right; }
.player-status { margin: 0.15rem 0 0; color: var(--muted); font-size: 0.72rem; }

.feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: stretch; gap: 1.5rem; margin-top: 1.5rem; }
.feature-card { display: flex; height: 100%; min-height: 590px; padding: 1.35rem; flex-direction: column; }
.feature-card:nth-child(1),
.feature-card:nth-child(2) {
  min-height: 0;
  overflow: hidden;
}
.card-header { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 0.75rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }

.card-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  color: var(--ember-light);
  background: rgba(233, 151, 39, 0.1);
}

.card-header h2 { margin: 0; color: #fff; font-size: 1.62rem; line-height: 0.95; text-shadow: 0 1px 12px rgba(255, 255, 255, 0.08); }
.card-header p { margin: 0.3rem 0 0; color: #d5c9bc; font-size: 0.78rem; line-height: 1.2; }
.card-count { align-self: start; color: var(--ember-light); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase; white-space: nowrap; }
.chat-list {
  display: flex;
  min-height: 0;
  gap: 0.8rem;
  margin: 1rem 0;
  padding-right: 0.35rem;
  flex: 1 1 auto;
  flex-direction: column;
  overflow-y: scroll;
  overscroll-behavior: contain;
}
.chat-message { display: flex; align-items: flex-start; gap: 0.7rem; }

.avatar {
  display: grid;
  flex: 0 0 35px;
  width: 35px;
  height: 35px;
  place-items: center;
  border-radius: 9px;
  color: var(--text);
  background: var(--surface-soft);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1rem;
}

.avatar-accent { color: #29190c; background: var(--gradient-ember); }
.chat-message p { margin: 0; color: #d7ccbf; font-size: 0.84rem; line-height: 1.3; }
.chat-message strong { display: block; color: #fff; font-size: 0.92rem; font-weight: 600; line-height: 1.15; letter-spacing: 0.012em; }
.chat-message time { margin-left: 0.35rem; color: #bfb2a4; font-size: 0.66rem; font-weight: 500; letter-spacing: 0; }
.compact-form { display: grid; flex: 0 0 auto; gap: 0.5rem; padding-top: 0.8rem; border-top: 1px solid var(--border); }
.input-action { display: flex; gap: 0.5rem; }

input[type="text"] {
  width: 100%;
  min-width: 0;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 9px;
  outline: none;
  color: var(--text);
  background: rgba(52, 44, 36, 0.48);
  font-size: 0.8rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

input::placeholder { color: #887b6e; }
input:focus { border-color: var(--ember); box-shadow: 0 0 0 2px rgba(233, 151, 39, 0.12); }
input:disabled, button:disabled { cursor: not-allowed; opacity: 0.5; }
.form-feedback { min-height: 1rem; margin: 0; color: #f0c29a; font-size: 0.7rem; line-height: 1.25; }
.character-count { margin-top: -0.35rem; color: var(--muted); font-size: 0.66rem; text-align: right; }

.input-action button,
.primary-button {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 9px;
  color: #28190c;
  background: var(--gradient-ember);
  font-weight: 800;
  cursor: pointer;
  transition: filter 0.2s, transform 0.2s;
}

.input-action button { flex: 0 0 40px; width: 40px; }
.input-action button:hover, .primary-button:hover { filter: brightness(1.1); transform: translateY(-1px); }
.request-form { display: grid; flex: 0 0 auto; gap: 0.55rem; margin-top: 1rem; }
.youtube-input { position: relative; display: block; }
.youtube-input > svg { position: absolute; top: 50%; left: 0.7rem; z-index: 1; width: 1.05rem; color: var(--burnt); transform: translateY(-50%); }
.youtube-input input { padding-left: 2.2rem; }
.primary-button { gap: 0.5rem; padding: 0.65rem 1rem; }
.primary-button svg { width: 1rem; }
.request-lists {
  min-height: 0;
  max-height: none;
  margin-top: 1rem;
  padding-right: 0.35rem;
  flex: 1 1 auto;
  overflow-y: scroll;
  overscroll-behavior: contain;
}

.chat-list,
.request-lists {
  scrollbar-gutter: stable;
  scrollbar-color: #eeeeec #282522;
  scrollbar-width: auto;
}

.chat-list::-webkit-scrollbar,
.request-lists::-webkit-scrollbar { width: 10px; }
.chat-list::-webkit-scrollbar-track,
.request-lists::-webkit-scrollbar-track { border-radius: 2px; background: #282522; }
.chat-list::-webkit-scrollbar-thumb,
.request-lists::-webkit-scrollbar-thumb { border: 2px solid #282522; border-radius: 6px; background: #eeeeec; }
.chat-list::-webkit-scrollbar-thumb:hover,
.request-lists::-webkit-scrollbar-thumb:hover { background: #fff; }
.queue { margin-top: 0; }
.played-list { margin-top: 1rem; }
.queue h3, .played-list h3 { margin: 0 0 0.55rem; color: #e3d9ce; font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; }
.queue-item { display: flex; align-items: center; justify-content: space-between; gap: 0.7rem; margin-bottom: 0.45rem; padding: 0.65rem; border: 1px solid var(--border); border-radius: 9px; background: rgba(52, 44, 36, 0.35); }
.queue-item span { min-width: 0; }
.queue-item strong, .queue-item small, .queue-item .request-title-link { display: block; }
.queue-item strong { overflow: hidden; color: #fff; font-size: 0.78rem; font-weight: 600; line-height: 1.18; letter-spacing: 0.01em; text-overflow: ellipsis; white-space: nowrap; }
.queue-item .request-title-link { overflow: hidden; color: #fff; font-size: 0.78rem; font-weight: 600; line-height: 1.18; letter-spacing: 0.01em; text-decoration: underline; text-decoration-color: rgba(255, 195, 90, 0.45); text-overflow: ellipsis; white-space: nowrap; }
.queue-item small { margin-top: 0.2rem; color: #c6baad; font-size: 0.66rem; line-height: 1.2; }
.queue-item .request-source { margin-top: 0.2rem; color: var(--ember-light); font-size: 0.68rem; line-height: 1.2; }
.queue-item em { padding: 0.22rem 0.45rem; border: 1px solid rgba(255, 157, 24, 0.18); border-radius: 999px; color: var(--ember-light); background: rgba(255, 157, 24, 0.13); font-size: 0.58rem; font-weight: 700; font-style: normal; letter-spacing: 0.04em; text-transform: uppercase; }
.played-list { padding-top: 0.85rem; border-top: 1px solid var(--border); }
.played-list p { display: flex; justify-content: space-between; gap: 0.5rem; margin: 0.4rem 0; color: #c9beb2; font-size: 0.7rem; line-height: 1.25; }
.played-list .played-title-link { overflow: hidden; color: inherit; text-decoration: underline; text-decoration-color: rgba(255, 195, 90, 0.4); text-overflow: ellipsis; white-space: nowrap; }
.played-list .played-title-link:hover { color: #fff; text-decoration-color: var(--ember-light); }
.played-list .played-title-link:focus-visible { outline: 2px solid var(--ember-light); outline-offset: 3px; color: #fff; }
.photo-gallery { margin-top: 1rem; }
.featured-photo { position: relative; display: block; width: 100%; height: 245px; margin: 0; padding: 0; overflow: hidden; border: 1px solid var(--border); border-radius: 11px; background: #100e0c; cursor: zoom-in; }
.featured-photo[hidden], .photo-thumbnail-navigation[hidden] { display: none; }
.featured-photo img { display: block; width: 100%; height: 100%; object-fit: contain; }
.featured-photo::after { position: absolute; inset: 55% 0 0; content: ""; pointer-events: none; background: linear-gradient(transparent, rgba(8, 6, 5, 0.95)); }
.featured-caption { position: absolute; right: 0.8rem; bottom: 0.7rem; left: 0.8rem; z-index: 1; color: var(--text); text-align: left; }
.featured-caption strong, .featured-caption span { display: block; }
.featured-caption strong { font-size: 0.82rem; }
.featured-caption span { overflow: hidden; color: #d2c5b7; font-size: 0.72rem; text-overflow: ellipsis; white-space: nowrap; }
.photo-empty { margin: 1.2rem 0; color: var(--muted); font-size: 0.78rem; text-align: center; }

.photo-thumbnail-navigation { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 0.4rem; margin-top: 0.55rem; overflow: hidden; }
.photo-thumbnails { display: grid; grid-template-columns: repeat(var(--photo-columns, 4), minmax(0, 1fr)); gap: 0.45rem; min-width: 0; }
.photo-nav-button { width: 34px; height: 44px; padding: 0; border: 1px solid var(--border); border-radius: 8px; color: var(--text); background: var(--surface-soft); font-size: 1.35rem; cursor: pointer; }
.photo-nav-button[hidden] { display: none; }
.photo-thumbnail { height: 58px; padding: 2px; overflow: hidden; border: 2px solid transparent; border-radius: 8px; background: var(--surface-soft); cursor: pointer; opacity: 0.65; transition: border-color 0.2s, opacity 0.2s, transform 0.2s; }
.photo-thumbnail[hidden] { display: none; }
.photo-thumbnail:hover { opacity: 0.9; transform: translateY(-1px); }
.photo-thumbnail.is-selected { border-color: var(--ember); opacity: 1; box-shadow: 0 0 0 2px rgba(233, 151, 39, 0.13); }
.photo-thumbnail img { display: block; width: 100%; height: 100%; border-radius: 5px; background: #100e0c; object-fit: contain; }

.photo-submission { display: grid; gap: 0.5rem; margin-top: 1rem; padding-top: 0.85rem; border-top: 1px solid var(--border); }
.photo-submission > strong { font-size: 0.84rem; }
.photo-submission > small { color: var(--muted); font-size: 0.68rem; text-align: center; }
.photo-picker { display: flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.65rem 0.75rem; border: 1px dashed var(--border-strong); border-radius: 9px; color: var(--ember-light); background: rgba(233, 151, 39, 0.07); font-size: 0.76rem; font-weight: 700; cursor: pointer; }
.photo-picker:hover { background: rgba(233, 151, 39, 0.12); }
.photo-picker svg { width: 1.1rem; }

.photo-lightbox { position: fixed; inset: 0; z-index: 1000; display: grid; padding: 1rem; place-items: center; background: rgba(0, 0, 0, 0.84); }
.photo-lightbox[hidden] { display: none; }
.lightbox-dialog { position: relative; display: grid; width: min(800px, 100%); max-height: min(600px, calc(100vh - 2rem)); padding: 1rem; border: 1px solid var(--border-strong); border-radius: 14px; background: #16120f; box-shadow: 0 24px 80px rgba(0, 0, 0, 0.7); }
.lightbox-dialog > img { display: block; width: 100%; min-height: 0; max-height: 480px; object-fit: contain; }
.lightbox-close { position: absolute; top: 0.65rem; right: 0.65rem; z-index: 2; display: grid; width: 42px; height: 42px; padding: 0; place-items: center; border: 1px solid rgba(255, 255, 255, 0.28); border-radius: 50%; color: #fff; background: rgba(0, 0, 0, 0.72); font-size: 1.8rem; cursor: pointer; }
.lightbox-caption { padding: 0.8rem 0.2rem 0; }
.lightbox-caption strong, .lightbox-caption span { display: block; }
.lightbox-caption span { margin-top: 0.2rem; color: var(--muted); }
body.has-open-modal { overflow: hidden; }

/* Legibilidade dos cards de pedidos e mural */
.feature-card:nth-child(2) .card-header h2,
.photo-card .card-header h2 {
  font-size: 1.75rem;
}

.feature-card:nth-child(2) .card-header p,
.photo-card .card-header p {
  font-size: 0.82rem;
}

.feature-card:nth-child(2) .card-count,
.photo-card .card-count {
  font-size: 0.72rem;
}

.feature-card:nth-child(2) input[type="text"] {
  font-size: 0.88rem;
}

.feature-card:nth-child(2) .primary-button {
  font-size: 0.88rem;
}

.feature-card:nth-child(2) .queue h3,
.feature-card:nth-child(2) .played-list h3 {
  font-size: 0.68rem;
}

.feature-card:nth-child(2) .queue-item strong {
  font-size: 0.86rem;
  line-height: 1.16;
  letter-spacing: 0.012em;
}
.feature-card:nth-child(2) .queue-item .request-title-link { font-size: 0.86rem; line-height: 1.16; letter-spacing: 0.012em; }

.feature-card:nth-child(2) .queue-item small,
.feature-card:nth-child(2) .played-list p {
  font-size: 0.77rem;
}

.feature-card:nth-child(2) .played-list a {
  color: #ffffff;
  text-decoration: none;
}

.feature-card:nth-child(2) .played-list a:hover,
.feature-card:nth-child(2) .played-list a:focus-visible {
  color: #AAFF7F;
  text-decoration: none;
}

.feature-card:nth-child(2) .queue-item em {
  font-size: 0.64rem;
}

.server-status { display: flex; align-items: center; justify-content: center; gap: 0.6rem; margin: 1.6rem 0 0; color: var(--muted); font-size: 0.85rem; }
.server-status span { width: 11px; height: 11px; }
.server-status.is-offline span { background: #be4c3e; box-shadow: 0 0 0 4px rgba(190, 76, 62, 0.13); }
.interaction-status { min-height: 1rem; margin: 0.65rem 0 0; color: #AAFF7F; font-size: 0.9rem; text-align: center; }
.site-footer { margin-top: 2.6rem; padding: 1.5rem 0 0; border-top: 1px solid var(--border); color: var(--muted); text-align: center; }
.site-footer p { margin: 0; font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; }
.site-footer span { margin: 0 0.4rem; color: var(--ember); }

button:focus-visible, input:focus-visible, a:focus-visible { outline: 3px solid var(--ember-light); outline-offset: 3px; }

@keyframes pulse { 50% { opacity: 0.55; transform: scale(0.88); } }
@keyframes player-pulse { from { opacity: 0.5; transform: scale(1); } to { opacity: 0; transform: scale(1.25); } }
@keyframes marquee { to { transform: translateX(-50%); } }

@media (max-width: 1060px) {
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .photo-card { grid-column: 1 / -1; }
  .player { flex-wrap: wrap; }
  .track-info { flex-basis: calc(100% - 82px); }
  .volume-control { margin-left: 82px; }
}

@media (max-width: 720px) {
  .page-shell { width: min(100% - 1.25rem, 1280px); padding-top: 1.2rem; }
  .site-header { align-items: flex-start; }
  .header-status { align-items: flex-end; gap: 0.5rem; flex-direction: column; }
  .listeners { font-size: 0.72rem; }
  .brand-tagline { max-width: 260px; white-space: normal; line-height: 1.4; }
  .player { align-items: center; padding: 0.75rem 0.95rem; gap: 0.75rem; }
  .play-button { flex-basis: 56px; width: 56px; height: 56px; }
  .play-button svg { width: 24px; }
  .track-info { flex-basis: calc(100% - 70px); }
  .player h1 { font-size: 2rem; }
  .volume-control { width: 100%; min-width: 0; margin-left: 0; }
  .feature-grid { grid-template-columns: 1fr; }
  .photo-card { grid-column: auto; }
  .feature-card { height: auto; min-height: auto; }
  .feature-card:nth-child(1),
  .feature-card:nth-child(2) { height: auto; min-height: auto; }
  .chat-list { min-height: 0; max-height: 300px; flex: 0 1 300px; }
  .request-lists { max-height: 260px; flex: 0 1 260px; }
  .featured-photo { height: 230px; }
}

@media (max-width: 480px) {
  .brand-tagline { display: none; }
  .listeners { display: none; }
  .site-header { align-items: center; }
  .player { justify-content: center; text-align: center; }
  .track-info { flex-basis: 100%; }
  .eyebrow { justify-content: center; }
  .card-header { grid-template-columns: auto 1fr; }
  .card-count { display: none; }
  .featured-photo { height: 210px; }
  .photo-thumbnail { height: 50px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .marquee.is-overflowing { overflow-x: auto; scrollbar-width: thin; }
  .marquee .marquee-content { animation: none !important; transform: none !important; }
  .marquee.is-overflowing .marquee-content h1[aria-hidden="true"] { display: none; }
}
