:root {
  --text: #3f3f3f;
  --muted: #646464;
  --line: #d6d6d6;
  --primary: #ffd100;
  --secondary: #f4a300;
  --dark: #5a5a5a;
  --panel: rgba(255, 255, 255, 0.86);
  --shadow: 0 16px 38px rgba(0, 0, 0, 0.14);
  --radius-lg: 24px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  color: var(--text);
  line-height: 1.5;
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% -10%, #fff3a8 0%, rgba(255, 243, 168, 0) 46%),
    radial-gradient(circle at 90% 16%, #ffd883 0%, rgba(255, 216, 131, 0) 44%),
    linear-gradient(180deg, #f2f2f2 0%, #ececec 100%);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: -999px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: #fff;
  color: var(--text);
  padding: 0.65rem 0.9rem;
  border-radius: 10px;
  z-index: 1000;
}

.background-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 999px;
  opacity: 0.34;
  filter: blur(8px);
  animation: drift 12s ease-in-out infinite;
}

.blob-a {
  width: 360px;
  height: 360px;
  top: -130px;
  left: -90px;
  background: linear-gradient(135deg, #ffe875, #ffc700);
}

.blob-b {
  width: 300px;
  height: 300px;
  right: -70px;
  top: 12%;
  background: linear-gradient(135deg, #ffd571, #f7a317);
  animation-delay: 1.8s;
}

.blob-c {
  width: 260px;
  height: 260px;
  right: 16%;
  bottom: -80px;
  background: linear-gradient(135deg, #c7c7c7, #8f8f8f);
  animation-delay: 4.2s;
}

@keyframes drift {
  0%,
  100% {
    transform: translateY(0px) translateX(0px);
  }
  50% {
    transform: translateY(-16px) translateX(12px);
  }
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(10px);
  background: rgba(245, 245, 245, 0.92);
  border-bottom: 1px solid rgba(213, 213, 213, 0.9);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Chat typography normalization: final override */
.chat-room-name,
.chat-room-text,
.chat-room-field input,
.chat-room-field textarea,
.chat-compose-option,
.mic-btn,
.chat-room-send.inline {
  font-size: 0.82rem;
  line-height: 1.2;
}

.chat-room-field span,
.chat-compose-label,
.chat-room-pill {
  font-size: 0.74rem;
  line-height: 1.14;
}

.chat-room-time,
.chat-room-help,
.audio-status {
  font-size: 0.66rem;
  line-height: 1.12;
}

.chat-room-text {
  line-height: 1.34;
}

.chat-room-field input::placeholder,
.chat-room-field textarea::placeholder {
  font-size: inherit;
}

@media (max-width: 900px) {
  .chat-room-audio-play audio {
    width: min(100%, 210px);
    height: 34px;
  }

  .chat-room-name,
  .chat-room-text,
  .chat-room-field input,
  .chat-room-field textarea,
  .chat-compose-option,
  .mic-btn,
  .chat-room-send.inline {
    font-size: 0.76rem;
  }

  .chat-room-field span,
  .chat-compose-label,
  .chat-room-pill {
    font-size: 0.7rem;
  }

  .chat-room-time,
  .chat-room-help,
  .audio-status {
    font-size: 0.62rem;
  }
}

@media (max-width: 768px) {
  .chat-room-audio-play audio {
    width: min(100%, 188px);
    height: 32px;
  }

  .chat-room-name,
  .chat-room-text,
  .chat-room-field input,
  .chat-room-field textarea,
  .chat-compose-option,
  .mic-btn,
  .chat-room-send.inline {
    font-size: 0.72rem;
  }

  .chat-room-field span,
  .chat-compose-label,
  .chat-room-pill {
    font-size: 0.64rem;
  }

  .chat-room-time,
  .chat-room-help,
  .audio-status {
    font-size: 0.58rem;
  }
}

/* Chat typography normalization */
.chat-room-name,
.chat-room-text,
.chat-room-field input,
.chat-room-field textarea,
.chat-compose-option,
.mic-btn,
.chat-room-send.inline {
  font-size: 0.82rem;
  line-height: 1.2;
}

.chat-room-field span,
.chat-compose-label,
.chat-room-pill {
  font-size: 0.74rem;
  line-height: 1.14;
}

.chat-room-time,
.chat-room-help,
.audio-status {
  font-size: 0.66rem;
  line-height: 1.12;
}

.chat-room-text {
  line-height: 1.34;
}

.chat-room-field input::placeholder,
.chat-room-field textarea::placeholder {
  font-size: inherit;
}

@media (max-width: 900px) {
  .chat-room-name,
  .chat-room-text,
  .chat-room-field input,
  .chat-room-field textarea,
  .chat-compose-option,
  .mic-btn,
  .chat-room-send.inline {
    font-size: 0.76rem;
  }

  .chat-room-field span,
  .chat-compose-label,
  .chat-room-pill {
    font-size: 0.7rem;
  }

  .chat-room-time,
  .chat-room-help,
  .audio-status {
    font-size: 0.62rem;
  }
}

@media (max-width: 768px) {
  .chat-room-name,
  .chat-room-text,
  .chat-room-field input,
  .chat-room-field textarea,
  .chat-compose-option,
  .mic-btn,
  .chat-room-send.inline {
    font-size: 0.72rem;
  }

  .chat-room-field span,
  .chat-compose-label,
  .chat-room-pill {
    font-size: 0.64rem;
  }

  .chat-room-time,
  .chat-room-help,
  .audio-status {
    font-size: 0.58rem;
  }
}

/* Keep the hidden admin schedule button reachable above floating widgets. */
.schedule-page .schedule-admin-dock {
  padding-bottom: 12rem;
}

/* Schedule live cards and day timeline */
.home-live-schedule {
  width: min(100%, 560px);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  gap: 0.7rem;
  margin: 0 auto;
}

.home-live-schedule[hidden] {
  display: none !important;
}

.home-live-card {
  min-width: 0;
  border-radius: 18px;
  border: 1px solid rgba(70, 70, 70, 0.12);
  background: linear-gradient(145deg, #ffffff 0%, #fff7df 100%);
  padding: 0.85rem;
  text-align: left;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.12);
}

.home-live-card-now {
  background: linear-gradient(145deg, #202020 0%, #3d3426 54%, #ffbf14 160%);
  color: #ffffff;
}

.home-live-kicker,
.schedule-live-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  margin: 0 0 0.4rem;
  color: #f1a600;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-live-card-now .home-live-kicker {
  color: #ffd96a;
}

.home-live-card h2,
.schedule-live-card h3 {
  margin: 0;
  min-width: 0;
  color: inherit;
  font-size: 1rem;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.home-live-card p:last-child,
.schedule-live-card p:last-child {
  margin: 0.35rem 0 0;
  color: inherit;
  opacity: 0.78;
  font-size: 0.78rem;
  font-weight: 700;
}

.home-live-dot,
.schedule-live-dot {
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 50%;
  background: #17c96b;
  box-shadow: 0 0 0 0 rgba(23, 201, 107, 0.42);
  animation: live-dot-pulse 1.5s ease-out infinite;
}

@keyframes live-dot-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(23, 201, 107, 0.42);
  }
  100% {
    box-shadow: 0 0 0 10px rgba(23, 201, 107, 0);
  }
}

.schedule-day-section {
  padding: 1rem 0 0;
}

.schedule-day-board {
  display: grid;
  gap: 1rem;
  border: 1px solid rgba(213, 213, 213, 0.95);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  padding: clamp(1rem, 2.4vw, 1.45rem);
}

.schedule-day-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.schedule-sync-pill {
  border-radius: 999px;
  background: #f4f4f4;
  color: #5e5e5e;
  padding: 0.5rem 0.75rem;
  font-size: 0.76rem;
  font-weight: 800;
}

.schedule-live-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 0.8rem;
}

.schedule-live-card {
  min-width: 0;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: linear-gradient(145deg, #ffffff 0%, #fff5d2 100%);
  padding: 1rem;
}

.schedule-live-card-main {
  background: radial-gradient(circle at top right, rgba(255, 205, 42, 0.42), rgba(255, 255, 255, 0) 42%),
    linear-gradient(145deg, #222222 0%, #3d3426 62%, #ffbf14 160%);
  color: #ffffff;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.schedule-day-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.schedule-current-label {
  flex-basis: 100%;
  order: -1;
  margin: 0;
  text-align: center;
  color: #555555;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.schedule-day-nav-btn {
  min-width: 150px;
  flex: 1 1 180px;
  max-width: 220px;
}

.schedule-day-nav-btn:disabled,
.schedule-day-chip:disabled {
  cursor: not-allowed;
  opacity: 0.42;
  transform: none;
}

.schedule-day-strip {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.55rem;
}

.schedule-day-chip {
  min-width: 0;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  background: #ffffff;
  color: #4d4d4d;
  padding: 0.62rem 0.35rem;
  display: grid;
  justify-items: center;
  gap: 0.12rem;
  cursor: pointer;
  font: inherit;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.schedule-day-chip span,
.schedule-day-chip small {
  color: #777777;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.schedule-day-chip strong {
  font-size: 1rem;
  line-height: 1;
}

.schedule-day-chip.has-shows {
  border-color: rgba(244, 163, 0, 0.28);
}

.schedule-day-chip.is-active {
  background: linear-gradient(145deg, #ffd21a, #f2a000);
  color: #262626;
  box-shadow: 0 14px 26px rgba(244, 163, 0, 0.28);
}

.schedule-day-chip.is-active span,
.schedule-day-chip.is-active small {
  color: #463400;
}

.schedule-day-list {
  display: grid;
  gap: 0.7rem;
}

.schedule-day-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(118px, 0.24fr) minmax(0, 1fr);
  gap: 0.8rem;
  align-items: stretch;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  background: #ffffff;
  padding: 0.72rem;
  overflow: hidden;
}

.schedule-day-time {
  display: grid;
  align-content: center;
  gap: 0.36rem;
  border-radius: 12px;
  background: #f6f6f6;
  padding: 0.7rem;
  color: #4b4b4b;
  font-weight: 900;
}

.schedule-day-time time {
  overflow-wrap: anywhere;
}

.schedule-day-time span {
  width: fit-content;
  border-radius: 999px;
  background: #1fc96d;
  color: #ffffff;
  padding: 0.25rem 0.48rem;
  font-size: 0.68rem;
  font-weight: 900;
}

.schedule-day-body {
  min-width: 0;
  display: grid;
  align-content: center;
  gap: 0.22rem;
}

.schedule-day-body h3 {
  margin: 0;
  color: #454545;
  font-size: 1rem;
  overflow-wrap: anywhere;
}

.schedule-day-body p {
  margin: 0;
  color: #777777;
  font-size: 0.8rem;
  font-weight: 700;
}

.schedule-day-item.is-current {
  border-color: rgba(31, 201, 109, 0.65);
  background: linear-gradient(145deg, rgba(255, 255, 255, 1) 0%, rgba(230, 255, 241, 0.94) 100%);
  box-shadow: 0 18px 34px rgba(31, 201, 109, 0.16);
}

.schedule-day-item.is-next {
  border-color: rgba(244, 163, 0, 0.55);
  background: linear-gradient(145deg, #ffffff 0%, #fff8dd 100%);
}

.schedule-day-progress {
  height: 7px;
  width: 100%;
  border-radius: 999px;
  background: #d9f4e5;
  overflow: hidden;
}

.schedule-day-progress::before {
  content: "";
  display: block;
  width: var(--progress, 0%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #1fc96d, #ffc800);
}

.schedule-admin-dock {
  padding-bottom: 12rem;
}

@media (max-width: 900px) {
  .home-live-schedule,
  .schedule-live-panel {
    grid-template-columns: 1fr;
  }

  .schedule-day-strip {
    overflow-x: auto;
    grid-template-columns: repeat(7, minmax(74px, 1fr));
    padding-bottom: 0.2rem;
  }
}

@media (max-width: 640px) {
  .home-live-card,
  .schedule-live-card {
    border-radius: 14px;
    padding: 0.78rem;
  }

  .home-live-card h2,
  .schedule-live-card h3 {
    font-size: 0.92rem;
  }

  .schedule-day-board {
    border-radius: 18px;
  }

  .schedule-day-nav-btn {
    min-width: 0;
    flex: 1 1 30%;
    padding-inline: 0.65rem;
  }

  .schedule-day-item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .schedule-day-time {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

.schedule-admin-dock {
  padding: 1.2rem 0 7.5rem;
}

.schedule-admin-dock-inner {
  display: flex;
  justify-content: flex-start;
}

.schedule-admin-trigger {
  border: 0;
  background: rgba(63, 63, 63, 0.08);
  color: rgba(63, 63, 63, 0.56);
  border-radius: 999px;
  padding: 0.38rem 0.82rem;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 150ms ease, color 150ms ease, transform 150ms ease;
}

.schedule-admin-trigger:hover,
.schedule-admin-trigger:focus-visible {
  background: rgba(255, 209, 0, 0.2);
  color: #4a4a4a;
  transform: translateY(-1px);
}

.schedule-admin-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  background: rgba(19, 19, 19, 0.55);
  padding: 1rem;
}

.schedule-admin-modal[hidden] {
  display: none !important;
}

body.schedule-admin-open {
  overflow: hidden;
}

.schedule-admin-card {
  position: relative;
  width: min(100%, 460px);
  padding: 1.3rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 247, 247, 0.96));
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
  display: grid;
  gap: 0.9rem;
}

.schedule-admin-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.05);
  color: #535353;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.schedule-admin-kicker {
  margin: 0;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ee9700;
}

.schedule-admin-card h2,
.schedule-admin-heading {
  margin: 0;
  font-size: 1.45rem;
  color: #3b3b3b;
}

.schedule-admin-copy {
  margin: 0;
  color: #666;
  font-size: 0.96rem;
}

.schedule-admin-form {
  display: grid;
  gap: 0.8rem;
}

.schedule-admin-field {
  display: grid;
  gap: 0.34rem;
  color: #4a4a4a;
  font-size: 0.9rem;
  font-weight: 700;
}

.schedule-admin-field input {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 14px;
  padding: 0.8rem 0.95rem;
  font: inherit;
  background: rgba(255, 255, 255, 0.96);
}

.schedule-admin-field input:focus {
  outline: 2px solid rgba(255, 209, 0, 0.48);
  border-color: rgba(244, 163, 0, 0.48);
}

.schedule-admin-field input[type="file"] {
  padding: 0.55rem 0.65rem;
}

.schedule-admin-field input[type="file"]::file-selector-button {
  border: 0;
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  margin-right: 0.75rem;
  background: linear-gradient(135deg, #ffd21a, #f6a400);
  color: #323232;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.schedule-admin-submit {
  justify-self: start;
}

.schedule-admin-status {
  min-height: 1.35rem;
  margin: 0;
  color: #666;
  font-size: 0.86rem;
}

.schedule-admin-status.is-error {
  color: #b3261e;
}

.schedule-admin-status.is-success {
  color: #217a37;
}

@media (max-width: 768px) {
  .schedule-admin-dock {
    padding: 1rem 0 10rem;
  }

  .schedule-admin-dock-inner {
    justify-content: flex-start;
  }

  .schedule-admin-card {
    padding: 1.1rem;
    border-radius: 20px;
  }

  .schedule-admin-submit {
    width: 100%;
    justify-self: stretch;
  }
}

.header-actions {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.brand-lockup {
  display: inline-grid;
  gap: 0.1rem;
}

.brand-title {
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--dark);
  font-size: 0.92rem;
}

.brand-tag {
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  color: #7b7b7b;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  gap: 1.2rem;
}

.main-nav a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 700;
  font-size: 0.94rem;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: #ee9700;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
}

.menu-line {
  display: block;
  width: 26px;
  height: 2px;
  margin: 5px auto;
  background: var(--dark);
  border-radius: 999px;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.22rem;
  padding: 0.24rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
}

.lang-option {
  border: 0;
  background: transparent;
  color: var(--dark);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 700;
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 140ms ease, color 140ms ease, transform 140ms ease;
}

.lang-option:hover,
.lang-option:focus-visible {
  background: rgba(255, 209, 0, 0.24);
  color: #3f3f3f;
  transform: translateY(-1px);
}

.lang-option.is-active {
  background: linear-gradient(135deg, #ffd100, #f4a300);
  color: #3f3f3f;
  box-shadow: 0 10px 18px rgba(244, 163, 0, 0.18);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.hero {
  padding: 0.75rem 0 0.7rem;
}

.app-home {
  min-height: calc(100svh - 160px);
  display: flex;
  align-items: flex-start;
}

.hero-grid {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(230px, 1fr) minmax(360px, 470px) minmax(230px, 1fr);
  gap: 0.8rem;
  align-items: start;
}

.updates-band {
  padding-top: 0.55rem;
}

.updates-band-shell {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-areas: "label marquee instagram";
  gap: 0.85rem;
  align-items: center;
  padding: 0.7rem 0.9rem;
  background:
    radial-gradient(circle at 12% 22%, rgba(253, 218, 117, 0.22), rgba(253, 218, 117, 0) 24%),
    radial-gradient(circle at 88% 18%, rgba(238, 42, 123, 0.14), rgba(238, 42, 123, 0) 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.82));
  border: 1px solid rgba(213, 213, 213, 0.92);
  border-radius: 20px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
}

.updates-band-shell::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #feda75 0%, #fa7e1e 24%, #d62976 54%, #962fbf 78%, #4f5bd5 100%);
  opacity: 0.92;
}

.updates-band-shell > * {
  position: relative;
  z-index: 1;
}

.updates-band-label {
  grid-area: label;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
}

.updates-band-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  padding: 0.48rem 0.72rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffd100, #f4a300);
  color: #3f3f3f;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 10px 18px rgba(244, 163, 0, 0.18);
}

.updates-band-title {
  margin: 0;
  color: #5a5a5a;
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.updates-marquee {
  grid-area: marquee;
  position: relative;
  overflow: hidden;
  min-width: 0;
  padding: 0.08rem 0;
  mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
}

.updates-band-link {
  grid-area: instagram;
  position: relative;
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  justify-self: end;
  border-radius: 15px;
  color: #ffffff;
  text-decoration: none;
  background:
    radial-gradient(circle at 26% 115%, #fdf497 0 16%, rgba(253, 244, 151, 0) 17%),
    linear-gradient(135deg, #f9ce34 0%, #ee2a7b 52%, #6228d7 100%);
  box-shadow: 0 12px 22px rgba(98, 40, 215, 0.18);
  transition: transform 170ms ease, box-shadow 170ms ease, filter 170ms ease;
}

.updates-band-link::after {
  content: '\2197';
  position: absolute;
  right: -4px;
  bottom: -4px;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #ffffff;
  color: #4e4e4e;
  font-size: 0.7rem;
  font-weight: 800;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.14);
}

.updates-band-link svg {
  width: 22px;
  height: 22px;
  display: block;
}

.updates-band-link:hover,
.updates-band-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(98, 40, 215, 0.24);
  filter: saturate(1.05);
}

.updates-band-link:focus-visible {
  outline: 2px solid rgba(238, 42, 123, 0.32);
  outline-offset: 3px;
}

.updates-marquee-track {
  --ticker-duration: 38s;
  display: flex;
  align-items: center;
  gap: 0.82rem;
  width: max-content;
  animation: updates-marquee-scroll var(--ticker-duration) linear infinite;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

@media (hover: hover) and (pointer: fine) {
  .updates-marquee:hover .updates-marquee-track,
  .updates-marquee:focus-within .updates-marquee-track {
    animation-play-state: paused;
  }
}

@media (hover: none), (pointer: coarse) {
  .updates-marquee-track {
    animation-play-state: running;
  }
}

.updates-marquee-group {
  display: flex;
  align-items: center;
  gap: 0.82rem;
  flex: 0 0 auto;
}

.updates-marquee-group[aria-hidden="true"] {
  pointer-events: none;
}

.updates-item {
  --updates-accent-start: #feda75;
  --updates-accent-mid: #fa7e1e;
  --updates-accent-end: #d62976;
  --updates-accent-soft: rgba(254, 218, 117, 0.22);
  --updates-accent-fade: rgba(214, 41, 118, 0.14);
  --updates-accent-glow: rgba(250, 126, 30, 0.17);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: flex-start;
  gap: 0.72rem;
  min-width: clamp(320px, 38vw, 520px);
  max-width: 520px;
  padding: 0.58rem 0.94rem;
  border-radius: 18px;
  border: 1px solid transparent;
  background:
    radial-gradient(circle at 10% 18%, var(--updates-accent-soft), rgba(255, 255, 255, 0) 34%) padding-box,
    radial-gradient(circle at 100% 100%, var(--updates-accent-fade), rgba(255, 255, 255, 0) 40%) padding-box,
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.99)) padding-box,
    linear-gradient(135deg, var(--updates-accent-start) 0%, var(--updates-accent-mid) 55%, var(--updates-accent-end) 100%) border-box;
  text-decoration: none;
  color: #4d4d4d;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08), 0 10px 22px var(--updates-accent-glow);
  transition: transform 170ms ease, box-shadow 170ms ease, border-color 170ms ease;
}

.updates-item[data-accent="sunrise"] {
  --updates-accent-start: #feda75;
  --updates-accent-mid: #fa7e1e;
  --updates-accent-end: #d62976;
  --updates-accent-soft: rgba(254, 218, 117, 0.22);
  --updates-accent-fade: rgba(214, 41, 118, 0.14);
  --updates-accent-glow: rgba(250, 126, 30, 0.17);
}

.updates-item[data-accent="berry"] {
  --updates-accent-start: #f58529;
  --updates-accent-mid: #dd2a7b;
  --updates-accent-end: #8134af;
  --updates-accent-soft: rgba(245, 133, 41, 0.22);
  --updates-accent-fade: rgba(129, 52, 175, 0.14);
  --updates-accent-glow: rgba(221, 42, 123, 0.18);
}

.updates-item[data-accent="violet"] {
  --updates-accent-start: #ee2a7b;
  --updates-accent-mid: #962fbf;
  --updates-accent-end: #4f5bd5;
  --updates-accent-soft: rgba(238, 42, 123, 0.18);
  --updates-accent-fade: rgba(79, 91, 213, 0.14);
  --updates-accent-glow: rgba(98, 40, 215, 0.18);
}

.updates-item[data-accent="gold"] {
  --updates-accent-start: #fdf497;
  --updates-accent-mid: #fd5949;
  --updates-accent-end: #285aeb;
  --updates-accent-soft: rgba(253, 244, 151, 0.24);
  --updates-accent-fade: rgba(40, 90, 235, 0.12);
  --updates-accent-glow: rgba(253, 89, 73, 0.16);
}

.updates-item::before {
  content: '';
  width: 0.54rem;
  height: 0.54rem;
  flex: 0 0 0.54rem;
  margin-top: 0.34rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--updates-accent-start), var(--updates-accent-mid) 58%, var(--updates-accent-end));
  box-shadow: 0 0 0 5px var(--updates-accent-soft);
}

.updates-item.is-external::after {
  content: '\2197';
  align-self: center;
  margin-left: auto;
  color: var(--updates-accent-end);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1;
  flex: 0 0 auto;
  transition: transform 170ms ease, color 170ms ease;
}

.updates-item:hover,
.updates-item:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.1), 0 16px 28px var(--updates-accent-glow);
}

.updates-item.is-external:hover::after,
.updates-item.is-external:focus-visible::after {
  transform: translate(1px, -1px);
  color: var(--updates-accent-mid);
}

.updates-item:focus-visible {
  outline: 2px solid rgba(238, 42, 123, 0.3);
  outline-offset: 2px;
}

.updates-text {
  flex: 1 1 auto;
  min-width: 0;
  color: #4d4d4d;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.34;
  white-space: normal;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  text-wrap: pretty;
}

.updates-empty {
  margin: 0;
  color: #707070;
  font-size: 0.8rem;
  font-weight: 700;
}

@keyframes updates-marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 0.41rem));
  }
}

.side-panel,
.hero-stack {
  background: var(--panel);
  border: 1px solid rgba(213, 213, 213, 0.95);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 0.92rem;
}

.side-panel {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.side-panel h2 {
  margin: 0.38rem 0 0;
  font-size: 1.3rem;
  color: #5f5f5f;
}

.side-panel p {
  margin: 0.6rem 0 0;
  color: var(--muted);
}

.hero-stack {
  text-align: center;
  display: grid;
  gap: 0.34rem;
  align-content: start;
  align-self: start;
  justify-items: center;
  padding-top: 0.72rem;
}

.hero-logo {
  width: min(100%, 255px);
  height: auto;
  margin: 0 auto;
  transform-origin: center;
  mix-blend-mode: multiply;
  transition: filter 220ms ease, transform 220ms ease, opacity 220ms ease;
}
.hero-logo.is-idle {
  animation: logo-idle 4.6s ease-in-out infinite;
}
.hero-logo.is-playing {
  animation: logo-wave 1.2s ease-in-out infinite, logo-energy 1.8s ease-in-out infinite;
}
@keyframes logo-idle {
  0%,
  100% {
    transform: translateY(0) scale(1);
    filter: drop-shadow(0 3px 8px rgba(244, 163, 0, 0.1));
  }
  50% {
    transform: translateY(-2px) scale(1.01);
    filter: drop-shadow(0 8px 14px rgba(244, 163, 0, 0.18));
  }
}
@keyframes logo-wave {
  0% {
    transform: translateY(0) scale(1);
  }
  25% {
    transform: translateY(-3px) scale(1.018);
  }
  50% {
    transform: translateY(0) scale(1.032);
  }
  75% {
    transform: translateY(3px) scale(1.018);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}
@keyframes logo-energy {
  0%,
  100% {
    filter: drop-shadow(0 4px 10px rgba(244, 163, 0, 0.2));
  }
  50% {
    filter: drop-shadow(0 14px 30px rgba(244, 163, 0, 0.45));
  }
}

h1,
h2,
h3 {
  line-height: 1.15;
  margin: 0;
}

h1 {
  color: #565656;
  font-size: clamp(1.65rem, 2.7vw, 2.15rem);
}

.hero-sub {
  margin: 0 auto;
  max-width: 22ch;
  color: var(--muted);
  line-height: 1.24;
}

.now-playing {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  padding: 10px 12px;
  margin: 0.2rem 0 0.1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(8px);
}

.now-playing .np-art {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
  background: #0d0d0d;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.now-playing .np-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  min-width: 0;
  text-align: left;
}

.np-label {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f4a300;
  font-weight: 800;
}

.np-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1f1f1f;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.np-artist {
  font-size: 0.88rem;
  color: #5f5f5f;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.now-playing.np-flash {
  animation: npFlash 0.9s ease;
}

@keyframes npFlash {
  0% {
    box-shadow: 0 0 0 0 rgba(244, 163, 0, 0.4);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(244, 163, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(244, 163, 0, 0);
  }
}

.eyebrow,
.live-label {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ee9700;
  font-weight: 800;
  line-height: 1;
}

.wave-row {
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.35rem;
  width: 100%;
}

.wave-row span {
  display: inline-block;
  width: 9px;
  border-radius: 99px;
  background: linear-gradient(180deg, #ffcf00, #f09a00);
  animation: equalize 1.2s ease-in-out infinite;
  animation-play-state: paused;
  opacity: 0.38;
  transition: opacity 180ms ease;
}
.hero-stack.is-playing .wave-row span {
  animation-play-state: running;
  opacity: 1;
}

.live-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.live-pill {
  align-self: flex-start;
  padding: 0.35rem 0.7rem;
  border-radius: 12px;
  font-size: 0.9rem;
  min-width: 88px;
}

#toggle-play {
  display: none;
}

.wave-row span:nth-child(1),
.wave-row span:nth-child(7) {
  height: 16px;
}

.wave-row span:nth-child(2),
.wave-row span:nth-child(6) {
  height: 28px;
  animation-delay: 0.1s;
}

.wave-row span:nth-child(3),
.wave-row span:nth-child(5) {
  height: 40px;
  animation-delay: 0.2s;
}

.wave-row span:nth-child(4) {
  height: 52px;
  animation-delay: 0.3s;
}

@keyframes equalize {
  0%,
  100% {
    transform: scaleY(0.92);
  }
  50% {
    transform: scaleY(1.06);
  }
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.92rem;
  padding: 0.75rem 1.2rem;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #ffd100, #f4a300);
  color: #474747;
  box-shadow: 0 12px 24px rgba(244, 163, 0, 0.28);
}

.btn-dark {
  background: #646464;
  color: #ffffff;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.84);
  color: var(--dark);
  border: 1px solid var(--line);
}

.store-buttons {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.85rem;
}

.store-btn {
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: center;
  gap: 0.72rem;
  text-decoration: none;
  border-radius: 14px;
  padding: 0.62rem 0.86rem;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.24);
  transition: transform 170ms ease, box-shadow 170ms ease, filter 170ms ease;
}

.store-btn:hover,
.store-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.3);
  filter: brightness(1.05);
}

.store-apple {
  background: linear-gradient(180deg, #343434, #0f0f0f);
}

.store-play {
  background: linear-gradient(180deg, #2a2a2a, #090909);
}

.store-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
}

.store-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.store-copy {
  display: grid;
  line-height: 1.08;
}

.store-copy small {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.82;
}

.store-copy strong {
  font-size: 1rem;
  font-weight: 800;
}

.top-store {
  margin-top: 0.85rem;
}

audio {
  width: 100%;
  margin-top: 0.08rem;
}

#toggle-play {
  min-width: 190px;
  margin: 0;
}

.hint {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.28;
}

.site-footer {
  margin-top: 1.2rem;
  border-top: 1px solid rgba(198, 198, 198, 0.9);
  background: rgba(255, 255, 255, 0.6);
  padding: 0.95rem 0 1.2rem;
}

.copyright {
  margin: 0;
  text-align: center;
  color: #666666;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.panel-tabs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.45rem;
  margin-bottom: 0.7rem;
}

.panel-tab {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.75);
  border-radius: 12px;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.84rem;
  color: var(--dark);
  padding: 0.55rem 0.45rem;
  cursor: pointer;
}

.panel-tab.is-active {
  background: linear-gradient(135deg, #ffd100, #f4a300);
  border-color: rgba(244, 163, 0, 0.6);
}

.tab-panel {
  display: block;
}

.tab-panel[hidden] {
  display: none;
}

.tab-panel p {
  margin-top: 0.5rem;
}


.contact-panel {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(255, 209, 0, 0.34), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 247, 247, 0.9));
}

.contact-panel::before {
  content: "";
  position: absolute;
  inset: auto -38px -58px auto;
  width: 168px;
  height: 168px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 209, 0, 0.22), rgba(244, 163, 0, 0.08));
  transform: rotate(18deg);
}

.contact-hero,
.contact-card-stack,
.social-burst {
  position: relative;
  z-index: 1;
}

.social-title {
  margin: 0 0 0.15rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7a7a7a;
}

.contact-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8a5c00;
  background: rgba(255, 209, 0, 0.18);
}

.contact-intro {
  max-width: 28ch;
}

.contact-row-wrap {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

.contact-inline {
  display: flex;
  gap: 0.9rem;
  flex: 1 1 360px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.contact-chip {
  flex: 1 1 220px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  text-decoration: none;
  color: #3a3a3a;
  border: 1px solid rgba(219, 219, 219, 0.95);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
  transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease;
}

.contact-chip:hover,
.contact-chip:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.09);
  border-color: rgba(244, 163, 0, 0.4);
}

.contact-chip-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b36a00;
}

.contact-chip-value {
  font-size: 1rem;
  color: #313131;
  line-height: 1.3;
}

.contact-chip-meta {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.3;
}

.contact-chip-address {
  cursor: default;
}

.schedule-head {
  position: relative;
  z-index: 1;
}

.schedule-grid {
  display: grid;
  gap: 0.52rem;
  margin-top: 0.95rem;
}

.schedule-pill {
  display: grid;
  gap: 0.1rem;
  padding: 0.62rem 0.72rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(215, 215, 215, 0.9);
}

.schedule-pill span {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7a7a7a;
  font-weight: 800;
}

.schedule-pill strong {
  font-size: 0.95rem;
  color: #4f4f4f;
}

.schedule-pill small {
  color: #707070;
}

.schedule-month {
  margin-top: 1rem;
  border-radius: 16px;
  border: 1px solid rgba(214, 214, 214, 0.95);
  background: rgba(255, 255, 255, 0.88);
  padding: 0.74rem;
  overflow-x: auto;
}

.schedule-month-title {
  margin: 0;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #777777;
}

.schedule-shell {
  min-width: 480px;
}

.schedule-days,
.schedule-cells {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.38rem;
}

.schedule-days {
  margin-top: 0.58rem;
}

.schedule-day {
  text-align: center;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #868686;
}

.schedule-cells {
  margin-top: 0.4rem;
}

.schedule-cell {
  min-height: 82px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid rgba(223, 223, 223, 0.9);
  padding: 0.35rem 0.36rem;
  display: grid;
  align-content: start;
  gap: 0.2rem;
}

.schedule-cell.start-sun {
  grid-column: 7;
}

.schedule-date {
  font-size: 0.72rem;
  font-weight: 800;
  color: #666666;
}

.schedule-event {
  margin: 0;
  font-size: 0.68rem;
  line-height: 1.25;
  color: #505050;
  font-weight: 700;
}

.schedule-time {
  font-size: 0.64rem;
  color: #8a8a8a;
  font-weight: 700;
}
.quick-links {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.8rem;
}

.quick-links .btn {
  width: 100%;
}

/* Safety: keep reveal content visible even if JS observer fails or old cache */
.reveal,
.reveal.show {
  opacity: 1 !important;
  transform: none !important;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

@media (max-width: 480px) {
  .panel-tabs {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1180px) {
  .hero-grid {
    grid-template-columns: 1fr;
    max-width: 640px;
    margin: 0 auto;
    gap: 0.92rem;
  }

  .updates-band-shell {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "label instagram"
      "marquee marquee";
    gap: 0.65rem;
    padding: 0.72rem 0.8rem;
  }

  .updates-band-label {
    justify-content: flex-start;
  }

  .updates-item {
    min-width: clamp(300px, 72vw, 460px);
    max-width: 460px;
  }

  .hero-stack {
    order: 1;
  }

  .app-panel {
    order: 2;
  }

  .chat-room-panel,
  #chat-room {
    order: 3;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "eyebrow"
      "title"
      "lede"
      "meta"
      "feed"
      "form";
    align-content: start;
  }

  .chat-room-panel {
    gap: 0.58rem;
  }

  .chat-room-panel > .eyebrow,
  #chat-room > .eyebrow {
    grid-area: eyebrow;
  }

  .chat-room-panel > .chat-room-title-row,
  #chat-room > .chat-room-title-row {
    grid-area: title;
  }

  .chat-room-panel > .chat-room-lede,
  #chat-room > .chat-room-lede {
    grid-area: lede;
    font-size: 0.92rem;
    line-height: 1.38;
  }

  .chat-room-panel > .chat-room-meta,
  #chat-room > .chat-room-meta {
    grid-area: meta;
  }

  .chat-room-feed {
    grid-area: feed;
    margin-top: 0.15rem;
    min-height: clamp(252px, 36vh, 360px);
    max-height: min(38vh, 320px);
    overflow-y: auto;
  }

  .chat-room-form {
    grid-area: form;
    gap: 0.28rem;
    max-height: clamp(132px, 19vh, 176px);
    overflow-y: auto;
    padding-right: 0.1rem;
    scrollbar-gutter: stable;
  }

  .chat-room-field {
    gap: 0.14rem;
  }

  .chat-room-field span {
    font-size: 0.8rem;
  }

  .chat-room-field input,
  .chat-room-field textarea {
    padding: 0.32rem 0.52rem;
    font-size: 0.86rem;
  }

  .chat-room-field input {
    min-height: 30px;
  }

  .chat-compose-label {
    font-size: 0.66rem;
  }

  .chat-compose-option {
    font-size: 0.66rem;
    padding: 0.18rem 0.32rem;
  }

  .input-row {
    grid-template-columns: 1fr 34px;
    gap: 0.18rem;
  }

  .input-actions {
    grid-auto-rows: minmax(22px, auto);
    gap: 0.08rem;
  }

  .input-row textarea {
    min-height: 30px;
    max-height: 42px;
  }

  .mic-btn {
    width: 34px;
    height: 22px;
    padding: 0.1rem 0.12rem;
    border-radius: 7px;
    font-size: 0.58rem;
  }

  .chat-room-send.inline {
    min-height: 22px;
    padding: 0.1rem 0.12rem;
    border-radius: 7px;
    font-size: 0.56rem;
    box-shadow: 0 3px 7px rgba(255, 137, 0, 0.12);
  }

  .chat-room-help {
    font-size: 0.56rem;
    line-height: 1.08;
  }

  .audio-inline {
    gap: 0.28rem;
  }

  .audio-inline audio {
    width: 88px;
  }

  .audio-btn {
    padding: 0.22rem 0.42rem;
    border-radius: 8px;
    font-size: 0.7rem;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-block;
  }

  .main-nav {
    position: absolute;
    right: 4vw;
    top: 74px;
    min-width: 220px;
    display: none;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 0.8rem;
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .header-actions {
    gap: 0.65rem;
  }
}

@media (max-width: 640px) {
  .nav-wrap {
    min-height: 72px;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.6rem;
  }

  .updates-band {
    padding-top: 0.4rem;
  }

  .updates-band-pill {
    min-width: 64px;
    padding: 0.42rem 0.62rem;
    font-size: 0.66rem;
  }

  .updates-band-title {
    font-size: 0.84rem;
  }

  .updates-band-link {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .updates-band-link svg {
    width: 20px;
    height: 20px;
  }

  .updates-marquee-track {
    --ticker-duration: 30s;
  }

  .updates-item {
    min-width: 280px;
    max-width: 320px;
    padding: 0.48rem 0.72rem;
  }

  .updates-text {
    font-size: 0.78rem;
    -webkit-line-clamp: 3;
  }

  .header-actions {
    flex: 0 0 auto;
    margin-left: auto;
    gap: 0.42rem;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
    gap: 0.55rem;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
  }

  .brand-lockup {
    min-width: 0;
  }

  .brand-title {
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    white-space: nowrap;
  }

  .brand-tag {
    font-size: 0.6rem;
    letter-spacing: 0.06em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .store-buttons,
  .quick-links {
    grid-template-columns: 1fr;
  }

  .store-buttons .store-btn,
  .quick-links .btn {
    width: 100%;
  }

  .lang-option {
    padding: 0.34rem 0.58rem;
    font-size: 0.72rem;
  }

  .lang-switcher {
    gap: 0.14rem;
    padding: 0.16rem;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .menu-line {
    width: 24px;
  }
}

@media (max-width: 420px) {
  .nav-wrap {
    gap: 0.45rem;
  }

  .brand {
    gap: 0.45rem;
  }

  .brand-logo {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .brand-title {
    font-size: 0.76rem;
  }

  .brand-tag {
    font-size: 0.56rem;
    letter-spacing: 0.04em;
  }

  .lang-option {
    font-size: 0.68rem;
    padding: 0.32rem 0.48rem;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 360px) {
  .header-actions {
    gap: 0.34rem;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .brand-title {
    font-size: 0.72rem;
    letter-spacing: 0.04em;
  }

  .brand-tag {
    display: none;
  }

  .lang-switcher {
    padding: 0.12rem;
  }

  .lang-option {
    font-size: 0.64rem;
    padding: 0.28rem 0.42rem;
  }

  .menu-toggle {
    width: 36px;
    height: 36px;
  }

  .menu-line {
    width: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .updates-marquee-track {
    width: max-content;
    animation: updates-marquee-scroll var(--ticker-duration) linear infinite !important;
    animation-play-state: running !important;
  }
}

.social-burst {
  margin-top: 1.1rem;
  display: grid;
  gap: 0.55rem;
}

.social-chip {
  display: flex;
  align-items: center;
  gap: 0.62rem;
  text-decoration: none;
  color: #4b4b4b;
  font-weight: 800;
  font-size: 0.88rem;
  border-radius: 12px;
  padding: 0.58rem 0.72rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(205, 205, 205, 0.9);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.12);
  transition: transform 170ms ease, filter 170ms ease, box-shadow 170ms ease;
}

.social-icon {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.social-icon svg {
  width: 17px;
  height: 17px;
  display: block;
}

.social-chip:hover,
.social-chip:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow: 0 14px 22px rgba(0, 0, 0, 0.16);
}

.social-insta .social-icon {
  background: linear-gradient(135deg, #feda75, #d62976 62%, #962fbf);
}

.social-fb .social-icon {
  background: #1877f2;
}

.social-yt .social-icon {
  background: #ff0000;
}

.social-li .social-icon {
  background: #0a66c2;
}








.schedule-main {
  padding: 1.35rem 0 2.4rem;
}

.schedule-page-container {
  background: var(--panel);
  border: 1px solid rgba(213, 213, 213, 0.95);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1.05rem 1.1rem;
}

.schedule-page-container h1 {
  margin: 0.35rem 0 0;
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  color: #565656;
}

.schedule-lead {
  margin-top: 0.55rem;
  max-width: 50ch;
  color: var(--muted);
}

.schedule-overview-section {
  padding-top: 1rem;
}

.schedule-section-copy {
  display: grid;
  gap: 0.35rem;
}

.schedule-section-copy h2,
.schedule-agenda-head h3 {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  color: #545454;
}

.schedule-feed-note,
.schedule-upcoming-caption,
.schedule-empty-state {
  margin: 0;
  color: #707070;
}

.schedule-summary-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.schedule-agenda-card {
  margin-top: 1rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(213, 213, 213, 0.94);
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
  padding: 1rem;
}

.schedule-agenda-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.schedule-upcoming-list {
  display: grid;
  gap: 0.72rem;
  margin-top: 0.95rem;
}

.schedule-upcoming-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: center;
  padding: 0.8rem 0.9rem;
  border-radius: 14px;
  border: 1px solid rgba(220, 220, 220, 0.92);
  background: linear-gradient(160deg, rgba(255, 255, 255, 1) 0%, rgba(255, 247, 221, 0.82) 100%);
}

.schedule-upcoming-date {
  min-width: 88px;
  display: grid;
  gap: 0.06rem;
  justify-items: center;
  padding: 0.6rem 0.55rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(232, 232, 232, 0.95);
}

.schedule-upcoming-date strong {
  font-size: 1.1rem;
  line-height: 1;
  color: #505050;
}

.schedule-upcoming-date span,
.schedule-upcoming-meta,
.schedule-upcoming-note {
  color: #747474;
}

.schedule-upcoming-date span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.schedule-upcoming-body {
  display: grid;
  gap: 0.18rem;
}

.schedule-upcoming-body h4 {
  margin: 0;
  font-size: 0.95rem;
  color: #4d4d4d;
}

.schedule-upcoming-meta {
  font-size: 0.72rem;
  font-weight: 700;
}

.schedule-upcoming-note {
  font-size: 0.76rem;
  line-height: 1.35;
}

.schedule-empty-state {
  padding: 1rem 0.2rem 0.1rem;
}

.schedule-calendar-section {
  padding-top: 1rem;
}

.calendar-months {
  display: grid;
  gap: 1rem;
}

.calendar-month {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(213, 213, 213, 0.94);
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
  padding: 0.95rem;
}

.calendar-month-title {
  margin: 0;
  font-size: 0.96rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #707070;
}

.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.42rem;
}

.calendar-weekdays {
  margin-top: 0.7rem;
}

.calendar-weekday {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7f7f7f;
}

.calendar-grid {
  margin-top: 0.45rem;
}

.calendar-cell {
  min-height: 98px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid rgba(220, 220, 220, 0.92);
  padding: 0.42rem;
  display: grid;
  align-content: start;
  gap: 0.22rem;
}

.calendar-cell.is-empty {
  background: rgba(250, 250, 250, 0.72);
  border-style: dashed;
  border-color: rgba(226, 226, 226, 0.95);
}

.calendar-cell.has-show {
  background: linear-gradient(160deg, rgba(255, 255, 255, 1) 0%, rgba(255, 244, 204, 0.85) 100%);
  border-color: rgba(241, 191, 72, 0.45);
}

.calendar-date {
  font-size: 0.74rem;
  font-weight: 800;
  color: #626262;
}

.calendar-event {
  margin: 0;
  font-size: 0.7rem;
  line-height: 1.25;
  font-weight: 800;
  color: #505050;
}

.calendar-time {
  font-size: 0.66rem;
  color: #7b7b7b;
  font-weight: 700;
}

.calendar-more {
  margin: 0.05rem 0 0;
  font-size: 0.64rem;
  font-weight: 800;
  color: #9b6a00;
  letter-spacing: 0.02em;
}

@media (max-width: 720px) {
  .schedule-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .schedule-agenda-card {
    padding: 0.78rem;
  }

  .schedule-upcoming-item {
    grid-template-columns: 1fr;
  }

  .schedule-upcoming-date {
    min-width: 0;
    width: fit-content;
  }

  .calendar-month {
    padding: 0.72rem;
  }

  .calendar-weekdays,
  .calendar-grid {
    gap: 0.3rem;
  }

  .calendar-cell {
    min-height: 84px;
    padding: 0.34rem;
  }

  .calendar-event {
    font-size: 0.65rem;
  }

  .calendar-time {
    font-size: 0.61rem;
  }
}

.calendar-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 0.9rem;
  flex-wrap: wrap;
}

.calendar-current-label {
  margin: 0;
  flex: 1 1 220px;
  flex-basis: 100%;
  order: -1;
  margin-bottom: 0.2rem;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #666666;
}

.calendar-nav-btn {
  min-width: 150px;
  flex: 1 1 180px;
  max-width: 220px;
}

.calendar-nav-btn:disabled {
  opacity: 0.46;
  cursor: not-allowed;
  transform: none;
}

.calendar-nav-btn:disabled:hover,
.calendar-nav-btn:disabled:focus-visible {
  transform: none;
}

@media (max-width: 720px) {
  .calendar-controls {
    margin-bottom: 0.75rem;
  }

  .calendar-nav-btn {
    min-width: 0;
    flex: 1 1 31%;
  }
}

.calendar-nav-current {
  box-shadow: 0 12px 24px rgba(244, 163, 0, 0.28);
}

.floating-radio {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  width: min(290px, calc(100vw - 1.5rem));
  display: grid;
  gap: 0.4rem;
  padding: 0.78rem;
  border-radius: 16px;
  border: 1px solid rgba(212, 212, 212, 0.95);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
}

.floating-radio[hidden] {
  display: none;
}

.floating-radio.is-playing {
  border-color: rgba(241, 191, 72, 0.55);
  box-shadow: 0 18px 34px rgba(240, 154, 0, 0.25);
}

.floating-radio-title {
  margin: 0;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 800;
  color: #8a8a8a;
}

.floating-radio-status {
  margin: 0;
  font-size: 0.86rem;
  color: #535353;
  font-weight: 700;
}

.floating-radio-btn {
  width: 100%;
}

.floating-radio audio {
  display: none;
}

@media (max-width: 640px) {
  .floating-radio {
    right: 0.75rem;
    bottom: 0.75rem;
    width: calc(100vw - 1.5rem);
    padding: 0.68rem;
  }
}

.sponsor-logo-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.sponsor-logo {
  width: 136px;
  max-width: min(136px, 46vw);
  height: auto;
  margin: -0.12rem auto 0.05rem;
  display: block;
  float: none;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.15));
}

.batuni-chat {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 95;
  width: min(360px, calc(100vw - 1.5rem));
  display: grid;
  gap: 0.52rem;
}

.batuni-toggle {
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffd100, #f4a300);
  color: #454545;
  font-family: inherit;
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  justify-content: center;
  width: fit-content;
  min-width: 180px;
  padding: 0.65rem 1rem;
  box-shadow: 0 14px 26px rgba(244, 163, 0, 0.28);
  cursor: pointer;
  transition: transform 170ms ease, box-shadow 170ms ease;
}

.batuni-toggle:hover,
.batuni-toggle:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(244, 163, 0, 0.35);
}

.batuni-toggle-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #2e9b2e;
  box-shadow: 0 0 0 5px rgba(46, 155, 46, 0.2);
}

.batuni-panel {
  border: 1px solid rgba(214, 214, 214, 0.96);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.2);
  display: grid;
  gap: 0.65rem;
  padding: 0.72rem;
  max-height: min(72vh, 540px);
}

.batuni-panel[hidden] {
  display: none !important;
}

.batuni-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.7rem;
  border-bottom: 1px solid rgba(227, 227, 227, 0.95);
  padding-bottom: 0.52rem;
}

.batuni-identity {
  display: flex;
  align-items: center;
  gap: 0.58rem;
  min-width: 0;
}

.batuni-mascot {
  position: relative;
  width: 52px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 14px;
  border: 2px solid rgba(130, 90, 0, 0.35);
  background: linear-gradient(150deg, #ffe372, #f4a300);
  box-shadow: 0 8px 14px rgba(244, 163, 0, 0.35);
  animation: batuni-bob 2.6s ease-in-out infinite;
}

.batuni-ant {
  position: absolute;
  top: -9px;
  left: 24px;
  width: 2px;
  height: 10px;
  background: #7b5a00;
}

.batuni-ant::after {
  content: "";
  position: absolute;
  top: -5px;
  left: -4px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #ffd100;
  border: 2px solid rgba(130, 90, 0, 0.35);
}

.batuni-speaker {
  position: absolute;
  top: 11px;
  right: 6px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 2px solid rgba(70, 70, 70, 0.6);
  background: rgba(255, 255, 255, 0.55);
}

.batuni-eye {
  position: absolute;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #3d3d3d;
  animation: batuni-blink 4.5s linear infinite;
}

.batuni-eye-left {
  left: 13px;
}

.batuni-eye-right {
  left: 25px;
}

.batuni-mouth {
  position: absolute;
  left: 17px;
  top: 24px;
  width: 14px;
  height: 8px;
  border-bottom: 2px solid #4d4d4d;
  border-radius: 0 0 10px 10px;
}

.batuni-hand,
.batuni-leg {
  position: absolute;
  width: 10px;
  height: 3px;
  border-radius: 999px;
  background: #7b5a00;
}

.batuni-hand-left {
  left: -8px;
  top: 19px;
  transform-origin: right center;
  animation: batuni-wave-left 1.9s ease-in-out infinite;
}

.batuni-hand-right {
  right: -8px;
  top: 19px;
  transform-origin: left center;
  animation: batuni-wave-right 2.1s ease-in-out infinite;
}

.batuni-leg-left {
  left: 13px;
  bottom: -4px;
}

.batuni-leg-right {
  left: 27px;
  bottom: -4px;
}

@keyframes batuni-bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}

@keyframes batuni-blink {
  0%,
  44%,
  48%,
  100% {
    transform: scaleY(1);
  }
  46% {
    transform: scaleY(0.16);
  }
}

@keyframes batuni-wave-left {
  0%,
  100% {
    transform: rotate(24deg);
  }
  50% {
    transform: rotate(-12deg);
  }
}

@keyframes batuni-wave-right {
  0%,
  100% {
    transform: rotate(-18deg);
  }
  50% {
    transform: rotate(12deg);
  }
}

.batuni-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #5a5a5a;
}

.batuni-subtitle {
  margin: 0.15rem 0 0;
  font-size: 0.8rem;
  color: #737373;
  font-weight: 600;
}

.batuni-close {
  border: 1px solid rgba(214, 214, 214, 0.95);
  background: #f7f7f7;
  border-radius: 10px;
  font-size: 1.1rem;
  line-height: 1;
  width: 32px;
  height: 32px;
  cursor: pointer;
}

.batuni-messages {
  display: grid;
  gap: 0.48rem;
  overflow-y: auto;
  max-height: 230px;
  padding-right: 0.1rem;
}

.batuni-msg {
  display: flex;
}

.batuni-msg-user {
  justify-content: flex-end;
}

.batuni-msg-bot {
  justify-content: flex-start;
}

.batuni-bubble {
  max-width: 92%;
  border-radius: 14px;
  padding: 0.55rem 0.66rem;
  font-size: 0.84rem;
  line-height: 1.35;
}

.batuni-msg-bot .batuni-bubble {
  background: rgba(255, 209, 0, 0.18);
  color: #4d4d4d;
  border: 1px solid rgba(244, 163, 0, 0.22);
}

.batuni-msg-user .batuni-bubble {
  background: #565656;
  color: #ffffff;
}

.batuni-bubble a {
  color: #a45f00;
  font-weight: 700;
}

.batuni-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.batuni-quick-btn {
  border: 1px solid rgba(214, 214, 214, 0.95);
  background: #fafafa;
  color: #5a5a5a;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 0.4rem 0.62rem;
  cursor: pointer;
  transition: border-color 170ms ease, transform 170ms ease;
}

.batuni-quick-btn:hover,
.batuni-quick-btn:focus-visible {
  border-color: rgba(244, 163, 0, 0.5);
  transform: translateY(-1px);
}

.batuni-email-form {
  display: grid;
  gap: 0.42rem;
  border: 1px solid rgba(220, 220, 220, 0.95);
  border-radius: 14px;
  padding: 0.58rem;
  background: rgba(253, 253, 253, 0.95);
}

.batuni-email-form[hidden] {
  display: none !important;
}

.batuni-email-title {
  margin: 0;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  color: #8a8a8a;
}

.batuni-email-form label {
  display: grid;
  gap: 0.2rem;
}

.batuni-email-form span {
  font-size: 0.68rem;
  font-weight: 700;
  color: #757575;
}

.batuni-email-form input,
.batuni-email-form textarea {
  width: 100%;
  border: 1px solid rgba(210, 210, 210, 0.95);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.82rem;
  padding: 0.48rem 0.52rem;
  color: #4b4b4b;
  background: #ffffff;
}

.batuni-email-form textarea {
  resize: vertical;
}

.batuni-email-actions {
  display: flex;
  gap: 0.45rem;
  justify-content: flex-end;
}

.batuni-email-cancel,
.batuni-email-send,
.batuni-send {
  border: 0;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
}

.batuni-email-cancel {
  background: #efefef;
  color: #5e5e5e;
  padding: 0.45rem 0.64rem;
}

.batuni-email-send {
  background: linear-gradient(135deg, #ffd100, #f4a300);
  color: #474747;
  padding: 0.45rem 0.72rem;
}

.batuni-email-send:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.batuni-input-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.4rem;
}

.batuni-input-row input {
  border: 1px solid rgba(210, 210, 210, 0.95);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.82rem;
  padding: 0.5rem 0.58rem;
}

.batuni-send {
  background: #5f5f5f;
  color: #ffffff;
  padding: 0.5rem 0.72rem;
}

@media (max-width: 640px) {
  .batuni-chat {
    left: 0.75rem;
    bottom: 0.75rem;
    width: calc(100vw - 1.5rem);
  }

  .batuni-toggle {
    width: 100%;
    justify-content: center;
  }

  .batuni-panel {
    max-height: min(64vh, 470px);
    padding: 0.64rem;
  }

  .batuni-messages {
    max-height: 190px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .batuni-toggle,
  .batuni-quick-btn {
    transition: none;
  }

  .batuni-mascot,
  .batuni-eye,
  .batuni-hand-left,
  .batuni-hand-right {
    animation: none;
  }
}

/* Batuni visibility + retro radio mascot overrides */
.batuni-chat {
  left: auto;
  right: 1rem;
  bottom: 1rem;
  z-index: 140;
  width: min(390px, calc(100vw - 1.25rem));
}

.batuni-toggle {
  margin-left: auto;
  min-width: 210px;
  box-shadow: 0 16px 30px rgba(244, 163, 0, 0.35);
  animation: batuni-toggle-breathe 2.8s ease-in-out infinite;
}

.batuni-toggle-dot {
  animation: batuni-dot-pulse 1.8s ease-in-out infinite;
}

@keyframes batuni-toggle-breathe {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}

@keyframes batuni-dot-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 5px rgba(46, 155, 46, 0.2);
  }
  50% {
    transform: scale(1.14);
    box-shadow: 0 0 0 8px rgba(46, 155, 46, 0.14);
  }
}

.batuni-panel {
  max-height: min(76vh, 560px);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.batuni-messages {
  max-height: 210px;
}

.batuni-mascot {
  width: 58px;
  height: 50px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  animation: batuni-radio-bob 2.4s ease-in-out infinite;
}

.batuni-radio-emoji {
  position: absolute;
  left: 7px;
  top: 5px;
  font-size: 37px;
  line-height: 1;
  transform-origin: center;
  filter: drop-shadow(0 7px 12px rgba(0, 0, 0, 0.2));
  animation: batuni-radio-wiggle 2.6s ease-in-out infinite;
}

.batuni-signal {
  position: absolute;
  top: 17px;
  width: 8px;
  height: 8px;
  border: 2px solid rgba(244, 163, 0, 0.85);
  border-radius: 999px;
  opacity: 0.65;
}

.batuni-signal-left {
  left: -2px;
  animation: batuni-signal-left 1.4s ease-out infinite;
}

.batuni-signal-right {
  right: -2px;
  animation: batuni-signal-right 1.4s ease-out infinite 0.2s;
}

.batuni-hand,
.batuni-leg {
  background: #7c5527;
  width: 12px;
  height: 3px;
}

.batuni-hand-left {
  left: 0;
  top: 30px;
}

.batuni-hand-right {
  right: 0;
  top: 30px;
}

.batuni-leg-left {
  left: 18px;
  bottom: 2px;
}

.batuni-leg-right {
  left: 31px;
  bottom: 2px;
}

@keyframes batuni-radio-bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@keyframes batuni-radio-wiggle {
  0%,
  100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-2deg);
  }
  75% {
    transform: rotate(2deg);
  }
}

@keyframes batuni-signal-left {
  0% {
    transform: scale(0.6);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

@keyframes batuni-signal-right {
  0% {
    transform: scale(0.6);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

@media (max-width: 640px) {
  .batuni-chat {
    left: auto;
    right: 0.75rem;
    bottom: 0.75rem;
    width: min(360px, calc(100vw - 1.2rem));
  }

  .batuni-toggle {
    width: 100%;
    min-width: 0;
  }

  .batuni-panel {
    max-height: min(70vh, 520px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .batuni-toggle,
  .batuni-toggle-dot,
  .batuni-mascot,
  .batuni-radio-emoji,
  .batuni-signal,
  .batuni-hand-left,
  .batuni-hand-right {
    animation: none !important;
  }
}

/* Schedule download callout */
.schedule-download-callout {
  padding: 2rem 0 1rem;
}

.schedule-download-card {
  background: var(--panel);
  border: 1px solid rgba(213, 213, 213, 0.95);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--shadow);
  text-align: center;
}

.schedule-download-card h2 {
  margin: 0.35rem 0 0.5rem;
}

.schedule-callout-copy {
  margin: 0 0 1.25rem;
  color: var(--muted);
  max-width: 640px;
  display: inline-block;
}

.schedule-download-card .store-buttons {
  justify-content: center;
}

.schedule-download-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.72fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: start;
  text-align: left;
}

.schedule-download-inner .store-buttons {
  max-width: 360px;
}

.schedule-social-panel {
  border: 1px solid rgba(205, 205, 205, 0.9);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  padding: 1rem;
}

.schedule-social-panel .social-title {
  margin: 0 0 0.75rem;
  color: #555555;
  font-weight: 900;
}

.schedule-social-links {
  display: grid;
  gap: 0.58rem;
}

.schedule-social-links .social-icon {
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0;
}

@media (max-width: 760px) {
  .schedule-download-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .schedule-download-inner .store-buttons {
    margin-inline: auto;
    width: min(100%, 360px);
  }

  .schedule-social-panel {
    text-align: left;
  }
}

/* Keep Batuni visible above floating radio */
.schedule-page .batuni-chat,
.floating-radio + .batuni-chat {
  right: 1rem;
  bottom: 120px;
  z-index: 1200;
}
.social-spotify .social-icon {
  background: #1db954;
}
.social-spotify .social-icon svg {
  width: 16px;
  height: 16px;
}


/* Enhanced hero play-state visuals */
.hero-logo { position: relative; }
.hero-logo::after, .hero-logo::before { content: ''; position: absolute; inset: -10%; border-radius: 28px; pointer-events: none; opacity: 0; transition: opacity 240ms ease; }
.hero-logo::after { background: radial-gradient(circle at 50% 50%, rgba(244, 163, 0, 0.35), rgba(244, 163, 0, 0) 65%); filter: blur(18px); }
.hero-logo::before { background: repeating-linear-gradient(90deg, rgba(255,255,255,0.25) 0, rgba(255,255,255,0.25) 6px, rgba(255,255,255,0) 10px, rgba(255,255,255,0) 18px); mix-blend-mode: screen; transform-origin: left center; }
.hero-logo.is-idle::after { opacity: 0.32; animation: logo-idle-glow 4.6s ease-in-out infinite; }
.hero-logo.is-playing { animation: logo-wave 1.4s ease-in-out infinite; }
.hero-logo.is-playing::after { opacity: 1; animation: logo-glow 2.8s ease-in-out infinite; }
.hero-logo.is-playing::before { opacity: 0.55; animation: waveform-sweep 1.9s ease-in-out infinite; }
@keyframes logo-idle-glow { 0%,100% { filter: blur(16px); opacity: 0.18; } 50% { filter: blur(20px); opacity: 0.34; } }
@keyframes logo-glow { 0%,100% { filter: blur(18px); opacity: 0.8; } 50% { filter: blur(24px); opacity: 0.35; } }
@keyframes waveform-sweep { 0% { transform: scaleX(0.85); opacity: 0.45; } 50% { transform: scaleX(1.05); opacity: 0.7; } 100% { transform: scaleX(0.9); opacity: 0.45; } }


.ambient-row { display: flex; align-items: center; justify-content: center; gap: 0.55rem; flex-wrap: wrap; margin-top: 0; }
.ambient-row audio { display: none; }
.ambient-toggle { border: 1px solid rgba(0,0,0,0.08); background: #ffffff; color: #333; padding: 0.4rem 0.9rem; border-radius: 999px; font-weight: 700; cursor: pointer; transition: transform 150ms ease, box-shadow 150ms ease; }
.ambient-toggle:hover, .ambient-toggle:focus-visible { transform: translateY(-1px); box-shadow: 0 8px 16px rgba(0,0,0,0.08); }
.ambient-hint { color: var(--muted); font-size: 0.78rem; line-height: 1.25; }


.confetti-bit { position: fixed; left: var(--cx); top: var(--cy); width: 8px; height: 12px; background: #f4a300; border-radius: 2px; opacity: 0.9; animation: confetti-pop 0.9s ease-out forwards; transform: translate(-50%, -50%); pointer-events: none; }
@keyframes confetti-pop { 0% { transform: translate(-50%, -50%) translate(0,0) rotate(0deg); opacity: 1; } 100% { transform: translate(-50%, -50%) translate(var(--dx), calc(var(--dy) * -1)) rotate(160deg); opacity: 0; } }


/* Temporarily hide Now Playing ticker */
.now-playing { display: none !important; }


/* Ensure Batuni emoji renders across platforms */
.batuni-radio-emoji { font-family: 'Segoe UI Emoji','Apple Color Emoji','Noto Color Emoji','Twemoji Mozilla','EmojiOne Color',sans-serif; }


/* Batuni mascot fallback icon */
.batuni-radio-emoji { width: 36px; height: 36px; display: inline-block; position: relative; font-size: 0; line-height: 1; }
.batuni-radio-emoji::before { content: ''; position: absolute; inset: 0; background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" fill="none"><rect x="6" y="18" width="52" height="32" rx="6" fill="%23ffc043" stroke="%23e08c00" stroke-width="3"/><rect x="12" y="24" width="40" height="20" rx="3" fill="white"/><path d="M18 34h16M18 30h24M18 38h8" stroke="%23e08c00" stroke-width="3" stroke-linecap="round"/><circle cx="44" cy="34" r="5" fill="%23ff7a00"/></svg>') center/contain no-repeat; }


/* Batuni mascot locked to radio icon (no font fallback) */
.batuni-radio-emoji { width: 42px; height: 42px; display: inline-block; font-size: 0; line-height: 1; color: transparent; background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" fill="none"><rect x="6" y="18" width="52" height="32" rx="6" fill="%23FFD35A" stroke="%23E89C00" stroke-width="3"/><rect x="12" y="24" width="30" height="20" rx="3" fill="white"/><path d="M16 32h18M16 36h18" stroke="%23E89C00" stroke-width="3" stroke-linecap="round"/><circle cx="46" cy="34" r="7" fill="%23FFB200" stroke="%23E89C00" stroke-width="3"/><path d="M12 14l30-10" stroke="%23E89C00" stroke-width="3" stroke-linecap="round"/></svg>') center/contain no-repeat; }
.batuni-radio-emoji::before { content: ''; }


/* Final Batuni emoji lock */
.batuni-radio-emoji { background: none !important; width: auto; height: auto; display: inline-block; font-size: 38px; line-height: 1; font-family: 'Segoe UI Emoji','Apple Color Emoji','Noto Color Emoji','Twemoji Mozilla','EmojiOne Color',sans-serif; color: inherit; }
.batuni-radio-emoji::before { content: none !important; }


/* Batuni mascot image (SVG, no emoji fallback) */
.batuni-radio-emoji { width: 42px; height: 42px; display: inline-block; object-fit: contain; position: relative; animation: batuni-radio-wiggle 2.6s ease-in-out infinite; }
.batuni-radio-emoji::before { content: none !important; }


/* Batuni mascot hard-locked SVG */
.batuni-radio-emoji { position: absolute !important; left: 7px !important; top: 5px !important; width: 42px !important; height: 42px !important; display: inline-block !important; background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" fill="none"><rect x="6" y="18" width="52" height="32" rx="6" fill="%23FFD35A" stroke="%23E89C00" stroke-width="3"/><rect x="12" y="24" width="30" height="20" rx="3" fill="%23FFFFFF"/><path d="M16 32h18M16 36h18" stroke="%23E89C00" stroke-width="3" stroke-linecap="round"/><circle cx="46" cy="34" r="7" fill="%23FFB200" stroke="%23E89C00" stroke-width="3"/><path d="M12 14l30-10" stroke="%23E89C00" stroke-width="3" stroke-linecap="round"/></svg>') center/contain no-repeat !important; font-size: 0 !important; color: transparent !important; text-indent: -9999px; }
.batuni-radio-emoji::before { content: '' !important; }


.main-nav a { display:inline-flex; align-items:center; gap:0.4rem; }


.nav-partner-badge { display:inline-flex; align-items:center; justify-content:center; width:28px; height:28px; border-radius:8px; background: linear-gradient(135deg,#ffb200,#ff7a00); color:#fff; font-weight:800; font-size:0.72rem; letter-spacing:0.04em; box-shadow:0 4px 10px rgba(0,0,0,0.08); }


/* Final logo presentation after prior overrides */
.nav-partner-logo {
  height: 64px !important;
  width: auto !important;
  max-width: 200px;
  object-fit: contain;
  border: none !important;
  border-radius: 12px;
  background: transparent !important;
  padding: 0 !important;
  box-shadow: none !important;
  filter: none !important;
  mix-blend-mode: multiply;
}


/*----------------------------------------------
 Listener Chat Room
----------------------------------------------*/
.chat-room-section {
  padding: 1.2rem 0 2.6rem;
}

.chat-room-panel {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: linear-gradient(180deg, #fff9ed 0%, #fffefe 38%, #fffaf2 100%);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.12);
}

.hero-grid.is-panel-balanced .chat-room-panel {
  min-height: 0;
}

.hero-grid.is-panel-balanced .hero-stack {
  align-content: stretch;
}

.hero-grid.is-panel-balanced .hero-stack .wave-row {
  margin-top: auto;
}

.hero-grid.is-panel-balanced .hero-stack .hint {
  max-width: 33ch;
}

.chat-room-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.chat-room-card {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: var(--radius-lg);
  box-shadow: 0 26px 48px rgba(0, 0, 0, 0.12);
  padding: 1.2rem;
  backdrop-filter: blur(10px);
}

.chat-room-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 209, 0, 0.12), rgba(255, 111, 97, 0.12));
  pointer-events: none;
}

.chat-room-card > * {
  position: relative;
  z-index: 1;
}

.chat-room-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.chat-room-heading h2 {
  margin: 0.1rem 0;
  font-size: 1.35rem;
  color: #2f2f2f;
}

.chat-room-title-row {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.chat-room-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.7rem;
  background: #1f1f1f;
  color: #ffd100;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.chat-room-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #11c36d;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(17, 195, 109, 0.18);
}

.chat-room-lede {
  margin: 0.3rem 0 0;
  color: #4f4f4f;
  font-size: 0.98rem;
  max-width: 42ch;
}

.chat-room-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.2rem;
  font-size: 0.9rem;
  color: #4f4f4f;
}

.chat-room-meta::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #11c36d;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(17, 195, 109, 0.12);
}

[data-chat-status][data-tone="warn"] {
  color: #d04c24;
}

[data-chat-status][data-tone="info"] {
  color: #5a5a5a;
}

.chat-room-controls {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-left: auto;
}

.chat-room-ghost {
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.85);
  border-radius: 12px;
  padding: 0.45rem 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 120ms ease, transform 120ms ease;
}

.chat-room-ghost:hover,
.chat-room-ghost:focus-visible {
  background: #ffeb9f;
  transform: translateY(-1px);
}

.chat-room-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  cursor: pointer;
  user-select: none;
}

.chat-room-toggle input {
  width: 42px;
  height: 22px;
  accent-color: #f4a300;
  cursor: pointer;
}

.chat-room-feed {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: var(--radius-md);
  padding: 0.65rem;
  margin-top: 0.3rem;
  min-height: 140px;
  max-height: 280px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  background: linear-gradient(180deg, #fbfbfb 0%, #f7f7f7 100%);
}

.hero-grid.is-panel-balanced .chat-room-feed {
  flex: 1 1 auto;
  min-height: 0;
  max-height: none;
}

.chat-room-feed::-webkit-scrollbar {
  width: 10px;
}

.chat-room-feed::-webkit-scrollbar-thumb {
  background: #d8d8d8;
  border-radius: 999px;
}

.chat-room-msg {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 0.7rem 0.9rem 0.7rem 3.4rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
}

.chat-room-msg::before {
  content: attr(data-initial);
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffb400, #ff6f61);
  color: #ffffff;
  font-weight: 800;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 14px rgba(255, 140, 0, 0.28);
}

.chat-room-msg-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.6rem;
  margin-bottom: 0.25rem;
}

.chat-room-name {
  font-size: 0.95rem;
  color: #2f2f2f;
  letter-spacing: 0.01em;
  font-weight: 800;
}

.chat-room-time {
  font-size: 0.74rem;
  color: #8a8a8a;
  white-space: nowrap;
  text-transform: uppercase;
}

.chat-msg-delete {
  margin-left: 0.4rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #ffe8e8;
  color: #b3261e;
  border-radius: 8px;
  padding: 0.2rem 0.45rem;
  font-size: 0.9rem;
  cursor: pointer;
  opacity: 0.35;
  transition: opacity 120ms ease, transform 120ms ease;
}

.chat-msg-delete:hover,
.chat-msg-delete:focus-visible {
  opacity: 1;
  transform: translateY(-1px);
}

.chat-room-text {
  margin: 0;
  color: #3a3a3a;
  font-size: 1.02rem;
  line-height: 1.4;
}
.chat-room-audio-play {
  margin-top: 0.32rem;
  display: flex;
  justify-content: flex-start;
}
.chat-room-audio-play audio {
  width: min(100%, 240px);
  max-width: 100%;
  height: 36px;
  border-radius: 999px;
}

.chat-room-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #9a6e2c;
  background: #fffdf7;
  border: 1px dashed #e6d9b8;
  border-radius: 12px;
  min-height: 140px;
  padding: 0.8rem;
  font-weight: 700;
}

.chat-room-form {
  margin-top: 0.42rem;
  display: flex;
  flex-direction: column;
  gap: 0.34rem;
}

.chat-room-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 0.75rem;
}

.chat-room-field {
  display: flex;
  flex-direction: column;
  gap: 0.24rem;
  font-weight: 700;
  color: #414141;
}

.chat-compose-switcher {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.chat-compose-label {
  font-size: 0.76rem;
  color: #636363;
}

.chat-compose-options {
  display: inline-flex;
  gap: 0.22rem;
  padding: 0.18rem;
  border-radius: 999px;
  background: rgba(244, 163, 0, 0.12);
}

.chat-compose-option {
  border: 0;
  background: transparent;
  color: #4a4a4a;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 0.28rem 0.56rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 120ms ease, color 120ms ease, transform 120ms ease;
}

.chat-compose-option:hover,
.chat-compose-option:focus-visible {
  background: rgba(255, 255, 255, 0.7);
  transform: translateY(-1px);
}

.chat-compose-option.is-active {
  background: #ffffff;
  color: #2f2f2f;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.chat-room-field input,
.chat-room-field textarea {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 0.52rem 0.68rem;
  font-size: 0.94rem;
  font-family: inherit;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.chat-room-field input {
  min-height: 34px;
}

.chat-room-field input:focus,
.chat-room-field textarea:focus {
  outline: 2px solid #ffc400;
  border-color: #ffc400;
}

.chat-room-help {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.38rem;
  font-size: 0.68rem;
  line-height: 1.18;
  color: #6b6b6b;
}

.chat-room-honeypot {
  display: none !important;
}

.chat-room-send {
  border: 0;
  background: linear-gradient(135deg, #ffb400, #ff6f61);
  color: #1f1f1f;
  font-weight: 800;
  padding: 0.75rem 1.45rem;
  border-radius: 14px;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(255, 137, 0, 0.32);
  transition: transform 120ms ease, box-shadow 120ms ease;
}

.chat-room-send:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  box-shadow: none;
}

.chat-room-send:hover:not(:disabled),
.chat-room-send:focus-visible:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(255, 137, 0, 0.38);
}

.chat-room-send.inline {
  width: 100%;
  min-height: 34px;
  padding: 0.3rem 0.46rem;
  font-size: 0.78rem;
}

.chat-admin-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
  align-items: center;
}

.chat-admin-row input {
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  padding: 0.5rem 0.7rem;
  font-size: 0.95rem;
}

.chat-admin-btn {
  border: 0;
  background: #ffd24d;
  color: #2f2f2f;
  font-weight: 800;
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  cursor: pointer;
}

.chat-admin-status {
  grid-column: 1 / -1;
  font-size: 0.85rem;
  color: #6b6b6b;
}

@media (max-width: 768px) {
  .chat-admin-row {
    grid-template-columns: 1fr;
  }
}

.chat-admin-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: grid;
  place-items: center;
  z-index: 1200;
}
.chat-admin-modal[hidden] {
  display: none !important;
}

.chat-admin-box {
  background: #fff;
  padding: 1rem;
  border-radius: 14px;
  width: min(360px, 90vw);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
  display: grid;
  gap: 0.6rem;
}

.chat-admin-title {
  margin: 0;
  font-weight: 800;
  color: #303030;
}

.chat-admin-box input {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  padding: 0.55rem 0.75rem;
  font-size: 0.98rem;
}
.chat-admin-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
}

.chat-admin-cancel,
.chat-admin-confirm {
  border: 0;
  padding: 0.55rem 0.9rem;
  border-radius: 10px;
  font-weight: 800;
  cursor: pointer;
}

.chat-admin-cancel {
  background: #f2f2f2;
  color: #444;
}

.chat-admin-confirm {
  background: #e23b3b;
  color: #fff;
}
.input-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.3rem;
  align-items: stretch;
}
.input-row textarea {
  flex: 1;
  min-height: 52px;
  max-height: 72px;
}
.input-actions {
  display: grid;
  grid-auto-rows: minmax(32px, auto);
  gap: 0.16rem;
  align-content: start;
}
.mic-btn {
  border: 0;
  background: #ffd24d;
  color: #2f2f2f;
  font-weight: 800;
  padding: 0.24rem 0.32rem;
  border-radius: 10px;
  cursor: pointer;
  width: 36px;
  height: 32px;
  font-size: 0.72rem;
}
.translate-inline select {
  padding: 0.45rem 0.6rem;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.12);
}
.audio-inline {
  align-items: center;
}
.audio-inline audio { width: 160px; }
.audio-btn {
  border: 0;
  background: #ffd24d;
  color: #2f2f2f;
  font-weight: 800;
  padding: 0.45rem 0.8rem;
  border-radius: 10px;
  cursor: pointer;
}
.audio-btn.ghost {
  background: #f3f3f3;
  color: #444;
}
.audio-status {
  font-size: 0.9rem;
  color: #666;
}
.audio-preview {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.audio-preview[hidden],
.audio-inline[hidden],
[data-audio-preview][hidden] { display: none !important; }
.audio-preview audio {
  width: 180px;
}
@media (max-width: 900px) {
  .chat-room-header {
    flex-direction: column;
  }

  .chat-room-row {
    grid-template-columns: 1fr;
  }

  .chat-room-feed {
    max-height: none;
    min-height: 180px;
  }

  .chat-room-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .chat-room-form {
    gap: 0.3rem;
  }

  .chat-room-field {
    gap: 0.14rem;
  }

  .chat-room-field span {
    font-size: 0.82rem;
  }

  .chat-room-field input,
  .chat-room-field textarea {
    padding: 0.34rem 0.52rem;
    font-size: 0.86rem;
  }

  .chat-room-field input {
    min-height: 30px;
  }

  .chat-compose-label {
    font-size: 0.68rem;
  }

  .chat-compose-option {
    font-size: 0.66rem;
    padding: 0.18rem 0.32rem;
  }

  .input-row {
    grid-template-columns: 1fr 34px;
    gap: 0.18rem;
  }

  .input-actions {
    grid-auto-rows: minmax(22px, auto);
    gap: 0.08rem;
  }

  .input-row textarea {
    min-height: 30px;
    max-height: 42px;
  }

  .mic-btn {
    width: 34px;
    height: 22px;
    font-size: 0.58rem;
    padding: 0.1rem 0.12rem;
    border-radius: 7px;
  }

  .chat-room-send {
    width: 100%;
    text-align: center;
  }

  .chat-room-send.inline {
    min-height: 22px;
    padding: 0.1rem 0.12rem;
    font-size: 0.56rem;
    border-radius: 7px;
    box-shadow: 0 3px 7px rgba(255, 137, 0, 0.12);
  }

  .chat-room-help {
    font-size: 0.56rem;
    line-height: 1.08;
  }
}

.contact-card-stack-wide {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.9rem;
}

/* Floating chat button & backdrop */
.chat-fab {
  position: fixed;
  right: 1rem;
  bottom: 1.5rem;
  z-index: 900;
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.1rem;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffb400, #ff6f61);
  color: #1f1f1f;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(255, 137, 0, 0.32);
  cursor: pointer;
}

.chat-fab-rj { right: 1rem; }
.chat-fab-batuni { left: 1rem; right: auto; background: linear-gradient(135deg, #ffd100, #f4a300); }

.chat-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease;
  z-index: 850;
}

.chat-close-mobile {
  display: none;
  position: absolute;
  top: 0.4rem;
  right: 0.4rem;
  border: none;
  background: rgba(0,0,0,0.06);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .hero { padding: 0.45rem 0 1rem; }
  .hero-grid { grid-template-columns: 1fr; max-width: 100%; gap: 0.85rem; margin: 0 auto; }
  .hero-stack, .side-panel { padding: 0.95rem; border-radius: 18px; }
  .hero-stack { order: 1; gap: 0.28rem; padding-top: 0.72rem; }
  .app-panel { order: 2; }
  .contact-panel { order: 3; }
  .hero-logo { max-width: 74vw; }
  #toggle-play { display: none; }
  audio { width: 100%; }
  .hint, .ambient-hint { text-align: center; }
  .ambient-row { justify-content: center; }
  .background-glow .blob-c { display: none; }
  .background-glow .blob-b { opacity: 0.2; }
  .main-nav { left: 1.1rem; right: 1.1rem; }
  .nav-partner-logo { max-height: 44px; }
  .contact-row-wrap { flex-direction: column; }
  .contact-inline { justify-content: flex-start; }
  .contact-chip { min-width: 100%; }
  .live-top-row { display: none; }
  .live-label { text-align: center; }

/* Chat room: mobile-first ease of posting */
  #chat-room {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100dvh;
    max-height: 100dvh;
    display: none;
    transform: translateY(100%);
    transition: transform 180ms ease;
    border-radius: 0;
    box-shadow: none;
    z-index: 980;
    padding:
      calc(env(safe-area-inset-top, 0px) + 0.9rem)
      0.85rem
      calc(env(safe-area-inset-bottom, 0px) + 0.7rem);
    grid-template-areas:
      "eyebrow"
      "title"
      "lede"
      "meta"
      "feed"
      "form";
    grid-template-rows: auto auto auto auto minmax(0, 1fr) auto;
    align-content: stretch;
    gap: 0.4rem;
    overflow: hidden;
  }
  body.chat-open #chat-room {
    display: grid;
    transform: translateY(0);
  }
  body.chat-open {
    overflow: hidden;
  }
  body.chat-open .chat-backdrop {
    opacity: 1;
    pointer-events: auto;
  }
  body.chat-open .chat-fab,
  body.chat-open .batuni-chat:not(.is-open) {
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateY(12px);
  }
  .chat-fab { display: inline-flex; }
  .chat-close-mobile { display: inline-flex; align-items: center; justify-content: center; }
  .chat-close-mobile { top: calc(env(safe-area-inset-top, 0px) + 0.6rem); right: 0.85rem; z-index: 2; }
  #chat-room .eyebrow { grid-area: eyebrow; margin-top: 2.8rem; }
  .chat-room-title-row { gap: 0.35rem; }
  #chat-room .chat-room-title-row { grid-area: title; }
  .chat-room-lede { font-size: 0.95rem; margin-top: 0.1rem; max-width: 100%; }
  #chat-room .chat-room-lede { grid-area: lede; margin-bottom: 0.1rem; }
  #chat-room .chat-room-meta { grid-area: meta; margin-top: 0; }
  #chat-room .chat-room-feed {
    grid-area: feed;
    margin-top: 0;
    max-height: none;
    min-height: clamp(270px, 46vh, 460px);
    height: auto;
    overflow-y: auto;
  }
  .chat-room-form {
    grid-area: form;
    position: relative;
    margin-top: 0;
    max-height: min(18vh, 124px);
    overflow-y: auto;
    padding: 0.14rem 0.04rem 0 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.97) 0%, rgba(255,255,255,0.9) 100%);
    box-shadow: 0 -12px 20px rgba(0, 0, 0, 0.06);
    z-index: 10;
    backdrop-filter: blur(4px);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
  }
  .chat-room-form { gap: 0.22rem; }
  .chat-room-field span { font-size: 0.82rem; }
  .chat-room-field input,
  .chat-room-field textarea {
    padding: 0.22rem 0.4rem;
    font-size: 0.76rem;
  }
  .chat-room-field input {
    min-height: 26px;
  }
  .chat-room-field { gap: 0.14rem; }
  .chat-compose-switcher { align-items: flex-start; }
  .chat-compose-options { width: 100%; justify-content: space-between; }
  .chat-compose-label {
    font-size: 0.6rem;
  }
  .chat-compose-option {
    flex: 1 1 0;
    text-align: center;
    font-size: 0.6rem;
    padding: 0.14rem 0.24rem;
  }
  .input-row {
    grid-template-columns: 1fr 30px;
    gap: 0.16rem;
  }
  .input-actions {
    grid-auto-rows: minmax(18px, auto);
    gap: 0.08rem;
  }
  .input-row textarea {
    min-height: 26px;
    max-height: 34px;
  }
  .mic-btn {
    width: 30px;
    height: 18px;
    padding: 0.08rem 0.1rem;
    border-radius: 6px;
    font-size: 0.5rem;
  }
  .chat-room-send.inline {
    min-height: 18px;
    padding: 0.08rem 0.1rem;
    border-radius: 6px;
    font-size: 0.5rem;
    box-shadow: 0 2px 6px rgba(255, 137, 0, 0.12);
  }
  .audio-inline {
    gap: 0.24rem;
    margin-top: -0.12rem;
  }
  .audio-inline audio { width: 68px; }
  .audio-btn {
    padding: 0.1rem 0.22rem;
    border-radius: 6px;
    font-size: 0.52rem;
  }
  .chat-room-help {
    font-size: 0.52rem;
    line-height: 1.04;
  }
  .audio-status { font-size: 0.54rem; }
  .chat-room-panel { padding-bottom: 0; }

  /* Float spacing for overlapping widgets */
  .batuni-chat {
    bottom: calc(env(safe-area-inset-bottom, 0px) + var(--mobile-chat-bottom, 1rem));
    left: 1rem;
    z-index: 910;
  }
  .batuni-chat:not(.is-open) {
    width: auto;
    max-width: var(--mobile-chat-max-width, calc(44vw - 1rem));
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 220ms ease, transform 220ms ease;
  }
  body.mobile-chat-visible .batuni-chat:not(.is-open) {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .batuni-toggle {
    min-width: 0;
    max-width: 100%;
    padding: 0.62rem 0.9rem;
    font-size: 0.78rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .chat-fab {
    bottom: calc(env(safe-area-inset-bottom, 0px) + var(--mobile-chat-bottom, 1rem));
    right: 1rem;
    max-width: var(--mobile-chat-max-width, calc(44vw - 1rem));
    padding: 0.62rem 0.9rem;
    font-size: 0.78rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 220ms ease, transform 220ms ease;
  }
  body.mobile-chat-visible .chat-fab {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .chat-fab-rj { right: 1rem; }
  .chat-fab-batuni { left: 1rem; right: auto; }
  body.mobile-chat-compact .batuni-chat:not(.is-open),
  body.mobile-chat-compact .chat-fab {
    max-width: calc(38vw - 0.85rem);
  }
  body.mobile-chat-compact .batuni-toggle,
  body.mobile-chat-compact .chat-fab {
    padding: 0.48rem 0.72rem;
    font-size: 0.72rem;
  }
  body.mobile-chat-ultra-compact .batuni-chat:not(.is-open),
  body.mobile-chat-ultra-compact .chat-fab {
    max-width: calc(34vw - 0.7rem);
  }
  body.mobile-chat-ultra-compact .batuni-toggle,
  body.mobile-chat-ultra-compact .chat-fab {
    padding: 0.4rem 0.58rem;
    font-size: 0.68rem;
  }
}

/* Chat typography normalization: final override */
.chat-room-name,
.chat-room-text,
.chat-room-field input,
.chat-room-field textarea,
.chat-compose-option,
.mic-btn,
.chat-room-send.inline {
  font-size: 0.82rem;
  line-height: 1.2;
}

.chat-room-field span,
.chat-compose-label,
.chat-room-pill {
  font-size: 0.74rem;
  line-height: 1.14;
}

.chat-room-time,
.chat-room-help,
.audio-status {
  font-size: 0.66rem;
  line-height: 1.12;
}

.chat-room-text {
  line-height: 1.34;
}

.chat-room-field input::placeholder,
.chat-room-field textarea::placeholder {
  font-size: inherit;
}

@media (max-width: 900px) {
  .chat-room-name,
  .chat-room-text,
  .chat-room-field input,
  .chat-room-field textarea,
  .chat-compose-option,
  .mic-btn,
  .chat-room-send.inline {
    font-size: 0.76rem;
  }

  .chat-room-field span,
  .chat-compose-label,
  .chat-room-pill {
    font-size: 0.7rem;
  }

  .chat-room-time,
  .chat-room-help,
  .audio-status {
    font-size: 0.62rem;
  }
}

@media (max-width: 768px) {
  .chat-room-name,
  .chat-room-text,
  .chat-room-field input,
  .chat-room-field textarea,
  .chat-compose-option,
  .mic-btn,
  .chat-room-send.inline {
    font-size: 0.72rem;
  }

  .chat-room-field span,
  .chat-compose-label,
  .chat-room-pill {
    font-size: 0.64rem;
  }

  .chat-room-time,
  .chat-room-help,
  .audio-status {
    font-size: 0.58rem;
  }
}
