:root {
  --ink: #0b0b0d;
  --muted: #6f6f77;
  --line: #ece6d0;
  --panel: #ffffff;
  --paper: #f8f5ea;
  --yellow: #ffd21f;
  --yellow-strong: #f5b800;
  --black: #09090b;
  --charcoal: #18181b;
  --soft-black: #111114;
  --shadow: 0 22px 70px rgba(9, 9, 11, 0.18);
  --container: min(1180px, calc(100% - 36px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  padding-bottom: 74px;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 82px;
  padding: 14px max(18px, calc((100vw - 1180px) / 2));
  background: rgba(9, 9, 11, 0.88);
  border-bottom: 1px solid rgba(255, 210, 31, 0.18);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.20);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 190px;
}

.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(255, 210, 31, 0.62);
  box-shadow: 0 10px 28px rgba(255, 210, 31, 0.18);
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: rgba(255, 255, 255, 0.64);
  margin-top: 2px;
}

.brand strong {
  color: #fff;
  font-size: 15px;
  letter-spacing: 0;
}

nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
}

nav a {
  padding: 10px 15px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
  font-size: 14px;
}

nav a:hover {
  background: var(--yellow);
  color: var(--black);
}

.hero {
  position: relative;
  display: grid;
  place-items: center;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: 0;
  padding: 0;
  overflow: hidden;
  background: #050506;
}

.hero-banner {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  max-height: none;
  min-height: 0;
  object-fit: contain;
  object-position: center;
  margin: 0 auto;
  border-radius: 0;
  box-shadow: none;
}

body:not(.admin-body) main {
  display: block;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--yellow);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 13px;
}

.hero-actions,
.dashboard-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.primary-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
}

.primary-btn {
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 16px 32px rgba(255, 210, 31, 0.28);
}

.ghost-btn {
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(12px);
}

.admin-body .ghost-btn,
.editor-card .ghost-btn,
.dashboard-actions .ghost-btn {
  background: #fff;
  color: var(--black);
  border-color: rgba(9, 9, 11, 0.14);
}

.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--yellow);
  box-shadow: 0 0 0 8px rgba(255, 210, 31, 0.16);
}

audio {
  width: 100%;
}

.mini-wave {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 54px;
  margin-top: 20px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.mini-wave i {
  display: block;
  width: 12px;
  border-radius: 999px;
  background: var(--yellow);
}

.mini-wave i:nth-child(1) { height: 26px; }
.mini-wave i:nth-child(2) { height: 52px; }
.mini-wave i:nth-child(3) { height: 38px; }
.mini-wave i:nth-child(4) { height: 60px; }

.ticker {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: var(--container);
  padding: 34px 0 54px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.ticker span,
.ad-card,
.editor-card,
.login-panel {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
  box-shadow: 0 14px 36px rgba(9, 9, 11, 0.07);
}

.ticker span {
  padding: 22px 20px;
  border-top: 4px solid var(--yellow);
  font-weight: 800;
}

.site-section {
  scroll-margin-top: 104px;
}

.section,
.section-grid,
.ad-grid {
  width: var(--container);
  margin: 0 auto;
  padding: 58px 0;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.5fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: start;
}

.section-intro {
  position: sticky;
  top: 112px;
}

.section h2,
.section-grid h2,
.dashboard h1,
.login-panel h1 {
  margin: 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  text-wrap: balance;
}

.schedule-list,
.news-list {
  display: grid;
  gap: 14px;
}

.schedule-item,
.news-item {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(9, 9, 11, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.schedule-item:hover,
.news-item:hover,
.host-card:hover,
.ad-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(9, 9, 11, 0.10);
}

.schedule-item strong {
  display: inline-grid;
  place-items: center;
  align-self: start;
  min-height: 48px;
  border-radius: 14px;
  background: var(--black);
  color: var(--yellow);
  font-size: 24px;
}

.schedule-item h3,
.news-item h3 {
  margin: 0 0 6px;
}

.schedule-item p,
.news-item p,
footer,
.login-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.host-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.host-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 14px 36px rgba(9, 9, 11, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.host-card img {
  width: 100%;
  aspect-ratio: 4 / 3.25;
  object-fit: cover;
  display: block;
}

.host-card div {
  padding: 18px;
}

.host-card h3 {
  margin: 0 0 6px;
}

.host-card p {
  margin: 0;
  color: var(--muted);
}

.news-band {
  width: 100%;
  max-width: none;
  background: var(--black);
  color: #fff;
  padding-left: max(18px, calc((100vw - 1180px) / 2));
  padding-right: max(18px, calc((100vw - 1180px) / 2));
}

.news-band .news-item {
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.news-band .news-item p {
  color: rgba(255, 255, 255, 0.7);
}

.news-item time {
  color: var(--yellow);
  font-weight: 800;
}

.about-band {
  padding-top: 48px;
}

.about-copy {
  display: grid;
  gap: 18px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(9, 9, 11, 0.07);
}

.about-copy p {
  margin: 0;
  color: #3f3f46;
  font-size: 18px;
  line-height: 1.75;
}

.contact-band {
  width: 100%;
  max-width: none;
  display: grid;
  gap: 70px;
  background:
    radial-gradient(rgba(255, 204, 0, 0.12) 1px, transparent 1px),
    var(--black);
  background-size: 42px 42px;
  color: #fff;
  padding: 68px max(18px, calc((100vw - 1180px) / 2)) 82px;
  margin-top: 20px;
}

.contact-top,
.contact-panel {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.contact-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}

.contact-top h2 {
  margin: 0;
  font-size: clamp(44px, 6vw, 64px);
  line-height: 1;
}

.contact-top h2 span {
  color: var(--yellow);
}

.contact-top p {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 20px;
  line-height: 1.4;
}

.contact-socials {
  display: flex;
  gap: 10px;
}

.contact-socials a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.contact-socials svg,
.contact-info-list svg,
.contact-form button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(420px, 1fr);
  gap: 54px;
  align-items: start;
}

.contact-info-list {
  display: grid;
  gap: 34px;
}

.contact-info-list h3 {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 2px;
  font-size: 27px;
}

.contact-info-list h3::before {
  content: "";
  width: 5px;
  height: 34px;
  border-radius: 99px;
  background: var(--yellow);
}

.contact-info-list article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.contact-info-list i {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 204, 0, 0.13);
  color: var(--yellow);
  font-style: normal;
}

.contact-info-list strong,
.contact-form h3 {
  color: #fff;
  font-size: 18px;
}

.contact-info-list span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.35;
}

.contact-form {
  display: grid;
  gap: 22px;
  padding: 42px 40px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: linear-gradient(180deg, #121213, #0b0b0c);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
}

.contact-form h3 {
  margin: 0;
  font-size: 25px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.contact-form label {
  display: grid;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  border-color: rgba(255, 255, 255, 0.12);
  background: #202021;
  color: #fff;
}

.contact-form button {
  min-height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-radius: 12px;
  background: var(--yellow);
  color: #050505;
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
}

.floating-socials {
  position: fixed;
  right: 18px;
  top: 50%;
  z-index: 19;
  display: grid;
  gap: 10px;
  transform: translateY(-50%);
}

.floating-socials a {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(18, 18, 19, 0.88);
  color: #fff;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(10px);
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.floating-socials a:hover {
  transform: translateX(-2px);
  border-color: rgba(255, 204, 0, 0.52);
  background: rgba(255, 204, 0, 0.16);
  color: var(--yellow);
}

.floating-socials svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.75;
}

.contact-form-message {
  min-height: 22px;
  margin: -6px 0 0;
  color: var(--yellow);
  font-weight: 800;
}

.ad-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding-bottom: 44px;
}

.ad-card {
  padding: 32px;
  min-height: 168px;
  border-left: 0;
  border-top: 5px solid var(--yellow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.ad-card.has-image {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.ad-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
}

.ad-card:nth-child(2n) {
  border-top-color: var(--black);
}

.ad-card h3 {
  margin: 0 0 8px;
  font-size: 26px;
}

.ad-card p {
  margin: 0;
  color: var(--muted);
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: var(--container);
  margin: 0 auto;
  padding: 34px 0 24px;
  border-top: 1px solid var(--line);
}

footer small {
  color: var(--muted);
  font-weight: 700;
}

.admin-body {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(255, 210, 31, 0.22), transparent 36%),
    linear-gradient(315deg, rgba(9, 9, 11, 0.10), transparent 32%),
    var(--paper);
}

.admin-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 38px 0;
}

.login-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 880px;
  margin: 9vh auto 0;
  padding: 34px;
}

.admin-form,
.editor-grid,
.repeat-editor,
.repeat-row {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  color: #344054;
  font-weight: 800;
  font-size: 14px;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  background: #fff;
  color: var(--ink);
}

textarea {
  resize: vertical;
}

.form-message {
  min-height: 24px;
  color: #7c5a00;
  font-weight: 700;
}

.dashboard-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.editor-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.editor-card {
  padding: 22px;
}

.editor-card h2 {
  margin: 0 0 18px;
}

.wide,
.save-bar {
  grid-column: 1 / -1;
}

.repeat-row {
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  align-items: end;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfe;
}

.repeat-row.host-row {
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
}

.repeat-row.news-row {
  grid-template-columns: 1fr 170px 1.4fr auto;
}

.remove-btn {
  min-width: 44px;
  height: 44px;
  border: 1px solid #f6d365;
  border-radius: 8px;
  background: #fff7cc;
  color: var(--black);
  cursor: pointer;
  font-weight: 900;
}

.save-bar {
  position: sticky;
  bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.admin-body {
  padding-bottom: 0;
  background: #101011;
  color: #f5f5f5;
}

.admin-body main {
  min-height: 100vh;
}

.icon-sprite {
  display: none;
}

.admin-login-screen {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 210, 31, 0.18), transparent 26%),
    linear-gradient(135deg, #070707, #171719 58%, #0d0d0e);
}

.admin-login-brand {
  position: fixed;
  top: 28px;
  left: 32px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-login-brand img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255, 210, 31, 0.65);
}

.admin-login-card {
  width: min(460px, 100%);
  display: grid;
  gap: 16px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 22px;
  background: rgba(29, 29, 31, 0.88);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
}

.admin-login-card h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 50px);
  line-height: 1;
}

.admin-login-card p {
  margin: 0;
  color: #bebec4;
  line-height: 1.55;
}

.admin-eyebrow {
  margin: 0;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.admin-app {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 288px minmax(0, 1fr);
  background: #111112;
}

.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 12px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.10);
  background: #1d1d1f;
  overflow: hidden;
}

.admin-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  padding: 0 8px 12px;
  color: #fff;
}

.admin-logo-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 210, 31, 0.18);
  color: var(--yellow);
}

.admin-logo-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.admin-logo strong,
.admin-logo small {
  display: block;
}

.admin-logo strong {
  font-size: 21px;
  line-height: 1;
}

.admin-logo small {
  color: #b6b6bc;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.admin-nav {
  display: grid;
  gap: 5px;
  padding: 10px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow-y: auto;
  scrollbar-width: thin;
}

.admin-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 12px;
  color: #b8b8be;
  font-weight: 900;
  position: relative;
}

.admin-nav a svg,
.admin-sidebar-actions svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.admin-nav a span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-nav a b {
  display: grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  margin-left: auto;
  border-radius: 999px;
  background: #ff4d57;
  color: #fff;
  font-size: 12px;
  font-style: normal;
}

.admin-nav a:hover,
.admin-nav a.active {
  background: rgba(255, 210, 31, 0.14);
  color: var(--yellow);
}

.admin-sidebar-actions {
  margin-top: auto;
  flex: 0 0 auto;
  display: grid;
  gap: 6px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.admin-sidebar-actions a,
.admin-sidebar-actions button {
  min-height: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 14px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: #c4c4ca;
  cursor: pointer;
  font-weight: 900;
  text-align: left;
}

.admin-sidebar-actions button {
  color: #ff4d4d;
}

.admin-sidebar-actions a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.admin-sidebar-actions button:hover {
  background: rgba(255, 77, 77, 0.11);
}

.admin-main {
  min-width: 0;
  padding: 38px clamp(22px, 4vw, 40px) 110px;
}

.admin-hero-card {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 28px 26px;
  border-radius: 16px;
  background: linear-gradient(180deg, #1d1d1f, #171719);
  border: 1px solid rgba(255, 255, 255, 0.055);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.26);
}

.admin-hero-card h1 {
  margin: 6px 0 10px;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 0.95;
}

.admin-hero-card p:not(.admin-eyebrow) {
  margin: 0;
  color: #bebec4;
  font-size: 17px;
}

.admin-hero-card strong {
  color: var(--yellow);
}

.admin-primary,
.admin-outline {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 900;
}

.admin-primary {
  border: 0;
  background: var(--yellow);
  color: #09090b;
}

.admin-outline {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.035);
  color: #fff;
}

.stream-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 38px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.stream-status h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 8px 0 0;
  font-size: 25px;
}

.stream-status h2 > span {
  display: inline-block;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 8px rgba(255, 210, 31, 0.14);
}

.stream-status h2 > span.offline {
  background: #ff4651;
  box-shadow: 0 0 0 8px rgba(255, 70, 81, 0.14);
}

.stream-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(130px, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.stream-metrics article {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 12px;
  background: #18181a;
}

.stream-metrics small {
  display: block;
  margin-bottom: 8px;
  color: #aaaab1;
  font-weight: 900;
  text-transform: uppercase;
}

.stream-metrics strong {
  color: #fff;
  font-size: 24px;
}

.stream-status button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  font-weight: 900;
}

.stream-status button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.admin-summary {
  margin-top: 24px;
}

.admin-summary h2 {
  margin: 0 0 22px;
  font-size: 25px;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.summary-card {
  min-height: 190px;
  display: grid;
  align-content: space-between;
  padding: 28px 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: linear-gradient(180deg, #1a1a1c, #141415);
  color: #fff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
}

.summary-card small {
  color: #bdbdc4;
  font-weight: 900;
  text-transform: uppercase;
}

.summary-card strong {
  color: #fff;
  font-size: 48px;
  line-height: 1;
}

.summary-card span {
  color: #fff;
  font-weight: 900;
}

.summary-card {
  position: relative;
  overflow: hidden;
}

.summary-card i {
  position: absolute;
  top: 24px;
  right: 30px;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 210, 31, 0.18);
  color: var(--yellow);
}

.summary-card i svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.summary-card.orange i {
  background: rgba(255, 119, 0, 0.20);
  color: #ff7700;
}

.summary-card.blue i {
  background: rgba(59, 130, 246, 0.22);
  color: #3b82f6;
}

.summary-card.green i {
  background: rgba(34, 197, 94, 0.20);
  color: #22c55e;
}

.admin-editor {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 24px;
}

.admin-editor-card {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: #18181a;
}

.admin-editor-card h2 {
  margin: 0 0 22px;
  font-size: 24px;
}

.admin-fields {
  display: grid;
  gap: 16px;
}

.admin-fields.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-body label {
  color: #dedee3;
}

.admin-body input,
.admin-body textarea {
  border-color: rgba(255, 255, 255, 0.12);
  background: #101011;
  color: #fff;
}

.admin-body input:focus,
.admin-body textarea:focus {
  outline: 2px solid rgba(255, 210, 31, 0.38);
  border-color: var(--yellow);
}

.admin-body .repeat-row {
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  border-color: rgba(255, 255, 255, 0.10);
  border-radius: 12px;
  background: #111113;
}

.admin-body .repeat-row.news-row {
  grid-template-columns: 1fr 170px 1.4fr auto;
}

.admin-body .remove-btn {
  border-color: rgba(255, 77, 77, 0.28);
  background: rgba(255, 77, 77, 0.11);
  color: #ff4d4d;
}

.admin-savebar {
  position: sticky;
  bottom: 0;
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(24, 24, 26, 0.92);
  backdrop-filter: blur(18px);
}

.admin-body .form-message {
  color: var(--yellow);
}

.admin-page[hidden],
[data-admin-page][hidden],
[data-admin-savebar][hidden] {
  display: none !important;
}

.admin-editor.admin-editor-single {
  grid-template-columns: 1fr;
}

.admin-placeholder {
  min-height: 280px;
}

.admin-placeholder p {
  margin: 0;
  color: #bdbdc4;
  line-height: 1.6;
}

.admin-program-page {
  display: grid;
  gap: 32px;
}

.admin-list-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 30px 24px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 14px;
  background: #1d1d1f;
}

.admin-list-hero h2 {
  margin: 0 0 10px;
  font-size: 31px;
}

.admin-list-hero p {
  margin: 0;
  color: #bdbdc4;
}

.admin-list-hero .admin-primary svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.program-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 18px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: #1c1c1e;
}

.program-search,
.program-filter {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: #1a1a1c;
  color: #bdbdc4;
}

.program-search {
  padding: 0 12px;
}

.program-search svg,
.program-filter svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.program-search input,
.program-filter select {
  width: 100%;
  border: 0;
  background: transparent;
  color: #fff;
  outline: 0;
}

.program-filter {
  padding: 0 10px;
}

.program-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: #1b1b1d;
}

.program-table {
  width: 100%;
  min-width: 840px;
  border-collapse: collapse;
}

.program-table th,
.program-table td {
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.045);
  text-align: left;
}

.program-table th {
  color: #aaaab1;
  font-size: 12px;
  text-transform: uppercase;
}

.program-table td {
  color: #cfcfd5;
}

.program-pill {
  display: inline-flex;
  min-height: 29px;
  align-items: center;
  padding: 0 12px;
  border-radius: 6px;
  background: #333335;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.program-time {
  color: var(--yellow);
}

.program-row-actions {
  display: flex;
  gap: 18px;
}

.program-row-actions button {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.program-row-actions svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.program-edit-button {
  color: #2f80ff;
}

.program-delete-button {
  color: #ff4651;
}

.program-modal-panel {
  width: min(680px, 100%);
}

.admin-config-page {
  display: grid;
  gap: 32px;
}

.config-hero {
  min-height: 120px;
}

.config-card {
  display: grid;
  gap: 24px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: #1b1b1d;
}

.stream-config-card {
  border-color: rgba(255, 204, 0, 0.32);
  background: linear-gradient(135deg, rgba(255, 204, 0, 0.08), #1b1b1d 42%);
}

.config-card h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 22px;
}

.config-card h3 span {
  width: 8px;
  height: 24px;
  border-radius: 99px;
  background: var(--yellow);
}

.config-card h3.blue span {
  background: #2f80ff;
}

.config-card h3.green span {
  background: #32d06b;
}

.config-grid {
  display: grid;
  gap: 20px 24px;
}

.config-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.config-grid .full {
  grid-column: 1 / -1;
}

.config-card label,
.config-card strong {
  color: #bdbdc4;
  font-weight: 900;
}

.config-card input,
.config-card textarea {
  margin-top: 8px;
}

.config-card small {
  display: block;
  margin-top: 8px;
  color: #bdbdc4;
}

.home-preview {
  display: grid;
  gap: 28px;
  min-height: 278px;
  padding: 30px;
  border-radius: 14px;
  background-color: #090909;
  background-image: radial-gradient(rgba(255, 204, 0, 0.14) 1px, transparent 1px);
  background-size: 40px 40px;
}

.home-preview > strong,
.contact-preview > strong {
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0;
}

.home-preview div {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 28px;
}

.home-preview img {
  width: min(210px, 42vw);
  height: auto;
}

.home-preview p {
  margin: 0;
  color: #d7d7dc;
  font-size: 26px;
  text-align: center;
}

.autoplay-box {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 10px;
  background: #19191b;
}

.autoplay-box p {
  margin: 6px 0 0;
  color: #bdbdc4;
  font-size: 12px;
}

.contact-config-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 34px;
  align-items: start;
}

.contact-preview {
  display: grid;
  gap: 26px;
  padding: 28px 24px;
  border-radius: 16px;
  background: #070707;
}

.contact-preview > strong {
  color: #bdbdc4;
}

.contact-preview div {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
}

.contact-preview span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 204, 0, 0.13);
  color: var(--yellow);
}

.contact-preview svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.contact-preview p {
  display: grid;
  gap: 5px;
  margin: 0;
}

.contact-preview b {
  color: #fff;
}

.contact-preview em {
  color: #bdbdc4;
  font-style: normal;
}

.config-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.admin-users-page {
  display: grid;
  gap: 24px;
}

.admin-promos-page {
  display: grid;
  gap: 24px;
}

.admin-contacts-page {
  display: grid;
  gap: 24px;
}

.contact-message-grid {
  display: grid;
  gap: 18px;
}

.contact-message-card,
.contact-message-empty {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: #1b1b1d;
}

.contact-message-card {
  display: grid;
  gap: 18px;
  padding: 22px;
}

.contact-message-card.unread {
  border-color: rgba(255, 204, 0, 0.36);
  background: linear-gradient(135deg, rgba(255, 204, 0, 0.08), #1b1b1d 38%);
}

.contact-message-card header,
.contact-message-card footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.contact-message-card h3 {
  margin: 5px 0 0;
  color: #fff;
  font-size: 20px;
}

.contact-message-card small,
.contact-message-card dt {
  color: #aaaab1;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-message-card > p {
  margin: 0;
  color: #d9d9df;
  line-height: 1.6;
}

.contact-message-card header span {
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 204, 0, 0.15);
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
}

.contact-message-card dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
}

.contact-message-card dl div {
  padding: 14px;
  border-radius: 10px;
  background: #141416;
}

.contact-message-card dd {
  margin: 7px 0 0;
  color: #fff;
  overflow-wrap: anywhere;
}

.contact-message-card .host-delete-button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border: 0;
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
  font-weight: 900;
}

.contact-message-card .host-delete-button svg,
.contact-message-empty svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.contact-message-empty {
  display: grid;
  place-items: center;
  gap: 12px;
  min-height: 180px;
  color: #aaaab1;
}

.contact-message-empty svg {
  width: 36px;
  height: 36px;
}

.admin-users-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.admin-users-head h2 {
  margin: 0;
  font-size: 26px;
}

.admin-users-head p {
  margin: 8px 0 0;
  color: #bdbdc4;
}

.admin-users-head .admin-primary svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.admin-users-table th,
.admin-users-table td {
  padding: 22px 24px;
}

.promo-search {
  width: min(450px, 100%);
}

.promos-table {
  min-width: 880px;
}

.promos-table td small {
  display: block;
  max-width: 420px;
  margin-top: 5px;
  color: #999aa2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.promo-table-image,
.promo-table-placeholder {
  width: 70px;
  aspect-ratio: 16 / 10;
  border-radius: 8px;
}

.promo-table-image {
  object-fit: cover;
}

.promo-table-placeholder {
  display: grid;
  place-items: center;
  background: #303033;
  color: #8d8d94;
}

.promo-table-placeholder svg,
.empty-table svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.status-pill {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 204, 0, 0.14);
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
}

.status-pill.off {
  background: rgba(255, 255, 255, 0.08);
  color: #aaaab1;
}

.empty-table {
  height: 128px;
  text-align: center !important;
  color: #aaaab1;
}

.empty-table svg,
.empty-table span {
  display: block;
  margin: 0 auto 8px;
}

.user-modal-panel {
  width: min(680px, 100%);
}

.promo-modal-panel {
  width: min(620px, 100%);
}

.modal-subtitle {
  margin: -10px 0 0;
  color: #bdbdc4;
}

.permissions-box {
  display: grid;
  gap: 18px;
}

.permissions-box p {
  margin: 0;
  color: #bdbdc4;
  font-weight: 900;
}

.permissions-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 44px;
}

.check-row {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #bdbdc4;
}

.check-row.full {
  color: #fff;
  font-size: 16px;
}

.check-row input {
  width: 18px;
  height: 18px;
  accent-color: var(--yellow);
}

.check-row span {
  font-weight: 900;
}

.modal-open {
  overflow: hidden;
}

.hosts-manager {
  padding: 0;
  overflow: hidden;
}

.hosts-manager-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.hosts-manager-head h2 {
  margin: 0 0 6px;
  font-size: 30px;
}

.hosts-manager-head p {
  margin: 0;
  color: #bdbdc4;
}

.host-new-button svg,
.host-admin-actions svg,
.host-modal-close svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.host-admin-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding: 32px 26px;
}

.host-admin-card {
  min-height: 240px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: #1f1f21;
}

.host-admin-info {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 24px 0;
}

.host-admin-info img {
  width: 78px;
  height: 78px;
  object-fit: cover;
  border-radius: 10px;
  background: #303033;
}

.host-admin-info h3 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 19px;
}

.host-admin-info small {
  color: #a9a9b0;
  font-weight: 800;
}

.host-admin-card p {
  margin: 0;
  padding: 0 24px;
  color: #c4c4ca;
  line-height: 1.55;
}

.host-admin-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 16px 24px;
  background: #333335;
}

.host-admin-actions button {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 13px;
  border: 0;
  border-radius: 9px;
  color: #fff;
  cursor: pointer;
  font-weight: 900;
  font-size: 12px;
}

.host-edit-button {
  background: #0f0f10;
}

.host-delete-button {
  background: #ff464d;
}

.host-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: start center;
  padding: 28px;
  overflow-y: auto;
  background: rgba(0, 0, 0, 0.78);
}

.host-modal[hidden] {
  display: none;
}

.host-modal-panel {
  position: relative;
  width: min(760px, 100%);
  display: grid;
  gap: 22px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: #171718;
  color: #fff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
}

.host-modal-panel h2 {
  margin: 0;
  font-size: 26px;
}

.host-modal-panel h3 {
  margin: 8px 0 -6px;
  font-size: 19px;
}

.host-modal-panel hr {
  width: 100%;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.host-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  color: #d7d7dc;
  cursor: pointer;
}

.host-photo-field {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 24px;
  border-radius: 12px;
  background: #303033;
}

.host-photo-preview {
  width: 128px;
  height: 128px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 10px;
  background: #28282a;
  color: #a9a9b0;
}

.host-photo-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.host-photo-preview svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.host-photo-field p {
  margin: 8px 0 0;
  color: #bdbdc4;
  font-size: 12px;
}

.host-modal-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.promo-image-field {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 10px;
}

.promo-image-group strong {
  display: block;
}

.promo-image-preview {
  width: 160px;
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 2px dashed rgba(255, 255, 255, 0.20);
  border-radius: 10px;
  background: #3f3f40;
  color: #bdbdc4;
}

.promo-image-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-image-preview svg,
.upload-button svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.upload-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  cursor: pointer;
}

.upload-button svg {
  width: 18px;
  height: 18px;
}

.promo-status-card {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 16px;
  border-radius: 10px;
  background: #3a3a3b;
}

.promo-status-card strong {
  display: block;
  margin-bottom: 6px;
}

.promo-status-card p {
  margin: 0;
  color: #c4c4ca;
}

.switch-control {
  position: relative;
  flex: 0 0 auto;
  display: inline-block;
  width: 44px;
  height: 24px;
}

.switch-control input {
  position: absolute;
  opacity: 0;
}

.switch-control span {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #777;
  cursor: pointer;
}

.switch-control span::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #050505;
  transition: transform 0.2s ease;
}

.switch-control input:checked + span {
  background: var(--yellow);
}

.switch-control input:checked + span::after {
  transform: translateX(20px);
}

.host-modal-actions {
  position: sticky;
  bottom: -26px;
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  padding-top: 18px;
  background: linear-gradient(180deg, rgba(23, 23, 24, 0), #171718 28%);
}

.fixed-player {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 8px max(16px, calc((100vw - 1180px) / 2));
  border-top: 1px solid rgba(255, 210, 31, 0.34);
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(255, 210, 31, 0.14), rgba(255, 255, 255, 0.035) 42%, rgba(255, 210, 31, 0.05)),
    rgba(9, 9, 11, 0.94);
  color: #fff;
  box-shadow: 0 -18px 46px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(22px);
}

.player-button {
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--black);
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
  box-shadow:
    0 14px 26px rgba(255, 210, 31, 0.22),
    inset 0 -3px 0 rgba(0, 0, 0, 0.18);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.player-button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 18px 34px rgba(255, 210, 31, 0.28),
    inset 0 -3px 0 rgba(0, 0, 0, 0.18);
}

.fixed-player audio {
  display: none;
}

.now-playing {
  min-width: 0;
  display: grid;
  align-items: center;
  justify-items: center;
  gap: 2px;
  min-height: 52px;
  padding: 6px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
  text-align: center;
}

.now-playing small {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--yellow);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.player-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--yellow);
  box-shadow: 0 0 0 6px rgba(255, 210, 31, 0.12);
}

.now-playing strong,
.now-playing span {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.now-playing strong {
  color: #fff;
  font-size: clamp(14px, 1.7vw, 16px);
}

.now-playing span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
}

.player-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.volume-control {
  width: 150px;
  display: grid;
  gap: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.volume-control input {
  width: 100%;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  accent-color: var(--yellow);
  cursor: pointer;
}

.player-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: #fff;
  color: var(--black);
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

/* Admin visual refinement */
.admin-body {
  font-family: Inter, Arial, sans-serif;
  color: #f6f6f7;
  -webkit-font-smoothing: antialiased;
}

.admin-body button,
.admin-body a,
.admin-body input,
.admin-body textarea,
.admin-body select {
  font-family: inherit;
}

.admin-app {
  grid-template-columns: 280px minmax(0, 1fr);
}

.admin-sidebar {
  background: #1b1b1d;
}

.admin-logo {
  min-height: 54px;
}

.admin-logo strong {
  font-size: 20px;
  letter-spacing: 0;
}

.admin-logo small,
.admin-nav a,
.admin-sidebar-actions a,
.admin-sidebar-actions button {
  font-size: 14px;
}

.admin-nav {
  gap: 5px;
}

.admin-nav a,
.admin-sidebar-actions a,
.admin-sidebar-actions button {
  min-height: 40px;
  border-radius: 10px;
}

.admin-nav a:hover,
.admin-nav a.active {
  background: rgba(255, 204, 0, 0.14);
}

.admin-main {
  max-width: 1240px;
  width: 100%;
}

.admin-hero-card,
.admin-list-hero,
.config-card,
.program-table-wrap,
.admin-users-page,
.admin-promos-page,
.stream-status {
  border-color: rgba(255, 255, 255, 0.11);
}

.admin-hero-card h1 {
  font-size: clamp(40px, 4vw, 54px);
  letter-spacing: 0;
}

.admin-hero-card p:not(.admin-eyebrow),
.admin-list-hero p,
.admin-users-head p {
  font-size: 16px;
  line-height: 1.55;
}

.admin-primary,
.admin-outline,
.host-new-button,
.host-admin-actions button,
.program-row-actions button,
.upload-button {
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.admin-primary,
.admin-outline {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 10px;
  line-height: 1;
  white-space: nowrap;
}

.admin-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(255, 204, 0, 0.16);
}

.admin-outline:hover {
  border-color: rgba(255, 204, 0, 0.42);
  background: rgba(255, 204, 0, 0.08);
  color: var(--yellow);
}

.admin-primary svg,
.admin-outline svg,
.host-admin-actions svg,
.program-row-actions svg,
.admin-nav a svg,
.admin-sidebar-actions svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stream-status {
  align-items: flex-start;
  padding: 26px 0 30px;
}

.stream-status > div {
  min-width: 0;
  flex: 1;
}

.stream-status h2 {
  line-height: 1.2;
}

.stream-metrics {
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  max-width: 680px;
}

.stream-metrics article {
  min-height: 86px;
}

.stream-metrics strong {
  display: block;
  line-height: 1.1;
}

.summary-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.summary-card {
  min-height: 176px;
  padding: 26px 28px;
}

.summary-card small {
  display: block;
  max-width: calc(100% - 78px);
  font-size: 13px;
  line-height: 1.25;
  letter-spacing: 0;
}

.summary-card strong {
  display: block;
  margin-top: 14px;
  font-size: 46px;
}

.summary-card span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
}

.summary-card span::after {
  content: "->";
  font-weight: 900;
}

.summary-card i {
  top: 26px;
  right: 26px;
}

.admin-list-hero h2,
.hosts-manager-head h2,
.admin-users-head h2,
.config-card h3 {
  letter-spacing: 0;
  line-height: 1.15;
}

.program-table th,
.program-table td {
  vertical-align: middle;
}

.program-table th {
  letter-spacing: 0;
}

.program-row-actions {
  gap: 10px;
}

.program-row-actions button {
  width: 34px;
  height: 34px;
  border-radius: 10px;
}

.program-edit-button:hover {
  background: rgba(47, 128, 255, 0.12);
}

.program-delete-button:hover {
  background: rgba(255, 70, 81, 0.12);
}

.host-admin-actions {
  gap: 10px;
}

.host-admin-actions button {
  min-height: 36px;
  border-radius: 10px;
}

.host-admin-card,
.summary-card,
.program-table-wrap,
.config-card,
.admin-list-hero,
.hosts-manager,
.admin-hero-card {
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}

.admin-body input,
.admin-body textarea,
.admin-body select {
  min-height: 44px;
  border-radius: 10px;
  font-size: 14px;
}

.admin-body textarea {
  line-height: 1.5;
}

.host-modal-panel {
  max-height: calc(100vh - 32px);
}

@media (max-width: 1180px) {
  .stream-status {
    display: grid;
  }

  .stream-status button {
    justify-self: start;
  }
}

@media (max-height: 720px) and (min-width: 1081px) {
  .admin-sidebar {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .admin-logo {
    min-height: 48px;
    padding-bottom: 8px;
  }

  .admin-logo-icon {
    width: 40px;
    height: 40px;
  }

  .admin-logo strong {
    font-size: 18px;
  }

  .admin-logo small,
  .admin-nav a,
  .admin-sidebar-actions a,
  .admin-sidebar-actions button {
    font-size: 13px;
  }

  .admin-nav a,
  .admin-sidebar-actions a,
  .admin-sidebar-actions button {
    min-height: 36px;
  }
}

@media (max-width: 900px) {
  .section-grid,
  .login-panel,
  .editor-grid {
    grid-template-columns: 1fr;
  }

  .ticker,
  .host-grid,
  .ad-grid,
  .contact-grid,
  .contact-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-top {
    display: grid;
  }

  .repeat-row,
  .repeat-row.host-row,
  .repeat-row.news-row {
    grid-template-columns: 1fr;
  }

  .fixed-player {
    grid-template-columns: 52px minmax(0, 1fr);
    left: 0;
    right: 0;
    bottom: 0;
    padding: 8px 12px;
  }

  .player-button {
    grid-column: 1;
    grid-row: 1;
    width: 56px;
    height: 52px;
  }

  .now-playing {
    grid-column: 2;
    grid-row: 1;
    padding: 8px 10px;
    justify-items: start;
    text-align: left;
  }

  .player-actions {
    grid-column: 1 / -1;
  }

  .player-actions {
    justify-content: stretch;
    align-items: stretch;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .volume-control {
    width: 100%;
  }

  .player-whatsapp {
    width: auto;
    min-height: 40px;
  }

  .floating-socials {
    top: auto;
    right: 12px;
    bottom: 142px;
    display: flex;
    transform: none;
  }

  .floating-socials a {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 640px) {
  .site-header,
  .dashboard-header,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    justify-content: flex-start;
    border-radius: 16px;
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  nav a {
    white-space: nowrap;
  }

  .hero {
    min-height: 0;
    padding: 0;
  }

  .hero-banner {
    height: auto;
    max-height: none;
    border-radius: 0;
  }

  .ticker {
    padding-top: 18px;
  }

  .section,
  .section-grid,
  .ad-grid {
    padding: 42px 0;
  }

  .ticker,
  .host-grid,
  .ad-grid,
  .contact-grid,
  .contact-panel,
  .contact-form-row,
  .contact-message-card dl,
  .schedule-item,
  .news-item {
    grid-template-columns: 1fr;
  }

  .contact-message-card header,
  .contact-message-card footer {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-band {
    gap: 42px;
    padding-top: 46px;
  }

  .contact-form {
    padding: 26px 20px;
  }

  .save-bar {
    align-items: stretch;
    flex-direction: column;
  }

  .fixed-player {
    gap: 10px;
    border-radius: 0;
  }

  body {
    padding-bottom: 126px;
  }

}

@media (max-width: 1080px) {
  .admin-app {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
    height: auto;
  }

  .admin-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .admin-sidebar-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .host-admin-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .permissions-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .admin-body {
    padding-bottom: 0;
  }

  .admin-login-brand {
    position: static;
    margin-bottom: 18px;
  }

  .admin-login-screen {
    display: block;
  }

  .admin-login-card {
    margin: 0 auto;
  }

  .admin-main {
    padding: 22px 16px 96px;
  }

  .admin-hero-card,
  .stream-status,
  .admin-savebar,
  .admin-users-head {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-nav,
  .admin-sidebar-actions,
  .summary-grid,
  .stream-metrics,
  .host-admin-grid,
  .program-toolbar,
  .permissions-grid,
  .config-grid.two,
  .contact-config-layout,
  .config-split,
  .admin-editor,
  .admin-fields.two,
  .admin-body .repeat-row,
  .admin-body .repeat-row.news-row {
    grid-template-columns: 1fr;
  }

  .hosts-manager-head,
  .admin-list-hero,
  .admin-users-head,
  .host-photo-field,
  .host-modal-row,
  .host-modal-actions {
    grid-template-columns: 1fr;
  }

  .hosts-manager-head {
    align-items: stretch;
    flex-direction: column;
  }

  .host-modal {
    padding: 12px;
  }

  .host-modal-panel {
    padding: 20px;
  }

  .host-modal-actions {
    display: grid;
  }
}

/* Public site typography and layout refinement */
body:not(.admin-body) {
  background: #0b0b0d;
  color: #f7f7f4;
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body:not(.admin-body) .site-header {
  min-height: 76px;
  padding-top: 10px;
  padding-bottom: 10px;
  background: rgba(13, 13, 14, 0.94);
}

body:not(.admin-body) .brand {
  min-width: 216px;
}

body:not(.admin-body) .brand-logo {
  width: 50px;
  height: 50px;
  border-radius: 10px;
}

body:not(.admin-body) .brand strong {
  font-size: 16px;
  line-height: 1.15;
  font-weight: 900;
}

body:not(.admin-body) .brand small {
  font-size: 13px;
}

body:not(.admin-body) nav {
  gap: 4px;
  background: rgba(255, 255, 255, 0.07);
}

body:not(.admin-body) nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 800;
}

body:not(.admin-body) .hero {
  border-bottom: 1px solid rgba(255, 210, 31, 0.22);
}

body:not(.admin-body) .hero-banner {
  width: 100%;
  height: auto;
}

body:not(.admin-body) .ticker {
  gap: 12px;
  padding: 18px 0 34px;
}

body:not(.admin-body) .ticker span {
  min-height: 68px;
  display: flex;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid rgba(255, 210, 31, 0.28);
  border-top: 4px solid var(--yellow);
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff, #f3f1e8);
  color: #101011;
  font-size: 16px;
  line-height: 1.25;
}

body:not(.admin-body) .section,
body:not(.admin-body) .section-grid,
body:not(.admin-body) .ad-grid {
  padding: 48px 0;
}

body:not(.admin-body) .section-grid {
  grid-template-columns: minmax(220px, 0.62fr) minmax(0, 1.38fr);
  gap: 48px;
}

body:not(.admin-body) .section-intro {
  position: static;
}

body:not(.admin-body) .section-kicker {
  margin-bottom: 10px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
}

body:not(.admin-body) .section h2,
body:not(.admin-body) .section-grid h2 {
  color: #fff;
  font-size: 42px;
  line-height: 1.08;
  font-weight: 900;
}

body:not(.admin-body) .about-band {
  padding-top: 42px;
}

body:not(.admin-body) .about-copy,
body:not(.admin-body) .schedule-item,
body:not(.admin-body) .host-card,
body:not(.admin-body) .ad-card {
  border-color: rgba(255, 255, 255, 0.10);
  border-radius: 14px;
  background: linear-gradient(180deg, #1a1a1d, #121214);
  color: #f4f4f5;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.24);
}

body:not(.admin-body) .about-copy {
  padding: 28px;
}

body:not(.admin-body) .about-copy p,
body:not(.admin-body) .schedule-item p,
body:not(.admin-body) .host-card p,
body:not(.admin-body) .ad-card p {
  color: #c7c7cc;
  font-size: 16px;
  line-height: 1.68;
}

body:not(.admin-body) .schedule-list {
  gap: 12px;
}

body:not(.admin-body) .schedule-item {
  grid-template-columns: 104px minmax(0, 1fr);
  align-items: center;
  padding: 18px;
}

body:not(.admin-body) .schedule-item strong {
  min-height: 42px;
  border-radius: 10px;
  background: rgba(255, 210, 31, 0.13);
  color: var(--yellow);
  font-size: 20px;
}

body:not(.admin-body) .schedule-item h3,
body:not(.admin-body) .host-card h3,
body:not(.admin-body) .ad-card h3 {
  color: #fff;
  font-size: 19px;
  line-height: 1.25;
  font-weight: 900;
}

body:not(.admin-body) .host-grid {
  gap: 18px;
}

body:not(.admin-body) .host-card {
  overflow: hidden;
}

body:not(.admin-body) .host-card div {
  padding: 18px;
}

body:not(.admin-body) .section-heading {
  align-items: flex-end;
  margin-bottom: 22px;
}

body:not(.admin-body) .contact-band {
  gap: 46px;
  padding-top: 58px;
  padding-bottom: 72px;
  border-top: 1px solid rgba(255, 210, 31, 0.20);
  background:
    radial-gradient(rgba(255, 210, 31, 0.10) 1px, transparent 1px),
    linear-gradient(180deg, #09090b, #050506);
  background-size: 40px 40px, auto;
}

body:not(.admin-body) .contact-top h2 {
  font-size: 56px;
  line-height: 1.02;
  font-weight: 900;
}

body:not(.admin-body) .contact-top p {
  margin-top: 18px;
  font-size: 18px;
  line-height: 1.55;
}

body:not(.admin-body) .contact-panel {
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1fr);
  gap: 46px;
}

body:not(.admin-body) .contact-info-list {
  gap: 26px;
}

body:not(.admin-body) .contact-info-list article {
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 18px;
}

body:not(.admin-body) .contact-info-list i {
  width: 44px;
  height: 44px;
  border-radius: 10px;
}

body:not(.admin-body) .contact-form {
  gap: 18px;
  padding: 34px;
  border-radius: 16px;
  background: linear-gradient(180deg, #121214, #0b0b0d);
}

body:not(.admin-body) .contact-form h3 {
  font-size: 25px;
}

body:not(.admin-body) .contact-form input,
body:not(.admin-body) .contact-form textarea {
  min-height: 50px;
  border-radius: 10px;
  background: #1d1d20;
}

body:not(.admin-body) .contact-form textarea {
  min-height: 130px;
}

body:not(.admin-body) .ad-grid {
  gap: 18px;
}

body:not(.admin-body) .ad-card {
  padding: 22px;
}

body:not(.admin-body) footer {
  background: #09090b;
  border-top: 1px solid rgba(255, 210, 31, 0.18);
}

@media (max-width: 900px) {
  body:not(.admin-body) .section-grid,
  body:not(.admin-body) .contact-panel {
    grid-template-columns: 1fr;
  }

  body:not(.admin-body) .section h2,
  body:not(.admin-body) .section-grid h2,
  body:not(.admin-body) .contact-top h2 {
    font-size: 36px;
  }

  body:not(.admin-body) .ticker,
  body:not(.admin-body) .host-grid,
  body:not(.admin-body) .ad-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  body:not(.admin-body) .site-header {
    min-height: auto;
    gap: 12px;
  }

  body:not(.admin-body) .brand {
    min-width: 0;
  }

  body:not(.admin-body) nav {
    border-radius: 12px;
  }

  body:not(.admin-body) .ticker,
  body:not(.admin-body) .host-grid,
  body:not(.admin-body) .ad-grid,
  body:not(.admin-body) .schedule-item,
  body:not(.admin-body) .contact-form-row {
    grid-template-columns: 1fr;
  }

  body:not(.admin-body) .section,
  body:not(.admin-body) .section-grid,
  body:not(.admin-body) .ad-grid {
    padding: 36px 0;
  }

  body:not(.admin-body) .section h2,
  body:not(.admin-body) .section-grid h2,
  body:not(.admin-body) .contact-top h2 {
    font-size: 30px;
  }

  body:not(.admin-body) .about-copy,
  body:not(.admin-body) .contact-form {
    padding: 22px;
  }
}

/* Hidden privacy policy page */
.privacy-body {
  padding-bottom: 0;
  background: #09090b;
  color: #f7f7f4;
}

.privacy-page {
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: 56px 0 74px;
}

.privacy-hero,
.privacy-content {
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 16px;
  background: linear-gradient(180deg, #1a1a1d, #111114);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.privacy-hero {
  padding: clamp(28px, 5vw, 48px);
  margin-bottom: 22px;
}

.privacy-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(36px, 6vw, 58px);
  line-height: 1.04;
  font-weight: 900;
}

.privacy-hero p {
  max-width: 760px;
  margin: 18px 0 16px;
  color: #d7d7dc;
  font-size: 18px;
  line-height: 1.65;
}

.privacy-hero small {
  color: var(--yellow);
  font-weight: 800;
}

.privacy-content {
  padding: clamp(24px, 4vw, 42px);
}

.privacy-content h2 {
  margin: 30px 0 10px;
  color: #fff;
  font-size: 22px;
  line-height: 1.25;
}

.privacy-content h2:first-child {
  margin-top: 0;
}

.privacy-content p {
  margin: 0 0 14px;
  color: #c9c9cf;
  line-height: 1.75;
}

.privacy-content ul {
  margin: 0 0 18px;
  padding-left: 22px;
  color: #c9c9cf;
  line-height: 1.75;
}

.privacy-content li + li {
  margin-top: 4px;
}

.privacy-content a {
  color: var(--yellow);
  font-weight: 800;
}

/* Hero banner proportion fix */
body:not(.admin-body) .hero {
  width: 100%;
  margin-left: 0;
  height: clamp(360px, 42vw, 560px);
  overflow: hidden;
  background: #050506;
}

body:not(.admin-body) .hero-banner {
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: none;
  display: block;
  object-fit: cover;
  object-position: center top;
}

@media (max-width: 640px) {
  body:not(.admin-body) .hero {
    width: 100%;
    margin-left: 0;
    height: clamp(260px, 58vw, 420px);
  }

  body:not(.admin-body) .hero-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }
}

/* Final banner rule: responsive 1920x550 hero format */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body:not(.admin-body) .hero {
  width: 100%;
  height: auto !important;
  aspect-ratio: 1920 / 550;
  max-height: 550px;
  min-height: 0 !important;
  margin-left: 0 !important;
  padding: 0 !important;
  overflow: hidden;
  background: #050506;
}

body:not(.admin-body) .hero-banner {
  display: block;
  width: 100%;
  height: 100% !important;
  max-width: 100%;
  min-height: 0 !important;
  object-fit: contain !important;
  object-position: center center !important;
}

/* Professional composed hero: responsive, editable, no flattened text overlap. */
body:not(.admin-body) .hero.hero-composed {
  position: relative;
  display: grid;
  grid-template-columns: minmax(190px, 33%) minmax(0, 1fr);
  align-items: center;
  gap: clamp(22px, 4vw, 72px);
  width: 100%;
  min-height: clamp(360px, 28.65vw, 550px) !important;
  height: auto !important;
  aspect-ratio: auto;
  max-height: none;
  padding: clamp(28px, 4vw, 64px) clamp(24px, 7vw, 128px) !important;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .95) 0%, rgba(0, 0, 0, .78) 37%, rgba(0, 0, 0, .34) 72%, rgba(0, 0, 0, .74) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, .72), rgba(0, 0, 0, .16) 45%, rgba(0, 0, 0, .48)),
    url("/assets/city-hero.jpg") center 42% / cover no-repeat;
  border-bottom: 4px solid var(--yellow);
}

body:not(.admin-body) .hero.hero-composed::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 50%, rgba(255, 204, 18, .2), transparent 24%),
    linear-gradient(90deg, rgba(255, 204, 18, .16), transparent 28%);
}

body:not(.admin-body) .hero.hero-composed::after {
  content: "";
  position: absolute;
  left: -180px;
  top: -180px;
  width: 560px;
  height: 560px;
  border: 5px solid rgba(255, 204, 18, .84);
  border-radius: 50%;
  pointer-events: none;
}

body:not(.admin-body) .hero-logo-frame,
body:not(.admin-body) .hero-copy {
  position: relative;
  z-index: 1;
}

body:not(.admin-body) .hero-logo-frame {
  justify-self: center;
  width: clamp(190px, 24vw, 420px);
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, .58);
  box-shadow: 0 22px 55px rgba(0, 0, 0, .5);
  animation: heroLogoFloat 5.5s ease-in-out infinite;
}

body:not(.admin-body) .hero-logo-frame::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 4px solid rgba(255, 204, 18, .95);
  border-radius: inherit;
  animation: heroLogoGlow 2.8s ease-in-out infinite;
}

body:not(.admin-body) .hero-logo-frame::after {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: inherit;
  background: conic-gradient(from 0deg, transparent 0 72%, rgba(255, 204, 18, .5), transparent 88% 100%);
  filter: blur(8px);
  opacity: .58;
  animation: heroLogoSpin 7s linear infinite;
}

body:not(.admin-body) .hero-logo-mark {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}

@keyframes heroLogoFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-8px) scale(1.015);
  }
}

@keyframes heroLogoGlow {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(255, 204, 18, 0), 0 0 22px rgba(255, 204, 18, .28);
  }

  50% {
    box-shadow: 0 0 26px rgba(255, 204, 18, .58), 0 0 54px rgba(255, 204, 18, .28);
  }
}

@keyframes heroLogoSpin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  body:not(.admin-body) .hero-logo-frame,
  body:not(.admin-body) .hero-logo-frame::before,
  body:not(.admin-body) .hero-logo-frame::after {
    animation: none;
  }
}

body.splash-active {
  overflow: hidden;
}

.site-splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 22px;
  padding: 28px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 204, 18, .28), transparent 26%),
    radial-gradient(circle at 14% 18%, rgba(255, 204, 18, .16), transparent 30%),
    linear-gradient(135deg, #050505 0%, #111 48%, #050505 100%);
  color: #fff;
  opacity: 1;
  visibility: visible;
  transition: opacity .7s ease, visibility .7s ease;
}

.site-splash::before,
.site-splash::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.site-splash::before {
  width: clamp(280px, 38vw, 560px);
  aspect-ratio: 1;
  border: 3px solid rgba(255, 204, 18, .48);
  animation: splashRing 1.9s ease-in-out infinite;
}

.site-splash::after {
  width: clamp(360px, 56vw, 820px);
  aspect-ratio: 1;
  background: conic-gradient(from 0deg, transparent 0 68%, rgba(255, 204, 18, .58), transparent 86% 100%);
  filter: blur(16px);
  opacity: .42;
  animation: splashSpin 3.8s linear infinite;
}

.site-splash.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.splash-mark {
  position: relative;
  z-index: 1;
  width: clamp(155px, 22vw, 280px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(0, 0, 0, .64);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .58), 0 0 55px rgba(255, 204, 18, .28);
  animation: splashLogoIn 1.2s cubic-bezier(.2, .9, .2, 1) both, splashLogoPulse 1.8s ease-in-out 1.1s infinite;
}

.splash-mark img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.splash-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 6px;
  text-align: center;
  animation: splashTextIn .9s ease .35s both;
}

.splash-copy strong {
  color: #fff;
  font-size: clamp(30px, 5vw, 68px);
  font-weight: 900;
  line-height: .95;
  text-transform: uppercase;
}

.splash-copy span {
  color: var(--yellow);
  font-size: clamp(15px, 2.2vw, 28px);
  font-weight: 800;
  text-transform: uppercase;
}

.splash-loader {
  position: relative;
  z-index: 1;
  width: min(320px, 70vw);
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, .14);
}

.splash-loader::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #fff, var(--yellow));
  transform-origin: left center;
  animation: splashLoad 2.2s ease both;
}

@keyframes splashLogoIn {
  from {
    opacity: 0;
    transform: scale(.72) translateY(18px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes splashLogoPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 24px 80px rgba(0, 0, 0, .58), 0 0 45px rgba(255, 204, 18, .22);
  }

  50% {
    transform: scale(1.035);
    box-shadow: 0 24px 80px rgba(0, 0, 0, .58), 0 0 76px rgba(255, 204, 18, .46);
  }
}

@keyframes splashTextIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes splashLoad {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes splashRing {
  0%,
  100% {
    transform: scale(.96);
    opacity: .44;
  }

  50% {
    transform: scale(1.06);
    opacity: .88;
  }
}

@keyframes splashSpin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-splash,
  .site-splash::before,
  .site-splash::after,
  .splash-mark,
  .splash-copy,
  .splash-loader::before {
    animation: none;
    transition: none;
  }
}

body:not(.admin-body) .hero-copy {
  max-width: 920px;
}

body:not(.admin-body) .hero-location {
  display: inline-flex;
  align-items: center;
  margin: 0 0 14px;
  padding: 8px 18px;
  border: 1px solid rgba(255, 204, 18, .38);
  border-radius: 999px;
  background: rgba(0, 0, 0, .42);
  color: var(--yellow);
  font-size: clamp(13px, 1.45vw, 20px);
  font-weight: 800;
  text-transform: uppercase;
}

body:not(.admin-body) .hero-copy h1 {
  margin: 0;
  color: #fff;
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(48px, 6.4vw, 116px);
  line-height: .92;
  font-weight: 900;
  text-transform: uppercase;
}

body:not(.admin-body) .hero-copy h1 span {
  color: var(--yellow);
  white-space: nowrap;
}

body:not(.admin-body) .hero-copy h2 {
  margin: 14px 0 0;
  color: var(--yellow);
  font-size: clamp(25px, 3.4vw, 62px);
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

body:not(.admin-body) .hero-badges {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}

body:not(.admin-body) .hero-badges strong,
body:not(.admin-body) .hero-badges small {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  border-radius: 999px;
  font-weight: 900;
}

body:not(.admin-body) .hero-badges strong {
  padding: 0 26px;
  background: var(--yellow);
  color: #080808;
  font-size: clamp(18px, 2vw, 30px);
  text-transform: uppercase;
}

body:not(.admin-body) .hero-badges small {
  padding: 0 22px;
  border: 1px solid rgba(255, 204, 18, .38);
  background: rgba(0, 0, 0, .42);
  color: #fff;
  font-size: clamp(14px, 1.45vw, 22px);
}

@media (max-width: 820px) {
  body:not(.admin-body) .hero.hero-composed {
    grid-template-columns: 1fr;
    min-height: auto !important;
    padding: 26px 20px 32px !important;
    text-align: center;
    background-position: center top;
  }

  body:not(.admin-body) .hero-logo-frame {
    width: min(56vw, 250px);
  }

  body:not(.admin-body) .hero-copy {
    max-width: none;
  }

  body:not(.admin-body) .hero-badges {
    justify-content: center;
  }
}
