:root {
  --text: #eff6ff;
  --muted: rgba(239, 246, 255, 0.78);
  --panel: rgba(11, 21, 35, 0.84);
  --panel-strong: rgba(14, 29, 47, 0.92);
  --blue: #5bb4ff;
  --cyan: #73e0ff;
  --amber: #f3b35e;
  --shadow: 0 25px 70px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow: hidden;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 18%, rgba(91, 180, 255, 0.18), transparent 18%),
    radial-gradient(circle at 82% 14%, rgba(243, 179, 94, 0.14), transparent 18%),
    linear-gradient(125deg, #08111d 0%, #0d1b2d 42%, #10243b 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 180, 255, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(91, 180, 255, 0.04) 1px, transparent 1px);
  background-size: 140px 140px, 72px 72px, 72px 72px;
  background-position: 12px 22px, 0 0, 0 0;
  animation: drift 14s linear infinite;
  pointer-events: none;
}

.overlay-shell {
  width: 100vw;
  max-width: 100vw;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
  min-height: 100vh;
}

.art-panel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem 2rem 2rem;
}

.art-circle {
  position: relative;
  width: min(42vw, 44rem);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(246, 249, 255, 0.96);
  border: 2px solid rgba(91, 180, 255, 0.18);
  box-shadow: var(--shadow);
}

.art-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.art-circle.has-image img {
  display: block;
}

.art-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #334155;
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(2rem, 3vw, 3.2rem);
  text-align: center;
  padding: 2rem;
}

.art-circle.has-image .art-placeholder {
  display: none;
}

.art-credit {
  position: absolute;
  left: 1rem;
  bottom: 2rem;
  padding: 0.85rem 1.1rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(243, 179, 94, 0.92), rgba(91, 180, 255, 0.92));
  color: #08111d;
  box-shadow: var(--shadow);
}

.art-credit span,
.art-credit strong {
  display: block;
}

.schedule-panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
  padding: clamp(0.85rem, 2vw, 1.5rem) clamp(0.85rem, 2vw, 1.6rem) clamp(0.85rem, 2vw, 1.5rem) clamp(0.65rem, 1.2vw, 1rem);
}

.schedule-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: start;
  min-width: 0;
}

.eyebrow,
.week-label {
  margin: 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  color: var(--amber);
}

h1 {
  margin: 0;
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(2rem, 4.4vw, 4.6rem);
  line-height: 0.9;
  max-width: 12ch;
  overflow-wrap: anywhere;
}

.week-label {
  margin-top: 0.25rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--muted);
}

.socials {
  display: grid;
  gap: 0.65rem;
  width: clamp(10rem, 16vw, 16rem);
  max-width: 100%;
  min-width: 0;
}

.social-pill {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: center;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(17, 37, 59, 0.88);
  border: 1px solid rgba(91, 180, 255, 0.18);
  box-shadow: var(--shadow);
}

.slide-frame {
  position: relative;
  flex: 1;
  min-height: 28rem;
}

.slide-view {
  position: absolute;
  inset: 0;
  display: grid;
  gap: 0.85rem;
  opacity: 0;
  transform: translateX(3%);
  pointer-events: none;
  transition: opacity 420ms ease, transform 420ms ease;
}

.slide-view.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.schedule-list,
.news-list {
  display: grid;
  gap: 0.85rem;
  align-content: start;
}

.schedule-row,
.news-card {
  box-shadow: var(--shadow);
  animation: slideIn 600ms ease both;
}

.schedule-row {
  display: grid;
  grid-template-columns: 3.4rem minmax(0, 1fr) auto;
  gap: 0.8rem;
  align-items: center;
  padding: 0.95rem 1rem;
  border-radius: 1.3rem;
  background:
    linear-gradient(135deg, rgba(14, 29, 47, 0.96), rgba(9, 20, 33, 0.96));
  border: 1px solid rgba(91, 180, 255, 0.14);
}

.schedule-day {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber), var(--blue));
  color: #07111d;
  font-family: "Rajdhani", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.schedule-copy strong,
.schedule-copy span,
.schedule-time span {
  display: block;
}

.schedule-copy strong {
  font-size: 1.1rem;
  overflow-wrap: anywhere;
}

.schedule-copy span,
.schedule-time,
.news-card p {
  color: var(--muted);
}

.schedule-time {
  text-align: right;
  font-weight: 700;
}

.news-card {
  padding: 1.15rem 1.2rem;
  border-radius: 1.3rem;
  background:
    linear-gradient(135deg, rgba(17, 37, 59, 0.96), rgba(10, 21, 35, 0.96));
  border: 1px solid rgba(91, 180, 255, 0.14);
}

.news-card h2 {
  margin: 0 0 0.5rem;
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 0.95;
  color: var(--amber);
}

.news-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
}

.ticker {
  overflow: hidden;
  border-radius: 999px;
  background: rgba(17, 37, 59, 0.88);
  border: 1px solid rgba(91, 180, 255, 0.14);
}

.ticker-track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  padding: 0.8rem 1rem;
  animation: tickerMove 22s linear infinite;
}

.ticker-group {
  display: inline-flex;
  gap: 2rem;
  padding-right: 2rem;
}

.ticker-item {
  font-weight: 700;
  color: var(--amber);
}

.empty-schedule,
.empty-news {
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(17, 37, 59, 0.88);
  border: 1px solid rgba(91, 180, 255, 0.14);
}

@keyframes slideIn {
  from {
    transform: translateX(3%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes drift {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-40px);
  }
}

@media (max-width: 1100px) {
  .overlay-shell {
    grid-template-columns: 1fr;
  }

  .art-panel {
    padding: 1.5rem 1.5rem 0;
  }

  .schedule-panel {
    padding: 1rem 1.5rem 1.5rem;
  }
}

@media (max-width: 1500px) {
  .schedule-header {
    grid-template-columns: 1fr;
  }

  .socials {
    width: 100%;
    grid-template-columns: repeat(auto-fit, minmax(9.5rem, 1fr));
  }
}
