:root {
  --bg: #f3f3f3;
  --bg-soft: #fafafa;
  --surface: #ffffff;
  --surface-alt: #0d4266;
  --surface-alt-2: #0a314d;
  --line: #d6e4ef;
  --line-strong: rgba(255, 255, 255, 0.1);
  --text: #111111;
  --text-strong: #111111;
  --text-soft: #666666;
  --text-muted: #8a8a8a;
  --text-on-dark: #ffffff;
  --brand: #1a80c3;
  --brand-dark: #14679a;
  --brand-soft: #e3f2fa;
  --accent: #db1f2f;
  --accent-dark: #ad1420;
  --success: #9ef58a;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --button-radius: 999px;
  --content-width: 1280px;
  --mobile-content-width: 720px;
  --section-spacing: 3rem;
  --mobile-section-spacing: 1.6rem;
  --card-padding: 1.25rem;
  --mobile-card-padding: 1rem;
  --grid-gap: 1rem;
  --partner-photo-width: 235px;
  --partner-copy-width: 860px;
  --partner-card-padding: 1.3rem;
  --partner-surface-start: #122646;
  --partner-surface-end: #0d1c34;
  --hero-title-size: 5.8rem;
  --hero-copy-size: 1.14rem;
  --player-title-size: 2.42rem;
  --display-font: "Avenir Next Condensed", "Arial Black", "Segoe UI", sans-serif;
  --body-font: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --logo-blue: #1a80c3;
  --header-blue-alpha: 0.95;
  --scroll-bg-opacity: 1;
  --header-height: 150px;
  --header-height-compact: 68px;
}

.webdesign-card-section {
  padding-top: 0.25rem;
}

.webdesign-card-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
}

body[data-page="webdesign"] .webdesign-hero-title {
  max-width: none !important;
  font-size: clamp(1.55rem, 2.9vw, 2.85rem) !important;
  line-height: 1.06 !important;
  margin: 0 !important;
}

body[data-page="webdesign"] .webdesign-hero-title .line {
  display: block;
  white-space: normal !important;
}

html:has(body[data-page="webdesign"]) {
  height: auto;
  overflow-y: auto;
}

body[data-page="webdesign"] {
  height: auto;
  min-height: 100vh;
  overflow-y: auto !important;
  overflow-x: hidden;
  padding-bottom: 9rem;
}

body[data-page="webdesign"] main,
body[data-page="webdesign"] .page-shell,
body[data-page="webdesign"] .page-flow {
  overflow: visible !important;
}

body[data-page="webdesign"] .masthead {
  padding-top: 0 !important;
  margin-bottom: 0 !important;
}

body[data-page="webdesign"] .page-shell.page-flow {
  padding-top: 0.25rem !important;
}

body[data-page="webdesign"] .masthead + [data-module-id="werbung-partners"] {
  padding-top: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 1.4rem !important;
}

body[data-page="webdesign"] [data-module-id="werbung-partners"] .partner-stack,
body[data-page="webdesign"] [data-module-id="werbung-partners"] .partner-card {
  margin-top: 0 !important;
}

body[data-page="webdesign"] .webdesign-scroll-spacer {
  height: clamp(2rem, 4vh, 3rem);
}

@media (max-width: 720px) {
  body[data-page="webdesign"] .masthead {
    padding-top: 1.15rem !important;
  }

  body[data-page="webdesign"] .webdesign-hero-title {
    font-size: clamp(1.25rem, 4.9vw, 1.8rem) !important;
    line-height: 1.14 !important;
  }

  body[data-page="webdesign"] {
    padding-bottom: 6.5rem;
  }

  body[data-page="webdesign"] .webdesign-scroll-spacer {
    height: clamp(1.25rem, 2.8vh, 2rem);
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  position: relative;
  background:
    linear-gradient(
      180deg,
      #1a80c3 0,
      #1a80c3 calc(var(--header-height) + 56px),
      #4f96cf 44%,
      #9fcae7 68%,
      #dbeef9 84%,
      #ffffff 100%
    );
  color: var(--text);
  font-family: var(--body-font);
  line-height: 1.5;
  isolation: isolate;
  padding-top: var(--header-height);
}

body::before {
  content: none;
}

[hidden] {
  display: none !important;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.page-shell,
.site-footer {
  width: min(calc(100% - 2rem), var(--content-width));
  margin-inline: auto;
}

.page-shell {
  padding-bottom: 0.45rem;
}

body:not([data-page="admin"]) {
  padding-bottom: 3rem;
}

body.header-compact {
  padding-top: var(--header-height-compact);
}

.page-flow {
  padding-top: 1.6rem;
}

.site-header {
  position: fixed;
  top: 0;
  z-index: 70;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.05rem;
  padding: 0.72rem 0;
  width: 100%;
  margin-inline: 0;
  padding-inline: max(1rem, calc((100vw - var(--content-width)) / 2));
  background: #1a80c3;
  border-bottom: 0;
  backdrop-filter: none;
  transition: padding 0.25s ease, background 0.25s ease;
  height: var(--header-height);
  overflow: visible;
}

.site-header.is-compact {
  padding: 0.55rem 0;
  padding-inline: max(1rem, calc((100vw - var(--content-width)) / 2));
  background: #1a80c3;
  height: var(--header-height-compact);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
  margin-right: 1.4rem;
}

.brand-shell {
  position: relative;
  display: inline-block;
  isolation: isolate;
  padding-right: 0;
}

.header-extras {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  position: relative;
}

.header-decoration-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  z-index: 2;
}

.brand-logo,
.hero-heading-row h1,
.player-head h2,
.section-head h2,
.masthead h1,
.site-footer strong {
  font-family: var(--display-font);
}

.brand-logo {
  width: 15.6rem;
  max-width: min(27vw, 15.6rem);
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 14px 22px rgba(17, 110, 167, 0.18));
  transition: width 0.25s ease, max-width 0.25s ease, transform 0.25s ease;
}

.site-header.is-compact .brand-logo {
  width: 11.5rem;
  max-width: min(24vw, 11.5rem);
  transform: translateY(-1px);
}

.brand-decoration {
  position: absolute;
  display: block;
  max-width: none;
  pointer-events: none;
  user-select: none;
}

.header-decoration {
  display: block;
  max-width: none;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 10px 18px rgba(17, 110, 167, 0.2));
  margin-left: 0.3rem;
}

.header-decoration--easter {
  width: var(--header-decoration-size, 6.4rem);
  transform: translateY(0);
}

.header-decoration--christmas {
  width: 6.4rem;
  transform: rotate(4deg);
}

.header-decoration--newyear {
  width: 7.6rem;
}

.header-decoration--labourday {
  width: 6.6rem;
}

.header-decoration--ascension {
  width: 6.3rem;
}

.header-decoration--pentecost {
  width: 6.2rem;
}

.header-decoration--unity {
  width: 6.4rem;
}

.header-decoration--epiphany {
  width: 6.1rem;
}

.header-decoration--corpuschristi {
  width: 6.4rem;
}

.header-decoration--allsaints {
  width: 5.8rem;
}

.header-decoration--reformation {
  width: 6.2rem;
}

.brand-decoration--easter {
  left: calc(100% + var(--header-decoration-offset-x, 1.65rem));
  right: auto;
  top: var(--header-decoration-offset-y, 50%);
  width: var(--header-decoration-size, 6rem);
  z-index: 4;
  transform: translateY(-50%);
}

.brand-decoration--christmas {
  right: 1.05rem;
  top: -0.7rem;
  width: 6.2rem;
  z-index: 3;
  transform: rotate(8deg);
}

.brand-decoration--newyear {
  right: -0.3rem;
  top: -1.2rem;
  width: 7.3rem;
  z-index: 1;
}

.brand-decoration--labourday {
  right: 0.2rem;
  top: -0.55rem;
  width: 6.5rem;
  z-index: 1;
}

.brand-decoration--ascension {
  right: 1rem;
  top: -0.45rem;
  width: 6rem;
  z-index: 1;
}

.brand-decoration--pentecost {
  right: 0.15rem;
  top: 0.2rem;
  width: 6rem;
  z-index: 1;
}

.brand-decoration--unity {
  right: 0.35rem;
  top: -0.15rem;
  width: 6.25rem;
  z-index: 1;
}

.brand-decoration--epiphany {
  right: 0.75rem;
  top: -0.45rem;
  width: 6rem;
  z-index: 1;
}

.brand-decoration--corpuschristi {
  right: 0.35rem;
  top: -0.25rem;
  width: 5.75rem;
  z-index: 1;
}

.brand-decoration--allsaints {
  right: 1rem;
  top: -0.45rem;
  width: 4.6rem;
  z-index: 1;
}

.brand-decoration--reformation {
  right: 0.35rem;
  top: 0.25rem;
  width: 5.6rem;
  z-index: 1;
}

.site-nav {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: clamp(0.75rem, 1.35vw, 1.35rem);
}

.site-nav-link {
  color: rgba(60, 72, 84, 0.92);
  font-weight: 700;
  font-size: clamp(0.98rem, 1.02vw, 1.08rem);
  line-height: 1.2;
  transition: color 160ms ease;
}

.site-nav-link:hover,
.site-nav-link:focus-visible {
  color: var(--brand-dark);
}

.site-nav-link.is-active {
  color: #ffffff;
}

.site-nav-toggle {
  display: none;
  width: 2.65rem;
  height: 2.65rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 0.85rem;
  background: rgba(10, 68, 110, 0.34);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.28rem;
  padding: 0;
  color: #ffffff;
  cursor: pointer;
}

.site-nav-toggle-bar {
  width: 1.2rem;
  height: 0.12rem;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.8rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent), var(--accent-dark));
  color: var(--text-on-dark);
  font-weight: 700;
  box-shadow: 0 12px 22px rgba(219, 31, 47, 0.22);
}

.header-weather {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.35rem;
  min-width: 11.2rem;
  padding: 0.35rem 0.6rem;
  border: 1px solid rgba(17, 110, 167, 0.14);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(234, 245, 252, 0.96));
  box-shadow: 0 10px 20px rgba(17, 110, 167, 0.12);
  justify-self: end;
  z-index: 1;
}

.header-app-editor {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.3rem;
  padding: 0.7rem 1.15rem;
  border: 1px solid rgba(17, 110, 167, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--brand-dark);
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(17, 110, 167, 0.1);
  justify-self: end;
}

.header-app-editor:hover,
.header-app-editor:focus-visible {
  background: rgba(231, 245, 253, 0.98);
  color: var(--brand-dark);
}

.header-weather.is-loading {
  opacity: 0.88;
}

.header-weather-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(30, 137, 200, 0.14), rgba(17, 110, 167, 0.18));
  color: var(--brand-dark);
  box-shadow: inset 0 0 0 1px rgba(17, 110, 167, 0.08);
  flex-shrink: 0;
}

.header-weather-icon.weather-sun {
  color: #f59d17;
  background: linear-gradient(180deg, rgba(245, 157, 23, 0.16), rgba(255, 196, 69, 0.2));
}

.header-weather-icon.weather-partly {
  color: #d88712;
}

.header-weather-icon.weather-cloud,
.header-weather-icon.weather-fog {
  color: #5f7b92;
}

.header-weather-icon.weather-rain,
.header-weather-icon.weather-storm,
.header-weather-icon.weather-snow {
  color: #1d6aa0;
}

.header-weather-icon svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-weather-copy {
  display: grid;
  gap: 0.05rem;
  min-width: 0;
}

.header-weather-copy strong {
  font-size: 0.82rem;
  line-height: 1.1;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.header-weather-copy span {
  font-size: 0.7rem;
  color: var(--text-soft);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.header-weather-consent-button {
  border: 1px solid rgba(17, 110, 167, 0.18);
  background: rgba(255, 255, 255, 0.9);
  color: var(--brand-dark);
  border-radius: 999px;
  padding: 0.3rem 0.55rem;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
}

.header-weather-consent-button:hover,
.header-weather-consent-button:focus-visible {
  background: rgba(231, 245, 253, 0.96);
}

.chatbot-shell {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 70;
  display: grid;
  justify-items: end;
  gap: 0.85rem;
}

.chatbot-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-height: 4.25rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(17, 110, 167, 0.16);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(18, 38, 70, 0.97), rgba(13, 28, 52, 0.98));
  color: var(--text-on-dark);
  box-shadow: 0 24px 52px rgba(10, 22, 40, 0.28);
  cursor: pointer;
}

.chatbot-toggle-icon,
.chatbot-input-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--brand), var(--brand-dark));
  color: var(--text-on-dark);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.chatbot-toggle-icon svg,
.chatbot-input-icon svg {
  width: 1.3rem;
  height: 1.3rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chatbot-toggle-copy {
  display: grid;
  gap: 0.15rem;
  text-align: left;
}

.chatbot-toggle-copy strong {
  font-family: var(--display-font);
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.chatbot-toggle-copy span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.chatbot-panel {
  width: min(420px, calc(100vw - 1.5rem));
  border-radius: 28px;
  border: 1px solid rgba(17, 110, 167, 0.12);
  background:
    radial-gradient(circle at top right, rgba(30, 137, 200, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 252, 0.98));
  box-shadow: 0 28px 70px rgba(10, 22, 40, 0.18);
  overflow: hidden;
  backdrop-filter: blur(18px);
}

.chatbot-panel-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.25rem 0.8rem;
}

.chatbot-kicker {
  margin: 0;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 800;
}

.chatbot-panel-head h2 {
  margin: 0.35rem 0 0;
  font-family: var(--display-font);
  font-size: 1.5rem;
  line-height: 1.02;
}

.chatbot-panel-head p {
  margin: 0.45rem 0 0;
  color: var(--text-soft);
  line-height: 1.5;
}

.chatbot-close {
  width: 2.3rem;
  height: 2.3rem;
  border: 0;
  border-radius: 50%;
  background: rgba(17, 110, 167, 0.08);
  color: var(--text);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.chatbot-message-list {
  display: grid;
  gap: 0.8rem;
  max-height: 360px;
  padding: 0.25rem 1.25rem 0.2rem;
  overflow: auto;
}

.chatbot-message {
  display: flex;
}

.chatbot-message.is-user {
  justify-content: end;
}

.chatbot-message-bubble {
  max-width: min(88%, 320px);
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(17, 110, 167, 0.1);
  box-shadow: 0 10px 24px rgba(12, 24, 39, 0.06);
}

.chatbot-message.is-user .chatbot-message-bubble {
  background: linear-gradient(180deg, rgba(30, 137, 200, 0.12), rgba(17, 110, 167, 0.16));
}

.chatbot-message.is-pending .chatbot-message-bubble {
  background: rgba(238, 245, 249, 0.95);
}

.chatbot-message-bubble p {
  margin: 0;
  line-height: 1.55;
}

.chatbot-message-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.8rem;
}

.chatbot-message-link {
  display: inline-flex;
  align-items: center;
  min-height: 2.1rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-weight: 700;
  font-size: 0.88rem;
}

.chatbot-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 1rem 1.25rem 0.2rem;
}

.chatbot-chip {
  min-height: 2.25rem;
  padding: 0.5rem 0.9rem;
  border: 1px solid rgba(17, 110, 167, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
}

.chatbot-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.8rem;
  padding: 1rem 1.25rem 1.25rem;
}

.chatbot-input-shell {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.8rem;
  padding: 0.55rem;
  border-radius: 18px;
  border: 1px solid rgba(17, 110, 167, 0.12);
  background: rgba(255, 255, 255, 0.92);
}

.chatbot-input-shell input {
  min-width: 0;
  border: 0;
  background: transparent;
  padding: 0;
  color: var(--text);
}

.chatbot-input-shell input:focus {
  outline: none;
}

.chatbot-submit {
  min-width: 7.25rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 430px) minmax(240px, 0.8fr);
  gap: 1rem;
  padding-top: 0.3rem;
}

body[data-page="home"] .hero-grid {
  grid-template-columns: minmax(0, 1.38fr) minmax(280px, 0.78fr);
  align-items: start;
  padding-top: 0.3rem;
}

body[data-page="home"] .hero-grid.is-player-only {
  grid-template-columns: minmax(0, 1fr);
}

.home-intro {
  margin-top: 2.8rem;
  margin-bottom: 1.4rem;
  padding-top: 0;
}

.home-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.85fr);
  gap: 2rem;
  align-items: start;
  margin-top: 2.8rem;
  margin-bottom: 1.4rem;
}

body[data-page="home"] .home-intro,
body[data-page="home"] .home-intro-grid {
  margin-top: -2.4rem;
}

body[data-page="home"] .home-live-card {
  margin-top: -0.8rem;
  max-width: 320px;
  padding-top: 1rem;
  gap: 0.55rem;
  align-self: center;
}

.home-intro-grid .home-intro {
  margin: 0;
  align-self: stretch;
}

.home-live-card {
  background: linear-gradient(160deg, rgba(42, 122, 182, 0.78), rgba(26, 92, 150, 0.78));
  color: #fff;
  border-radius: 1.8rem;
  padding: 1rem 1.1rem;
  display: grid;
  gap: 0.6rem;
  overflow: hidden;
  box-shadow: 0 16px 30px rgba(7, 32, 56, 0.18);
  max-width: 320px;
  width: 100%;
  justify-self: end;
  margin-top: 0;
  align-self: start;
  height: auto;
}

.home-live-card__play {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: none;
  background: transparent;
  display: grid;
  place-items: center;
  margin-inline: auto;
  cursor: pointer;
}

.home-live-card__play svg {
  width: 2.6rem;
  height: 2.6rem;
}

body.is-playing .home-live-card__play {
  animation: home-play-pulse 1.8s ease-in-out infinite;
}

body.is-playing #playButton.player-icon-button {
  animation: dock-play-pulse 1.8s ease-in-out infinite;
}

@keyframes home-play-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(96, 215, 141, 0.42);
  }
  50% {
    transform: scale(1.035);
    box-shadow: 0 0 0 11px rgba(96, 215, 141, 0);
  }
}

@keyframes dock-play-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(76, 177, 236, 0.38);
  }
  50% {
    transform: scale(1.03);
    box-shadow: 0 0 0 8px rgba(76, 177, 236, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.is-playing .home-live-card__play,
  body.is-playing #playButton.player-icon-button {
    animation: none;
  }
}

.home-live-card__cta-text {
  border: none;
  background: transparent;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
  text-align: center;
  cursor: pointer;
  margin-top: -0.05rem;
}

.home-live-card__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0.35rem 0 0.2rem;
}

.home-live-card__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.92;
  margin: 0 0 0.35rem;
}

.home-live-card__onair-neon {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  padding: 0.14rem 0.48rem;
  border-radius: 999px;
  border: 1px solid rgba(106, 234, 145, 0.72);
  color: #dcffe8;
  background: rgba(14, 92, 44, 0.26);
  text-shadow:
    0 0 4px rgba(122, 255, 168, 0.82),
    0 0 10px rgba(122, 255, 168, 0.58);
  box-shadow:
    0 0 8px rgba(106, 234, 145, 0.35),
    inset 0 0 8px rgba(106, 234, 145, 0.2);
  animation: home-onair-neon-flicker 1.8s ease-in-out infinite;
}

.home-live-card__onair-neon.is-offline {
  border-color: rgba(255, 114, 114, 0.72);
  color: #ffd9d9;
  background: rgba(120, 7, 7, 0.24);
  text-shadow:
    0 0 4px rgba(255, 86, 86, 0.85),
    0 0 10px rgba(255, 86, 86, 0.62);
  box-shadow:
    0 0 8px rgba(255, 74, 74, 0.35),
    inset 0 0 8px rgba(255, 74, 74, 0.18);
}

.home-live-card__onair-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: #48e07a;
  box-shadow: 0 0 0 rgba(72, 224, 122, 0.6);
  animation: home-onair-pulse 1.7s ease-out infinite;
}

.home-live-card__onair-neon.is-offline .home-live-card__onair-dot {
  background: #ff4a4a;
  box-shadow: 0 0 0 rgba(255, 74, 74, 0.6);
  animation: home-onair-pulse-offline 1.7s ease-out infinite;
}

@keyframes home-onair-neon-flicker {
  0%,
  100% {
    opacity: 1;
    filter: brightness(1);
  }
  48% {
    opacity: 0.86;
    filter: brightness(1.12);
  }
  52% {
    opacity: 0.7;
    filter: brightness(0.92);
  }
  58% {
    opacity: 0.96;
    filter: brightness(1.06);
  }
}

@keyframes home-onair-pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(72, 224, 122, 0.6);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 9px rgba(72, 224, 122, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(72, 224, 122, 0);
  }
}

@keyframes home-onair-pulse-offline {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 74, 74, 0.6);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 9px rgba(255, 74, 74, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 74, 74, 0);
  }
}

.home-live-card__section {
  text-align: center;
  margin-top: 0;
  max-width: 20rem;
  margin-left: auto;
  margin-right: auto;
}

.home-live-card__channel {
  display: grid;
  grid-template-columns: 2.8rem 1fr;
  gap: 0.85rem;
  align-items: center;
}

.home-live-card__channel img {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 0.9rem;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.16);
}

.home-live-card__channel strong {
  display: block;
  font-size: 1rem;
}

.home-live-card__channel span {
  font-size: 0.9rem;
  opacity: 0.85;
}

.home-live-card__track {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 0.8rem;
  align-items: center;
  justify-content: start;
}

.home-live-card__track div {
  text-align: left;
  min-width: 0;
  padding-left: 0.35rem;
}

.home-live-card__track img {
  width: 3rem;
  height: 3rem;
  border-radius: 0.9rem;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.18);
}

.home-live-card__track strong {
  font-size: 1.06rem;
}

.home-live-card__track strong:empty {
  display: none;
}

.home-live-card__track span {
  font-size: 0.9rem;
  opacity: 0.85;
}

.home-live-card__title {
  display: block;
  font-size: 0.78rem;
  opacity: 0.85;
  overflow: hidden;
  white-space: nowrap;
  margin-top: 0.15rem;
  max-width: 14rem;
  margin-left: auto;
  margin-right: auto;
}

.home-live-card__title-text {
  display: inline-block;
  white-space: nowrap;
  transform: translateX(0);
  padding-left: 0;
  animation: none;
}

.home-live-card__title.is-marquee .home-live-card__title-text {
  padding-left: 0;
  animation: home-live-marquee 28s linear infinite;
}

@keyframes home-live-marquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.home-live-card__track span:empty {
  display: none;
}

.home-live-card__links {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.6rem;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 14rem;
  margin-top: 0.4rem;
  margin-left: auto;
  margin-right: auto;
}

.home-live-card__links a {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid transparent;
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  background:
    linear-gradient(145deg, rgba(25, 45, 73, 0.9), rgba(18, 83, 134, 0.94)) padding-box,
    conic-gradient(from var(--button-angle, 0deg), #00ccff, transparent 28%, #d400d4, transparent 68%, #00ccff) border-box;
  box-shadow:
    inset 0 0 14px rgba(0, 204, 255, 0.1),
    0 0 13px rgba(0, 204, 255, 0.16),
    0 0 18px rgba(212, 0, 212, 0.1);
  animation: cyber-button-ring 5.6s linear infinite;
  transition:
    transform 180ms ease,
    box-shadow 220ms ease,
    filter 180ms ease;
}

.home-live-card__links a:hover,
.home-live-card__links a:focus-visible {
  transform: translateY(-2px) scale(1.03);
  box-shadow:
    inset 0 0 18px rgba(0, 204, 255, 0.14),
    0 0 22px rgba(0, 204, 255, 0.34),
    0 0 26px rgba(212, 0, 212, 0.18);
  filter: saturate(1.08);
}


.home-intro__title {
  font-family: var(--display-font);
  font-size: clamp(2.2rem, 3.25vw, 3.7rem);
  letter-spacing: 0.05em;
  white-space: nowrap;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
  color: rgba(8, 24, 38, 0.92);
  text-shadow: 0 10px 24px rgba(10, 44, 74, 0.18);
}

body[data-page="home"] .home-intro__title {
  white-space: nowrap;
  max-width: none;
  margin-left: 0;
}

@media (max-width: 960px) {
  .home-intro__title {
    white-space: normal;
  }
}

.home-intro__lead {
  font-size: clamp(1.05rem, 1.45vw, 1.34rem);
  color: rgba(10, 30, 50, 0.92);
  margin-bottom: 0.4rem;
}

.home-intro__copy {
  font-size: 1.05rem;
  color: rgba(10, 24, 38, 0.8);
  max-width: 52rem;
}

.hero-main-column {
  display: grid;
  gap: 1rem;
  min-width: 0;
}

.home-songrequest-strip {
  border-radius: var(--radius-xl);
  padding: 1.1rem 1.55rem 1.45rem;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.15), transparent 35%),
    linear-gradient(135deg, rgba(20, 119, 183, 0.92), rgba(14, 95, 156, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #eff7ff;
  box-shadow: 0 18px 32px rgba(11, 56, 95, 0.2);
  animation: homeSongrequestFadeIn 520ms ease both;
  transform-style: preserve-3d;
  transition: transform 380ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 380ms ease;
}

.home-songrequest-strip:hover,
.home-songrequest-strip:focus-within {
  transform: perspective(1000px) rotateX(2.2deg) rotateY(-2deg) translateY(-4px);
  box-shadow: 0 24px 42px rgba(11, 56, 95, 0.3);
}

.home-songrequest-strip h2 {
  margin: 0;
  font-size: clamp(1.55rem, 2.2vw, 2.2rem);
  line-height: 1.02;
  color: #ffffff;
  animation: homeSongrequestFadeIn 620ms ease both;
}

.home-songrequest-strip p {
  margin: 0.85rem 0 0;
  max-width: 60ch;
  color: rgba(239, 247, 255, 0.95);
  line-height: 1.55;
  animation: homeSongrequestFadeIn 700ms ease both;
}

.home-songrequest-strip__actions {
  margin-top: 1.75rem;
  animation: homeSongrequestFadeIn 780ms ease both;
}

.home-songrequest-strip__actions .button {
  min-width: 18.5rem;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    filter 220ms ease;
}

.home-songrequest-strip__actions .button::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  border: 1.5px solid rgba(255, 255, 255, 0.36);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  opacity: 0.58;
  pointer-events: none;
  z-index: 1;
  transition:
    opacity 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.home-songrequest-strip__actions .button::after {
  content: none;
}

.home-songrequest-strip__actions .button:hover,
.home-songrequest-strip__actions .button:focus-visible {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 16px 34px rgba(7, 47, 85, 0.42);
  filter: saturate(1.08);
}

.home-songrequest-strip__actions .button:hover::before,
.home-songrequest-strip__actions .button:focus-visible::before {
  border-color: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.14),
    0 0 16px rgba(255, 255, 255, 0.7),
    0 0 32px rgba(30, 137, 200, 0.56);
  opacity: 1;
}

@media (max-width: 700px) {
  .home-songrequest-strip__actions .button {
    min-width: 0;
    width: 100%;
  }
}

@keyframes homeSongrequestFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.hero-panel,
.ticker-card,
.content-card,
.host-card,
.rail-panel,
.app-promo,
.schedule-card,
.newsletter-card,
.contact-form-card,
.editor-card,
.editor-preview-card,
.preview-link-card,
.stream-layout .receive-panel,
.social-showcase {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-panel {
  border-radius: var(--radius-xl);
}

.hero-panel-primary {
  padding: 2rem;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 24%),
    radial-gradient(circle at bottom right, rgba(219, 31, 47, 0.2), transparent 28%),
    linear-gradient(135deg, rgba(30, 137, 200, 0.98), rgba(17, 110, 167, 0.98));
  color: var(--text-on-dark);
  position: relative;
  overflow: hidden;
}

.hero-panel-primary::after {
  content: "";
  position: absolute;
  right: -3rem;
  bottom: -3rem;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.09);
}

.hero-heading-row,
.player-head,
.section-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.stacked {
  display: block;
}

.eyebrow {
  margin: 0;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  font-weight: 800;
}

.hero-panel-primary .eyebrow,
.app-kicker,
.rail-kicker {
  color: #ffffff;
}

.hero-heading-row h1,
.masthead h1 {
  margin: 1rem 0 0;
  font-size: clamp(2.18rem, 3.25vw, 3.75rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
}

.hero-heading-row h1 {
  max-width: 10ch;
}

.hero-copy,
.section-copy,
.muted-copy,
.status-subtle,
.site-footer p,
.content-card p,
.host-card p,
.masthead-copy {
  line-height: 1.7;
}

.hero-copy,
.hero-panel-primary .section-copy {
  margin: 1rem 0 0;
  font-size: var(--hero-copy-size);
  color: rgba(255, 255, 255, 0.84);
  max-width: 60ch;
}

.hero-actions,
.player-actions,
.app-promo-actions,
.editor-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-actions {
  margin-top: 1.8rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}

.hero-metrics article {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-metrics span,
.ticker-card span,
.mini-label,
.card-meta {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 700;
}

.hero-metrics strong,
.ticker-card strong {
  display: block;
  margin-top: 0.45rem;
  font-size: 1.05rem;
}

.button,
.file-button {
  border: 0;
  border-radius: var(--button-radius);
  padding: 0.95rem 1.25rem;
  cursor: pointer;
  transition:
    transform 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

.button:hover,
.button:focus-visible,
.file-button:hover,
.file-button:focus-visible {
  transform: translateY(-1px);
}

.button-brand {
  background: linear-gradient(180deg, var(--brand), var(--brand-dark));
  color: var(--text-on-dark);
  box-shadow: 0 12px 22px rgba(30, 137, 200, 0.22);
}

.button-dark {
  background: linear-gradient(180deg, var(--accent), var(--accent-dark));
  color: var(--text-on-dark);
  box-shadow: 0 12px 22px rgba(219, 31, 47, 0.18);
}

.button-ghost-dark,
.button-light-dark {
  background: #eef6fb;
  color: var(--brand-dark);
}

.button-light {
  background: var(--text-on-dark);
  color: var(--brand-dark);
}

.button-soft {
  background: var(--brand-soft);
  color: var(--brand-dark);
}

.button-primary {
  background: linear-gradient(180deg, var(--brand), var(--brand-dark));
  color: var(--text-on-dark);
  box-shadow: 0 12px 22px rgba(30, 137, 200, 0.22);
}

.button-outline-light {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--text-on-dark);
}

.section-link {
  color: var(--brand-dark);
  font-weight: 700;
}

.events-masthead {
  margin-bottom: 1.6rem;
}

body[data-page="events"] .events-masthead .eyebrow {
  color: #ffffff;
  text-shadow: none;
}

body[data-page="events"] .events-masthead h1 {
  max-width: none;
}

body[data-page="events"] .events-masthead h1 .line {
  display: block;
  white-space: nowrap;
}

.event-feed-shell {
  padding: 1.4rem;
}

.event-feed-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.event-feed-copy h2,
.event-feed-copy-block h3 {
  margin: 0;
}

.event-feed-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.event-feed-filters {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) repeat(2, minmax(170px, 0.6fr));
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.event-filter-item {
  display: grid;
  gap: 0.35rem;
}

.event-filter-item span {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
}

.event-filter-item input,
.event-filter-item select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  color: var(--text);
  padding: 0.62rem 0.78rem;
}

.event-feed-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(30, 137, 200, 0.14);
  color: var(--brand-dark);
  font-weight: 700;
}

.event-feed-list {
  display: grid;
  gap: 0.85rem;
  min-height: 70vh;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 1.45rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(2px);
}

.event-feed-list::-webkit-scrollbar {
  width: 0.72rem;
}

.event-feed-list::-webkit-scrollbar-thumb {
  background: rgba(30, 137, 200, 0.28);
  border-radius: 999px;
}

.event-feed-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #ffffff, #f9fbfe);
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(17, 110, 167, 0.08);
}

.event-feed-card--empty .event-feed-card-main {
  grid-template-columns: 1fr;
}

.event-feed-card--empty .event-feed-content {
  grid-template-columns: 1fr;
}

.event-feed-empty-title {
  white-space: nowrap;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  margin-bottom: 0.45rem;
}

.event-feed-empty-copy {
  max-width: 42ch;
  line-height: 1.45;
}

.event-feed-card-main {
  display: grid;
  grid-template-columns: 7.4rem 1fr;
  gap: 1rem;
  padding: 1rem;
}

.event-feed-poster {
  min-height: 10rem;
  border-radius: 1.2rem;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0.9rem;
  color: #fff;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.event-feed-poster span {
  display: block;
  max-width: 100%;
  font-size: 1.15rem;
  text-wrap: balance;
}

.event-feed-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.95rem;
  display: block;
  box-shadow: 0 10px 20px rgba(6, 24, 44, 0.2);
}

.event-feed-poster--magenta {
  background: linear-gradient(145deg, #e14fab, #7a2966 68%, #3e1837);
}

.event-feed-poster--sun {
  background: linear-gradient(145deg, #ffcb4d, #ff9f2f 58%, #2e78be);
}

.event-feed-poster--violet {
  background: linear-gradient(145deg, #7f7cff, #b54de3 62%, #4f2d8d);
}

.event-feed-poster--blue {
  background: linear-gradient(145deg, #58b6f5, #256fcb);
}

.event-feed-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: start;
}

.event-feed-copy-block h3 {
  font-size: 1.9rem;
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.event-feed-subtitle {
  margin: 0 0 0.85rem;
  color: var(--text-soft);
}

.event-feed-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  color: var(--text-soft);
  font-weight: 600;
  margin-bottom: 0.7rem;
}

.event-feed-badge {
  display: inline-flex;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fffdf6;
  color: #9c7a10;
  font-weight: 700;
}

.event-feed-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.8rem;
  min-width: 15rem;
}

.event-feed-availability {
  margin: 0;
  color: var(--text-soft);
  font-weight: 600;
  text-align: right;
}

.event-feed-dates {
  border-top: 1px solid var(--line);
}

.event-feed-date-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1rem;
}

.event-feed-date-row + .event-feed-date-row {
  border-top: 1px solid rgba(214, 228, 239, 0.8);
}

.event-feed-date-row strong {
  display: block;
  margin-bottom: 0.15rem;
}

.event-feed-date-row p {
  margin: 0;
  color: var(--text-soft);
}

.event-feed-ticket {
  color: var(--brand);
  font-weight: 800;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .event-feed-filters {
    grid-template-columns: 1fr;
  }

  .event-feed-head,
  .event-feed-content,
  .event-feed-date-row {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .event-feed-actions {
    align-items: flex-start;
    min-width: 0;
  }
}

@media (max-width: 720px) {
  .event-feed-card-main {
    grid-template-columns: 1fr;
  }

  .event-feed-poster {
    min-height: 8.6rem;
  }

  .event-feed-copy-block h3 {
    font-size: 1.45rem;
  }

  .event-feed-list {
    max-height: 58rem;
  }
}

.live-pill,
.player-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.live-pill {
  background: rgba(255, 255, 255, 0.12);
  color: var(--text-on-dark);
}

.player-badge {
  background: #efefef;
  color: var(--text);
}

.live-pill.is-live,
.player-badge.is-live {
  background: var(--success);
  color: #153900;
}

.player-panel {
  display: grid;
  gap: 0.65rem;
  padding: 1rem 1rem 1.1rem;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(30, 137, 200, 0.12), transparent 24%),
    linear-gradient(180deg, #ffffff, #f8fbfd);
}

.player-panel--dock {
  position: fixed;
  left: 50%;
  bottom: 0.3rem;
  transform: translateX(-50%);
  width: 100%;
  max-width: none;
  height: auto;
  margin: 0;
  z-index: 50;
  box-shadow: 0 18px 38px rgba(12, 55, 92, 0.22);
}


body[data-page="admin"] .player-panel--dock {
  display: none;
}

body[data-page="admin"] {
  padding-bottom: 0;
}

.player-panel--dock .player-head {
  display: none;
}

.player-panel--dock .player-main {
  grid-template-columns: minmax(0, 1.6fr) minmax(14.6rem, 0.86fr);
  gap: 0.06rem;
  align-items: stretch;
}

.player-panel--dock .player-now {
  padding: 0.01rem 0.1rem;
}

.player-panel--dock .player-artwork {
  width: 2.6rem;
  border-radius: 0.8rem;
}

.player-panel--dock .player-track-copy strong {
  font-size: 1.1rem;
}

.player-panel--dock .player-live-label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(11, 60, 102, 0.72);
  margin-bottom: 0.1rem;
}

.player-panel--dock .player-track-copy p {
  font-size: 0.917rem;
}

.player-panel--dock .player-controls-panel {
  padding: 0.04rem 0.2rem;
  gap: 0.12rem 0.35rem;
  align-items: center;
}

.player-panel--dock .player-links {
  display: none;
}

.player-panel--dock .player-live-label {
  display: none;
}

.player-panel--dock .player-icon-button {
  width: 2.45rem;
  min-width: 2.45rem;
  height: 2.45rem;
  min-height: 2.45rem;
}

.player-panel--dock .player-links .button {
  padding: 0.4rem 0.65rem;
}

.hero-grid > .player-panel {
  grid-column: 2 / 4;
}

.hero-side-grid {
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body[data-page="home"] .hero-grid > .player-panel {
  grid-column: auto;
  align-self: center;
  margin-top: -0.8rem;
}

body[data-page="home"] .hero-side-grid {
  grid-column: auto;
  grid-template-columns: 1fr;
  align-content: start;
}

body[data-page="home"] .hero-top-votes-block {
  padding-top: 0.35rem;
}

.player-dock {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.player-dock-spacer {
  height: 0;
}

.tiktok-feed-section {
  overflow: hidden;
}

.tiktok-feed-shell {
  display: grid;
  gap: 1rem;
  align-items: stretch;
  padding: 1.4rem;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(30, 137, 200, 0.12), transparent 24%),
    linear-gradient(180deg, #ffffff, #f8fbfd);
}

.tiktok-feed-head {
  display: grid;
  gap: 0.3rem;
}

.tiktok-feed-head h2 {
  margin: 0.16rem 0 0;
  font-size: clamp(2rem, 4.2vw, 3.55rem);
  line-height: 0.96;
  color: var(--text-strong);
  max-width: none;
  white-space: nowrap;
}

.tiktok-feed-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.tiktok-feed-main.is-embed-only {
  gap: 0;
}

.tiktok-feed-copy {
  display: grid;
  align-content: start;
}

.tiktok-feed-copy .section-copy {
  max-width: 56rem;
  margin-top: 0;
  font-size: 1rem;
  line-height: 1.68;
  color: var(--text-soft);
}

.tiktok-feed-actions {
  display: none;
}

.tiktok-feed-handle {
  display: none;
}

.tiktok-feed-embed-card {
  justify-self: stretch;
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top right, rgba(30, 137, 200, 0.08), transparent 22%),
    linear-gradient(180deg, #f7fbfe, #edf6fc);
  box-shadow: none;
  padding: 0.9rem 0.9rem 0.45rem;
  min-height: 22.2rem;
  overflow: hidden;
}

.tiktok-feed-embed-card .tiktok-embed {
  margin: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  min-height: 20rem;
  border-radius: calc(var(--radius-lg) - 6px);
  overflow: hidden;
}

.tiktok-feed-embed-card section,
.tiktok-feed-embed-card a {
  color: var(--text);
}

.player-head h2 {
  margin: 0.08rem 0 0;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1;
}

.player-main {
  display: grid;
  grid-template-columns: minmax(0, 1.58fr) minmax(16.2rem, 0.88fr);
  gap: 0.75rem;
  align-items: stretch;
}

.player-now {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 0.85rem;
  min-height: 100%;
  padding: 0.82rem 0.95rem;
  border-radius: var(--radius-lg);
  background: var(--bg-soft);
}

.player-artwork {
  position: relative;
  width: 4.7rem;
  aspect-ratio: 1;
  border-radius: 1rem;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(145deg, rgba(17, 110, 167, 0.18), rgba(30, 137, 200, 0.08));
  border: 1px solid rgba(17, 110, 167, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.player-artwork img,
.player-artwork-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.player-artwork img {
  display: block;
  object-fit: cover;
}

.player-artwork-fallback {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.22), transparent 48%),
    linear-gradient(160deg, #244370, #132744 70%, #0e1b31);
  color: #ffffff;
}

.player-artwork-fallback span {
  font-family: var(--display-font);
  font-size: 1.6rem;
  letter-spacing: 0.08em;
}

.player-artwork.has-image .player-artwork-fallback {
  display: none;
}

.player-track-copy {
  min-width: 0;
}

.player-track-line {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
  font-size: 1.02rem;
  font-weight: 400;
  font-family: inherit;
}

.player-track-title {
  flex: 1;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
  font-size: 1em;
  color: var(--text);
  opacity: 0.9;
  font-weight: inherit;
  font-family: inherit;
  min-width: 0;
}

.player-track-copy strong {
  font-size: 1.75em;
  font-weight: 700;
  font-family: inherit;
}

.player-track-sep {
  font-size: 1em;
  color: var(--text);
  opacity: 0.65;
  font-weight: inherit;
  font-family: inherit;
}

.player-panel--dock .field-volume {
  grid-template-columns: auto 6rem;
  justify-self: start;
  margin-right: 2.2rem;
}

.player-track-title-text {
  display: inline-block;
  min-width: max-content;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
  transform: translateX(0);
}

.player-track-title.is-marquee .player-track-title-text {
  padding-left: 100%;
  animation: player-title-marquee 30s linear infinite;
}

@keyframes player-title-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.player-controls-panel {
  display: grid;
  grid-template-columns: auto minmax(16rem, 1fr);
  align-items: start;
  gap: 0.8rem 1rem;
  padding: 0.82rem 0.95rem 0.9rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #f7fbfe, #edf6fc);
  border: 1px solid var(--line);
  max-width: 28rem;
  margin-left: auto;
}

.player-controls-panel .field {
  min-width: 0;
}

.player-actions--compact {
  display: flex;
  gap: 0.55rem;
  align-items: center;
}

.player-icon-button {
  --button-angle: 0deg;
  width: 3.55rem;
  min-width: 3.55rem;
  height: 3.55rem;
  min-height: 3.55rem;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 999px;
  background:
    linear-gradient(145deg, rgba(25, 45, 73, 0.9), rgba(18, 83, 134, 0.94)) padding-box,
    conic-gradient(from var(--button-angle, 0deg), #00ccff, transparent 28%, #d400d4, transparent 68%, #00ccff) border-box;
  color: #ffffff;
  box-shadow:
    inset 0 0 16px rgba(0, 204, 255, 0.12),
    0 10px 20px rgba(18, 74, 123, 0.14),
    0 0 16px rgba(0, 204, 255, 0.16),
    0 0 20px rgba(212, 0, 212, 0.1);
  animation: cyber-button-ring 5.6s linear infinite;
  display: inline-grid;
  place-items: center;
}

.player-icon-button:hover,
.player-icon-button:focus-visible {
  box-shadow:
    inset 0 0 20px rgba(0, 204, 255, 0.16),
    0 14px 24px rgba(18, 74, 123, 0.18),
    0 0 24px rgba(0, 204, 255, 0.32),
    0 0 26px rgba(212, 0, 212, 0.16);
  filter: saturate(1.08);
}

.player-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.38rem;
  line-height: 1;
  font-weight: 700;
  color: currentColor;
}

.player-icon svg {
  display: block;
  width: 1em;
  height: 1em;
}

#playButton .player-icon {
  font-size: 1.82rem;
  transform: translateX(0.08rem);
}

#playButton[data-state="pause"] .player-icon {
  font-size: 1.48rem;
  transform: none;
}

#stopButton .player-icon {
  font-size: 1.52rem;
  transform: translateY(-0.01rem);
}

.field-volume {
  align-self: center;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}

.field-volume .volume-icon {
  width: 1.7rem;
  height: 1.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(11, 60, 102, 0.72);
}

.field-volume .volume-icon svg {
  width: 100%;
  height: 100%;
}

.player-links {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  padding-top: 0.05rem;
}

.player-links .button {
  min-width: 0;
  padding: 0.72rem 1.02rem;
  border-radius: 999px;
}

.player-actions .button-brand {
  background:
    linear-gradient(145deg, rgba(25, 45, 73, 0.9), rgba(18, 83, 134, 0.94)) padding-box,
    conic-gradient(from var(--button-angle, 0deg), #00ccff, transparent 28%, #d400d4, transparent 68%, #00ccff) border-box;
  border-color: transparent;
}

.player-actions .button-ghost-dark {
  background:
    linear-gradient(145deg, rgba(25, 45, 73, 0.9), rgba(18, 83, 134, 0.94)) padding-box,
    conic-gradient(from var(--button-angle, 0deg), #00ccff, transparent 28%, #d400d4, transparent 68%, #00ccff) border-box;
  color: #ffffff;
  border: 1px solid transparent;
}

.equalizer {
  display: flex;
  align-items: end;
  gap: 0.24rem;
  min-height: 3rem;
}

.equalizer span {
  width: 0.36rem;
  height: 0.95rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent), var(--brand));
  transform-origin: bottom;
  animation: idleBars 1.4s ease-in-out infinite;
}

.equalizer span:nth-child(2) {
  animation-delay: 0.12s;
}

.equalizer span:nth-child(3) {
  animation-delay: 0.24s;
}

.equalizer span:nth-child(4) {
  animation-delay: 0.36s;
}

.equalizer span:nth-child(5) {
  animation-delay: 0.48s;
}

body.is-playing .equalizer span {
  animation: activeBars 0.85s ease-in-out infinite;
}

.muted-copy {
  margin: 0.4rem 0 0;
  color: var(--text-soft);
}

#playerShowTitle {
  display: block;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.06;
  text-wrap: balance;
  overflow-wrap: break-word;
}

#playerShowMeta {
  font-size: clamp(0.94rem, 1.18vw, 1.02rem);
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.field {
  display: grid;
  gap: 0.45rem;
  color: var(--text-soft);
  font-size: 0.94rem;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
}

body[data-hero-align="center"] .hero-panel-primary {
  text-align: center;
}

body[data-hero-align="center"] .hero-heading-row,
body[data-hero-align="center"] .hero-actions {
  justify-content: center;
}

body[data-hero-align="center"] .hero-heading-row h1,
body[data-hero-align="center"] .hero-copy {
  margin-inline: auto;
}

body[data-player-align="center"] .player-panel {
  text-align: center;
}

body[data-player-align="center"] .player-head,
body[data-player-align="center"] .player-actions {
  justify-content: center;
}

body[data-player-align="center"] .player-main {
  grid-template-columns: 1fr;
}

body[data-player-align="center"] .player-now {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}

body[data-player-align="center"] .player-controls-panel {
  justify-items: center;
  max-width: 28rem;
  margin-left: auto;
  justify-self: end;
}

body[data-player-align="center"] .player-links {
  grid-column: 1 / -1;
  justify-content: center;
}

body[data-player-align="center"] .equalizer {
  justify-content: center;
}

.field input[type="range"] {
  padding: 0;
  accent-color: var(--brand);
  border: 0;
  border-radius: 0;
  background: transparent;
  min-height: 1.35rem;
  height: 1.35rem;
  touch-action: pan-x;
}

.field input[type="range"]:disabled,
.field input[type="range"].is-volume-locked {
  opacity: 0.55;
  cursor: not-allowed;
}

.status-text,
.status-subtle {
  margin: 0;
}

.status-text {
  margin-top: 1rem;
  font-weight: 700;
}

.status-subtle {
  margin-top: 0.35rem;
  color: var(--text-soft);
}

.hero-side-grid,
.card-grid,
.host-grid,
.ticker-grid,
.stack-grid,
.schedule-grid {
  display: grid;
  gap: var(--grid-gap);
}

.hero-side-grid {
  align-content: start;
}

.hero-card {
  min-height: 11.5rem;
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.82)),
    linear-gradient(135deg, #363636, #111111);
  color: var(--text-on-dark);
  display: flex;
  flex-direction: column;
  justify-content: end;
  box-shadow: var(--shadow);
}

.hero-card h3,
.content-card h3,
.host-card h3,
.schedule-card h3,
.newsletter-card h2,
.contact-form-card h2,
.editor-card h2,
.editor-preview-card h2,
.social-showcase h2 {
  margin: 0.85rem 0 0;
}

.hero-card p {
  margin: 0.55rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.hero-card-cta,
.content-card.dark .card-cta {
  color: #ffffff;
}

.hero-chip {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.12);
}

.ticker-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 1rem 0 0;
}

.ticker-card {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
}

.content-block {
  padding-top: var(--section-spacing);
}

.subpage-back-nav {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 0.55rem;
}

body[data-page="artists"] .subpage-back-nav,
body[data-page="custom"][data-custom-page="hoerer-service"] .subpage-back-nav,
body[data-page="custom"][data-custom-page="werbung-partner"] .subpage-back-nav {
  margin-top: 1rem;
}

.consent-trigger {
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text-soft);
  font: inherit;
  cursor: pointer;
}

.consent-trigger:hover,
.consent-trigger:focus-visible {
  color: var(--brand-dark);
  text-decoration: underline;
  transform: none;
}

.consent-trigger.footer-link-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: auto;
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  color: var(--text-soft);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.1;
  text-decoration: none;
  box-shadow: none;
}

.consent-trigger.footer-link-pill:hover,
.consent-trigger.footer-link-pill:focus-visible {
  color: var(--brand-dark);
  background: transparent;
  border-color: transparent;
  text-decoration: underline;
}

.footer-pill-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  color: var(--text-soft);
}

.footer-pill-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.custom-section {
  padding-top: 0;
}

.custom-section-shell {
  display: grid;
  gap: 1.2rem;
  padding: var(--card-padding);
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff, #f8fbfd);
  box-shadow: var(--shadow-soft);
}

.custom-section.is-dark .custom-section-shell {
  background: linear-gradient(135deg, var(--partner-surface-start), var(--partner-surface-end));
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--text-on-dark);
}

.custom-section.is-dark .section-copy,
.custom-section.is-dark .custom-section-meta {
  color: rgba(255, 255, 255, 0.74);
}

.custom-section-split .custom-section-shell {
  grid-template-columns: minmax(220px, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
}

.custom-section-compact .custom-section-shell {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

.custom-section-copy {
  display: grid;
  gap: 0.85rem;
}

.custom-section-copy h2,
.custom-section-copy .section-copy {
  margin: 0;
}

.custom-section-media {
  overflow: hidden;
  border-radius: calc(var(--radius-xl) - 6px);
  min-height: 14rem;
  background: linear-gradient(180deg, #eef6fc, #dcecf8);
}

.custom-section-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.custom-section-meta {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.custom-section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.15rem;
}

.custom-section-actions .button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(18, 102, 166, 0.24);
  animation: cta-button-float 3.6s ease-in-out infinite;
}

.custom-section-actions .button::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  border: 2px solid rgba(176, 235, 255, 0.92);
  opacity: 0;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.32),
    0 0 12px rgba(152, 231, 255, 0.68),
    0 0 24px rgba(101, 209, 255, 0.5);
  z-index: 2;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.custom-section-actions .button::after {
  content: "";
  position: absolute;
  top: -140%;
  left: -52%;
  width: 40%;
  height: 380%;
  transform: rotate(18deg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0));
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.custom-section-actions .button:hover,
.custom-section-actions .button:focus-visible {
  transform: translateY(-3px) scale(1.03);
  box-shadow:
    0 18px 32px rgba(18, 102, 166, 0.3),
    0 0 0 1px rgba(188, 238, 255, 0.42);
}

.custom-section-actions .button:hover::before,
.custom-section-actions .button:focus-visible::before {
  opacity: 1;
  animation: cta-border-pulse 1.2s ease-in-out infinite;
}

.custom-section-actions .button:hover::after,
.custom-section-actions .button:focus-visible::after {
  opacity: 0.52;
  animation: cta-button-sheen 1.35s ease-out 1;
}

@keyframes cta-button-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-2px);
  }
}

@keyframes cta-button-glow {
  0%,
  100% {
    opacity: 0.34;
    transform: scale(1);
  }

  45% {
    opacity: 0.8;
    transform: scale(1.12);
  }
}
@keyframes cta-border-pulse {
  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.28),
      0 0 10px rgba(152, 231, 255, 0.62),
      0 0 20px rgba(101, 209, 255, 0.46);
  }

  50% {
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.46),
      0 0 16px rgba(152, 231, 255, 0.86),
      0 0 30px rgba(101, 209, 255, 0.7);
  }
}

@keyframes cta-button-sheen {
  0%,
  100% {
    transform: translateX(-170%) rotate(18deg);
    opacity: 0;
  }

  42% {
    opacity: 0.38;
  }

  56% {
    transform: translateX(330%) rotate(18deg);
    opacity: 0;
  }
}

.section-head {
  margin-bottom: 1.35rem;
}

.section-head h2,
.newsletter-card h2,
.contact-form-card h2,
.editor-card h2,
.editor-preview-card h2,
.social-showcase h2 {
  margin: 0.35rem 0 0;
  font-size: clamp(1.85rem, 3.4vw, 3rem);
  line-height: 1;
}

.section-copy {
  max-width: 34rem;
  margin: 0;
  color: var(--text-soft);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.8fr);
  gap: var(--grid-gap);
}

.split-layout.is-single-column {
  grid-template-columns: 1fr;
}

.about-main-stack,
.form-stack {
  display: grid;
  gap: 1rem;
}

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

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

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

.content-card {
  padding: var(--card-padding);
  border-radius: var(--radius-lg);
}

.content-card-link,
.hero-card-link {
  display: block;
}

.card-media,
.hero-card-media {
  margin-bottom: 1rem;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) - 4px);
  background: var(--bg-soft);
}

.card-media img,
.hero-card-media img {
  width: 100%;
  min-height: 12rem;
  object-fit: cover;
}

body[data-page="empfang"] #receptionPlatformGrid .card-media {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 5.25rem;
  padding: 0.9rem 1rem;
  background: linear-gradient(180deg, rgba(243, 248, 255, 0.96), rgba(234, 243, 255, 0.9));
}

body[data-page="empfang"] #receptionPlatformGrid .card-media img {
  width: auto;
  max-width: min(16rem, 100%);
  min-height: 0;
  max-height: 2.8rem;
  object-fit: contain;
  transform: translateY(0) scale(1);
  filter: drop-shadow(0 6px 12px rgba(12, 67, 117, 0.08));
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), filter 260ms ease;
}

body[data-page="empfang"] #receptionPlatformGrid .content-card {
  padding: 1.35rem;
}

body[data-page="empfang"] #receptionPlatformGrid .content-card h3 {
  margin-bottom: 0.45rem;
}

body[data-page="empfang"] #receptionPlatformGrid .content-card p {
  margin-bottom: 0.85rem;
  max-width: 28rem;
  color: var(--text-soft);
}

body[data-page="empfang"] #receptionPlatformGrid .card-cta {
  margin-top: 0.2rem;
}

body[data-page="empfang"] #receptionPlatformGrid {
  gap: 1.4rem;
}

body[data-page="empfang"] #receptionPlatformGrid .content-card-link {
  transition: transform 180ms ease;
}

body[data-page="empfang"] #receptionPlatformGrid .content-card-link:hover .content-card,
body[data-page="empfang"] #receptionPlatformGrid .content-card-link:focus-visible .content-card {
  transform: translateY(-8px);
  box-shadow: 0 22px 38px rgba(11, 56, 95, 0.22);
}

body[data-page="empfang"] #receptionPlatformGrid .content-card-link:hover .card-media img,
body[data-page="empfang"] #receptionPlatformGrid .content-card-link:focus-visible .card-media img {
  transform: translateY(-2px) scale(1.045);
  filter: drop-shadow(0 10px 18px rgba(12, 67, 117, 0.22));
}

.reception-logo-link {
  display: block;
}

.reception-logo-link.is-static {
  cursor: default;
}

.reception-logo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 11.5rem;
  padding: 1.4rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  transition:
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 260ms ease,
    border-color 260ms ease;
}

.reception-logo-link:hover .reception-logo-card,
.reception-logo-link:focus-visible .reception-logo-card {
  transform: translateY(-8px);
  border-color: rgba(30, 137, 200, 0.28);
  box-shadow: 0 26px 46px rgba(17, 31, 48, 0.2);
}

.reception-logo-media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 7.8rem;
  padding: 1.2rem;
  border-radius: calc(var(--radius-lg) - 4px);
  background: linear-gradient(180deg, rgba(243, 248, 255, 0.96), rgba(234, 243, 255, 0.9));
}

.reception-logo-media img {
  width: auto;
  max-width: min(16rem, 100%);
  max-height: 3.8rem;
  object-fit: contain;
  transform: translateY(0) scale(1);
  filter: drop-shadow(0 6px 12px rgba(12, 67, 117, 0.08));
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), filter 260ms ease;
}

.reception-logo-link:hover .reception-logo-media img,
.reception-logo-link:focus-visible .reception-logo-media img {
  transform: translateY(-3px) scale(1.05);
  filter: drop-shadow(0 10px 18px rgba(12, 67, 117, 0.22));
}

.reception-logo-card.has-caption .reception-logo-media img {
  max-height: 4.4rem;
}

.reception-logo-caption {
  margin: 1rem 0 0;
  text-align: center;
  color: var(--brand-dark);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
}

.reception-logo-fallback {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--brand-dark);
}

.content-card.dark {
  background: var(--surface-alt);
  color: var(--text-on-dark);
  border-color: transparent;
}

.content-card.dark p,
.content-card.dark .card-meta {
  color: rgba(255, 255, 255, 0.76);
}

.tag-chip {
  display: inline-flex;
  width: fit-content;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.content-card.dark .tag-chip,
.rail-panel .tag-chip {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.content-card h3,
.host-card h3 {
  font-size: 1.35rem;
  line-height: 1.08;
}

.content-card p,
.host-card p {
  margin: 0.6rem 0 0;
  color: var(--text-soft);
}

.card-meta {
  margin-top: 1rem;
  color: var(--text-muted);
}

.card-cta {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 1rem;
  color: var(--brand-dark);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.custom-section .card-cta,
.hero-card-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 0.8rem 1.35rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--brand), var(--brand-dark));
  color: #ffffff;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: none;
  box-shadow: 0 12px 24px rgba(18, 102, 166, 0.24);
  animation: cta-button-float 3.6s ease-in-out infinite;
}

.custom-section .card-cta::before,
.hero-card-cta::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  border: 2px solid rgba(176, 235, 255, 0.92);
  opacity: 0;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.32),
    0 0 12px rgba(152, 231, 255, 0.68),
    0 0 24px rgba(101, 209, 255, 0.5);
  z-index: 2;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.custom-section .card-cta::after,
.hero-card-cta::after {
  content: "";
  position: absolute;
  top: -140%;
  left: -52%;
  width: 40%;
  height: 380%;
  transform: rotate(18deg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0));
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.custom-section .card-cta:hover,
.custom-section .card-cta:focus-visible,
.hero-card-cta:hover,
.hero-card-cta:focus-visible {
  transform: translateY(-3px) scale(1.03);
  box-shadow:
    0 18px 32px rgba(18, 102, 166, 0.3),
    0 0 0 1px rgba(188, 238, 255, 0.42);
}

.custom-section .card-cta:hover::before,
.custom-section .card-cta:focus-visible::before,
.hero-card-cta:hover::before,
.hero-card-cta:focus-visible::before {
  opacity: 1;
  animation: cta-border-pulse 1.2s ease-in-out infinite;
}

.custom-section .card-cta:hover::after,
.custom-section .card-cta:focus-visible::after,
.hero-card-cta:hover::after,
.hero-card-cta:focus-visible::after {
  opacity: 0.52;
  animation: cta-button-sheen 1.35s ease-out 1;
}

.card-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.card-action-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.2rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(17, 110, 167, 0.12);
  background: rgba(17, 110, 167, 0.06);
  color: var(--brand-dark);
  font-size: 0.82rem;
  font-weight: 700;
}

.card-action-chip svg {
  width: 0.9rem;
  height: 0.9rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-action-chip .fill-dot {
  fill: currentColor;
  stroke: none;
}

.content-card.dark .card-action-chip {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.rail-panel,
.newsletter-card {
  padding: var(--card-padding);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, var(--surface-alt), var(--surface-alt-2));
  color: var(--text-on-dark);
}

.rail-panel .section-copy,
.newsletter-card .section-copy {
  color: rgba(255, 255, 255, 0.76);
}

.rail-panel .content-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--text-on-dark);
}

.rail-panel .content-card p,
.rail-panel .card-meta {
  color: rgba(255, 255, 255, 0.74);
}

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

.host-card {
  padding: var(--card-padding);
  border-radius: var(--radius-lg);
  text-align: center;
}

.host-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--brand), var(--brand-dark));
  color: var(--text-on-dark);
  font-family: var(--display-font);
  font-size: 1.4rem;
  margin-bottom: 0.9rem;
  box-shadow: 0 12px 22px rgba(30, 137, 200, 0.22);
}

.host-card strong {
  display: block;
  margin-top: 0.35rem;
  color: var(--accent);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.app-promo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1.6rem;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 24%),
    radial-gradient(circle at bottom right, rgba(219, 31, 47, 0.18), transparent 24%),
    linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: var(--text-on-dark);
}

.app-promo .section-copy {
  color: rgba(255, 255, 255, 0.78);
}

.masthead {
  padding-top: 0.35rem;
}

.masthead.masthead--eyebrow-only {
  padding-top: 0;
  padding-bottom: 0.25rem;
}

.masthead .eyebrow {
  color: #ffffff;
}

.masthead h1 {
  max-width: 11.5ch;
  line-height: 0.94;
  text-wrap: balance;
}

body[data-page="about"] .masthead h1 {
  max-width: 24ch;
  font-size: clamp(1.95rem, 2.9vw, 3.4rem);
  text-transform: none;
  letter-spacing: 0;
  line-height: 1;
}

body[data-page="empfang"] .masthead h1 {
  max-width: 22ch;
}

@media (min-width: 901px) {
  body[data-page="empfang"] .masthead h1 {
    max-width: none;
    white-space: nowrap;
    text-wrap: nowrap;
    font-size: clamp(1.9rem, 3.15vw, 3.35rem);
  }
}

body[data-page="playlist"] .masthead h1 {
  max-width: none;
  white-space: nowrap;
  text-wrap: nowrap;
  font-size: clamp(1.9rem, 3.05vw, 3.2rem);
}

.reception-masthead-row {
  display: block;
}

.reception-orbit {
  position: absolute;
  right: 0;
  top: 52%;
  transform: translateY(-50%);
  width: 0.95em;
  aspect-ratio: 1 / 1;
  margin-top: 0.02em;
  margin-left: 0;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(9, 43, 78, 0.14);
  flex: 0 0 auto;
}

.reception-orbit__canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.reception-orbit__svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 10px 22px rgba(9, 43, 78, 0.2));
}

.reception-orbit__sphere {
  fill: url(#receptionGlobeFill);
  stroke: rgba(233, 246, 255, 0.46);
  stroke-width: 1.2;
}

.reception-orbit__dots {
  fill: rgba(214, 240, 255, 0.78);
}

.reception-orbit__path {
  fill: none;
  stroke-linecap: round;
  stroke-width: 2.2;
  stroke-dasharray: 260;
  stroke-dashoffset: 260;
  animation: reception-path-flow 4.2s ease-in-out infinite;
}

.reception-orbit__path--a {
  stroke: rgba(255, 132, 166, 0.9);
}

.reception-orbit__path--b {
  stroke: rgba(255, 176, 132, 0.9);
  animation-delay: 0.8s;
}

.reception-orbit__node {
  fill: rgba(255, 224, 233, 0.96);
  stroke: rgba(255, 142, 173, 0.95);
  stroke-width: 1.1;
}

.reception-orbit__packet {
  position: absolute;
  width: 0.34rem;
  height: 0.34rem;
  border-radius: 999px;
  background: #ffd5e1;
  box-shadow: 0 0 8px rgba(255, 148, 181, 0.9);
}

.reception-orbit__packet--a {
  left: 12%;
  top: 72%;
  animation: reception-packet-flow-a 4.2s linear infinite;
}

.reception-orbit__packet--b {
  left: 25%;
  top: 78%;
  animation: reception-packet-flow-b 5s linear infinite 0.8s;
}

@keyframes reception-path-flow {
  0% {
    stroke-dashoffset: 260;
    opacity: 0.1;
  }
  25% {
    opacity: 1;
  }
  70% {
    opacity: 0.92;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 0.15;
  }
}

@keyframes reception-packet-flow-a {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  55% {
    transform: translate(3.5rem, -4rem);
    opacity: 1;
  }
  100% {
    transform: translate(8rem, -5.8rem);
    opacity: 0;
  }
}

@keyframes reception-packet-flow-b {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  62% {
    transform: translate(3.1rem, -3.4rem);
    opacity: 1;
  }
  100% {
    transform: translate(6.4rem, -4.3rem);
    opacity: 0;
  }
}

.reception-orbit__globe {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 28% 30%, rgba(255, 255, 255, 0.32) 0 16%, transparent 40%),
    radial-gradient(circle at 70% 68%, rgba(255, 255, 255, 0.14) 0 12%, transparent 38%),
    radial-gradient(circle at 36% 34%, rgba(125, 198, 255, 0.28), transparent 52%),
    radial-gradient(circle at center, rgba(59, 137, 206, 0.68), rgba(20, 94, 160, 0.4));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.34),
    0 10px 22px rgba(10, 52, 92, 0.2);
}

.reception-orbit__latitude,
.reception-orbit__longitude {
  position: absolute;
  border: 1px solid rgba(205, 233, 255, 0.38);
  border-radius: 50%;
}

.reception-orbit__latitude--a {
  inset: 26% 8% 26%;
}

.reception-orbit__latitude--b {
  inset: 39% 12% 39%;
}

.reception-orbit__longitude--a {
  inset: 8% 33%;
}

.reception-orbit__longitude--b {
  inset: 8% 46%;
}

.reception-orbit__land {
  position: absolute;
  background: rgba(152, 226, 168, 0.65);
  filter: saturate(1.1);
}

.reception-orbit__land--eu {
  width: 1.9rem;
  height: 1.25rem;
  right: 2.3rem;
  top: 2.25rem;
  border-radius: 50% 45% 55% 45%;
}

.reception-orbit__land--na {
  width: 1.7rem;
  height: 1.15rem;
  left: 1.8rem;
  top: 2.7rem;
  border-radius: 45% 58% 40% 55%;
}

.reception-orbit__land--sa {
  width: 1rem;
  height: 1.55rem;
  left: 2.5rem;
  top: 4.15rem;
  border-radius: 48% 52% 58% 42%;
}

.reception-orbit__stream {
  position: absolute;
  border: 2px solid transparent;
  border-top-color: rgba(255, 155, 180, 0.95);
  border-radius: 50%;
  opacity: 0.95;
}

.reception-orbit__stream--a {
  inset: 4% 7% 30% 7%;
  transform: rotate(-9deg);
}

.reception-orbit__stream--b {
  inset: 20% 16% 20% 16%;
  transform: rotate(18deg);
  border-top-color: rgba(140, 204, 255, 0.92);
}

.reception-orbit__stream--c {
  inset: 30% 5% 6% 16%;
  transform: rotate(-26deg);
  border-top-color: rgba(255, 184, 133, 0.92);
}

.reception-orbit__node,
.reception-orbit__packet {
  position: absolute;
  border-radius: 999px;
}

.reception-orbit__node {
  width: 0.58rem;
  height: 0.58rem;
  background: #fff2f6;
  box-shadow: 0 0 0 4px rgba(255, 133, 164, 0.2);
}

.reception-orbit__node--eu {
  right: 2.35rem;
  top: 2.35rem;
}

.reception-orbit__node--na {
  left: 1.95rem;
  top: 2.9rem;
}

.reception-orbit__node--sa {
  left: 2.75rem;
  top: 4.75rem;
}

.reception-orbit__packet {
  width: 0.36rem;
  height: 0.36rem;
  background: #ffd7e2;
  box-shadow: 0 0 10px rgba(255, 154, 186, 0.85);
}

.reception-orbit__packet--a {
  animation: reception-packet-a 3.8s linear infinite;
}

.reception-orbit__packet--b {
  animation: reception-packet-b 4.5s linear infinite 0.7s;
}

.reception-orbit__packet--c {
  animation: reception-packet-c 4.9s linear infinite 0.2s;
}

@keyframes reception-packet-a {
  0% { left: 22%; top: 32%; opacity: 0; }
  10% { opacity: 1; }
  55% { left: 60%; top: 20%; opacity: 1; }
  100% { left: 82%; top: 14%; opacity: 0; }
}

@keyframes reception-packet-b {
  0% { left: 26%; top: 50%; opacity: 0; }
  12% { opacity: 1; }
  56% { left: 52%; top: 36%; opacity: 1; }
  100% { left: 72%; top: 25%; opacity: 0; }
}

@keyframes reception-packet-c {
  0% { left: 30%; top: 64%; opacity: 0; }
  14% { opacity: 1; }
  60% { left: 52%; top: 56%; opacity: 1; }
  100% { left: 74%; top: 50%; opacity: 0; }
}

@keyframes reception-orbit-pulse {
  0%, 100% { transform: scale(1); opacity: 0.95; }
  50% { transform: scale(1.2); opacity: 0.7; }
}

@media (max-width: 980px) {
  body[data-page="playlist"] .masthead h1 {
    white-space: normal;
    text-wrap: balance;
  }

  .reception-orbit {
    width: 0.95em;
    margin-top: 0.02em;
    margin-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reception-orbit__packet,
  .reception-orbit__node,
  .reception-orbit__path {
    animation: none;
  }
}

body[data-page="kontakt"] .masthead h1 {
  max-width: none;
}

body[data-page="artists"] .masthead h1 {
  max-width: 24ch;
}

body[data-page="artists"] .masthead h1 .line {
  display: block;
}

body[data-page="custom"][data-custom-page="hoerer-service"] .masthead h1 {
  max-width: 22ch;
}

body[data-page="custom"][data-custom-page="hoerer-service"] .masthead h1 .line {
  display: block;
}

body[data-page="custom"][data-custom-page="werbung-partner"] .masthead h1 {
  max-width: 22ch;
}

body[data-page="custom"][data-custom-page="werbung-partner"] .masthead h1 .line {
  display: block;
}

body[data-page="songrequest"] .masthead h1 {
  max-width: 22ch;
  font-size: clamp(1.85rem, 2.45vw, 2.9rem);
  line-height: 0.99;
  margin: 0.45rem 0 0;
}

body[data-page="songrequest"] .masthead h1 .line {
  display: block;
}

body[data-page="songrequest"] .masthead h1 .line:first-child,
body[data-page="songrequest"] .masthead h1 .line:nth-child(2),
body[data-page="songrequest"] .masthead h1 .line:nth-child(3) {
  display: block;
  white-space: nowrap !important;
}

body[data-page="songrequest"] #songRequestLead {
  max-width: 46ch;
  margin-top: 1.85rem;
}

body[data-page="news"] .masthead h1.news-intro-title {
  max-width: none;
  font-size: clamp(2.4rem, 3.6vw, 4.1rem);
  line-height: 0.94;
}

body[data-page="news"] .masthead h1.news-intro-title .line {
  display: block;
  white-space: nowrap;
}

.masthead-copy {
  max-width: 58ch;
  margin: 1rem 0 0;
  color: rgba(12, 34, 56, 0.9);
  font-weight: 500;
}

.masthead-copy:empty {
  display: none;
}

.songrequest-broadcast-note {
  margin-top: 1.25rem;
  font-size: 0.96em;
}

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

.schedule-card {
  padding: 1.25rem;
  border-radius: var(--radius-lg);
}

.schedule-card.is-active {
  border-color: var(--brand-dark);
}

.schedule-slot {
  padding: 0.9rem 0.95rem;
  border-radius: 14px;
  border: 1px solid transparent;
  background: var(--bg-soft);
}

.schedule-slot.is-current {
  border-color: rgba(30, 137, 200, 0.35);
  background: var(--brand-soft);
}

.schedule-slot time {
  display: block;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.schedule-slot strong {
  display: block;
  margin-top: 0.4rem;
}

.schedule-slot span {
  display: block;
  margin-top: 0.25rem;
  color: var(--text-soft);
}

.stream-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.8fr);
  gap: 1rem;
}

body[data-page="empfang"] .stream-layout {
  grid-template-columns: minmax(0, 1fr);
}

body[data-page="empfang"] #receptionPlatformGrid {
  align-items: stretch;
}

body[data-page="empfang"] .content-block[data-module-id="empfang-platforms"] {
  margin-bottom: 2rem;
}

.playlist-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.25fr);
  gap: 1rem;
}

.playlist-live-card,
.playlist-history-card {
  padding: 1.35rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.playlist-live-card {
  background:
    radial-gradient(circle at top right, rgba(30, 137, 200, 0.16), transparent 24%),
    linear-gradient(135deg, #f6fbff, #edf6fc);
}

.playlist-live-card h3,
.playlist-history-card h3 {
  margin: 0.45rem 0 0;
  font-size: clamp(1.6rem, 2.4vw, 2.3rem);
  line-height: 0.98;
}

.playlist-live-title {
  margin: 1rem 0 0;
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--text-soft);
}

.playlist-note {
  margin: 1rem 0 0;
  color: var(--text-soft);
  line-height: 1.65;
}

.playlist-history-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.playlist-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.playlist-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.playlist-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 0.95rem;
  border-radius: 18px;
  background: var(--bg-soft);
  border: 1px solid rgba(17, 110, 167, 0.08);
}

.playlist-position {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--brand), var(--brand-dark));
  color: var(--text-on-dark);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

.playlist-copy {
  min-width: 0;
}

.playlist-copy strong {
  display: block;
  font-size: 1rem;
  line-height: 1.2;
}

.playlist-copy p {
  margin: 0.3rem 0 0;
  color: var(--text-soft);
  line-height: 1.45;
}

.playlist-item time {
  color: var(--text-muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.playlist-link-button {
  margin-top: 1rem;
  width: fit-content;
}

.playlist-explorer-shell,
.playlist-results-shell {
  padding: 1.6rem;
}

.playlist-page-shell {
  display: grid;
  grid-template-columns: minmax(21rem, 25rem) minmax(0, 1fr);
  gap: 1.35rem;
  align-items: start;
  padding-bottom: 7.5rem;
}

.playlist-page-shell .masthead {
  grid-column: 1 / -1;
}

:root {
  --playlist-card-height: 40rem;
  --playlist-scroll-height: 31rem;
}

.playlist-explorer-shell {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  min-height: 0;
  height: auto;
  max-height: none;
  overflow: visible;
  position: static;
  top: auto;
}

.playlist-results-shell {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  min-height: 0;
  height: auto;
  max-height: none;
  overflow: visible;
  position: static;
  top: auto;
}

.playlist-calendar-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.1fr);
  gap: 1rem;
  margin-top: 1.25rem;
  min-height: 0;
}

.playlist-calendar-layout.is-hours-only {
  grid-template-columns: minmax(0, 1fr);
  margin-top: 0;
  min-height: 100%;
}

.playlist-calendar-column {
  display: grid;
  gap: 1rem;
  min-height: 0;
}

.playlist-calendar-panel,
.playlist-month-card {
  border-radius: 26px;
  border: 1px solid rgba(17, 110, 167, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 249, 255, 0.94));
  box-shadow: 0 10px 24px rgba(17, 31, 48, 0.04);
}

.playlist-calendar-panel {
  min-height: 0;
}

.playlist-month-card {
  display: grid;
  gap: 0.3rem;
  padding: 1.2rem 1.25rem;
  background:
    radial-gradient(circle at top right, rgba(30, 137, 200, 0.18), transparent 40%),
    linear-gradient(135deg, #f4fbff, #edf5fc);
}

.playlist-month-label,
.playlist-inline-label {
  margin: 0;
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.playlist-month-card strong {
  font-size: 1.55rem;
  line-height: 1.05;
  text-transform: capitalize;
}

.playlist-month-card span,
.playlist-inline-copy {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.5;
}

.playlist-calendar-panel {
  padding: 1rem;
}

.playlist-hour-panel {
  min-height: 100%;
  height: 100%;
  max-height: none;
  overflow: hidden;
}

.playlist-inline-head {
  display: grid;
  gap: 0.18rem;
  margin-bottom: 0.8rem;
}

.playlist-day-calendar {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.playlist-day-button,
.playlist-hour-button {
  appearance: none;
  width: 100%;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.playlist-day-button {
  display: grid;
  gap: 0.2rem;
  justify-items: center;
  padding: 0.8rem;
  border-radius: 18px;
  box-shadow: var(--shadow);
  min-height: 3.2rem;
}

.playlist-day-weekday {
  color: var(--text-soft);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.playlist-day-button.is-active,
.playlist-hour-button.is-active,
.playlist-day-button:hover,
.playlist-hour-button:hover {
  border-color: rgba(17, 110, 167, 0.28);
  box-shadow: 0 18px 36px rgba(17, 110, 167, 0.12);
  transform: translateY(-1px);
}

.playlist-day-button.is-active {
  background:
    radial-gradient(circle at top right, rgba(30, 137, 200, 0.18), transparent 34%),
    linear-gradient(135deg, #f5fbff, #eef6fc);
  color: var(--brand);
}

.playlist-hour-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
  height: min(34rem, 52vh);
  max-height: min(34rem, 52vh);
  overflow-y: auto;
  overflow-x: hidden;
  background: transparent;
  padding: 0.35rem 0.45rem 0.7rem 0.2rem;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: rgba(17, 110, 167, 0.24) transparent;
}

.playlist-hour-grid::-webkit-scrollbar {
  width: 8px;
}

.playlist-hour-grid::-webkit-scrollbar-thumb {
  background: rgba(17, 110, 167, 0.24);
  border-radius: 999px;
}

.playlist-hour-grid::-webkit-scrollbar-track {
  background: transparent;
}

.playlist-hour-button {
  display: grid;
  gap: 0.2rem;
  justify-items: start;
  padding: 0.95rem 1rem;
  border-radius: 20px;
  min-width: 0;
  text-align: left;
}

.playlist-hour-button strong {
  font-size: 1rem;
}

.playlist-hour-button span {
  color: var(--text-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.playlist-results-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
  height: min(34rem, 52vh);
  max-height: min(34rem, 52vh);
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  background: transparent;
  padding: 0.35rem 0.45rem 0.7rem 0.2rem;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: rgba(17, 110, 167, 0.24) transparent;
}

.playlist-results-list::-webkit-scrollbar {
  width: 8px;
}

.playlist-results-list::-webkit-scrollbar-thumb {
  background: rgba(17, 110, 167, 0.24);
  border-radius: 999px;
}

.playlist-results-list::-webkit-scrollbar-track {
  background: transparent;
}

.playlist-results-shell .section-head {
  padding-bottom: 0.45rem;
  border-bottom: 1px solid rgba(17, 110, 167, 0.08);
}

#playlistResultsLead {
  color: #0b1420;
  margin-top: 0.6rem;
}

.playlist-result-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 1rem 1.05rem;
  border-radius: 22px;
  border: 1px solid rgba(17, 110, 167, 0.06);
  background: var(--surface);
  box-shadow: 0 8px 18px rgba(17, 31, 48, 0.04);
  background-clip: padding-box;
}

.playlist-result-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  min-width: 0;
}

.playlist-result-media {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.9rem;
  align-items: center;
  min-width: 0;
}

.playlist-result-cover {
  width: 4.6rem;
  height: 4.6rem;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, #eff6ff, #dce9f8);
  border: 1px solid rgba(17, 110, 167, 0.1);
  flex-shrink: 0;
}

.playlist-result-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.playlist-result-cover-fallback {
  width: 100%;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.playlist-result-time {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.4rem;
  padding: 0.7rem 0.8rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--brand), var(--brand-dark));
  color: var(--text-on-dark);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.playlist-result-copy strong {
  display: block;
  font-size: 1.08rem;
  line-height: 1.2;
}

.playlist-result-copy p {
  margin: 0.28rem 0 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.5;
}

.playlist-vote-button {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-width: 5.2rem;
  justify-content: center;
  padding: 0.75rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(224, 53, 92, 0.14);
  background: rgba(255, 240, 244, 0.9);
  color: #cf2c59;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  box-shadow: 0 10px 22px rgba(224, 53, 92, 0.08);
}

.playlist-vote-button svg,
.home-top-vote-count svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.playlist-vote-button:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(224, 53, 92, 0.14);
}

.playlist-vote-button.is-liked {
  background: linear-gradient(180deg, #e0355c, #bf2347);
  color: #fff;
  border-color: transparent;
}

.playlist-vote-button.is-disabled {
  opacity: 0.72;
  cursor: default;
}

.playlist-vote-count {
  font-size: 0.92rem;
  font-weight: 800;
}

.home-top-votes-list {
  display: grid;
  gap: 0.85rem;
  max-height: 34rem;
  overflow-y: auto;
  background: transparent;
  padding: 0.35rem 0.45rem 0.7rem 0.2rem;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: rgba(17, 110, 167, 0.24) transparent;
}

body[data-page="home"] #homeTopVotesSection .section-head {
  display: block;
}

body[data-page="home"] #homeTopVotesLead {
  margin-top: 1.85rem;
  max-width: 70ch;
  color: #0b1a2b;
}

.home-top-votes-list::-webkit-scrollbar {
  width: 8px;
}

.home-top-votes-list::-webkit-scrollbar-thumb {
  background: rgba(17, 110, 167, 0.24);
  border-radius: 999px;
}

.home-top-votes-list::-webkit-scrollbar-track {
  background: transparent;
}

body[data-page="news"] .news-main-block {
  margin-bottom: 2.2rem;
}

.home-top-vote-card {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr) auto;
  gap: 0.9rem;
  align-items: center;
  padding: 1rem 1.05rem;
  border-radius: 22px;
  border: 1px solid rgba(17, 110, 167, 0.06);
  background: var(--surface);
  box-shadow: 0 8px 18px rgba(17, 31, 48, 0.04);
  background-clip: padding-box;
}

.home-top-vote-rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  padding: 0.6rem 0.7rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--brand), var(--brand-dark));
  color: var(--text-on-dark);
  font-size: 0.85rem;
  font-weight: 900;
}

.home-top-vote-cover {
  width: 3.8rem;
  height: 3.8rem;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #eff6ff, #dce9f8);
  border: 1px solid rgba(17, 110, 167, 0.1);
}

.consent-shell {
  position: fixed;
  right: 1rem;
  left: 1rem;
  bottom: 1rem;
  z-index: 120;
  display: none;
  pointer-events: none;
  opacity: 0;
}

.consent-shell.is-visible {
  display: block;
  pointer-events: auto;
  opacity: 1;
}

.consent-card {
  width: min(980px, calc(100vw - 2rem));
  margin: 0 auto;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top right, rgba(30, 137, 200, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 254, 0.99));
  box-shadow: 0 22px 48px rgba(10, 22, 40, 0.22);
  padding: 1.15rem 1.2rem 1.1rem;
}

.consent-head {
  display: grid;
  gap: 0.35rem;
}

.consent-head h2 {
  margin: 0;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  line-height: 0.98;
}

.consent-head p {
  margin: 0;
  color: var(--text-soft);
}

.consent-categories {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1rem;
}

.consent-category {
  display: grid;
  gap: 0.45rem;
  padding: 0.95rem 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
}

.consent-category-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.consent-category h3 {
  margin: 0;
  font-size: 1rem;
}

.consent-category p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.55;
}

.consent-category input[type="checkbox"] {
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--brand);
}

.consent-category.is-required {
  background: rgba(231, 245, 253, 0.72);
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
  margin-top: 1rem;
}

.home-top-vote-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-top-vote-cover-fallback {
  width: 100%;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.home-top-vote-copy {
  min-width: 0;
}

.home-top-vote-copy strong {
  display: block;
  line-height: 1.2;
}

.home-top-vote-copy p {
  margin: 0.28rem 0 0;
  color: var(--text-soft);
}

.home-top-vote-count {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.7rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 240, 244, 0.9);
  color: #cf2c59;
  font-weight: 800;
}

.playlist-empty-note {
  margin: 0;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: var(--bg-soft);
  color: #0b1420;
  line-height: 1.65;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 1rem;
}

.about-layout.is-single-column {
  grid-template-columns: minmax(0, 1fr);
  max-width: 980px;
  margin-inline: auto;
}

.about-card {
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.about-prose {
  display: grid;
  gap: 1rem;
}

.about-prose p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.75;
}

body[data-page="about"] .about-prose p {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  text-align: justify;
}

body[data-page="about"] .about-prose.is-blockschrift p {
  font-size: clamp(1.02rem, 1.55vw, 1.16rem);
  line-height: 1.75;
  font-weight: 800;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  text-align: left;
}

body[data-page="about"] .content-block[data-module-id="about-content"] {
  margin-bottom: 2.2rem;
}

.legal-section-grid {
  display: grid;
  gap: 1.4rem;
}

.legal-section {
  padding-bottom: 1.3rem;
  border-bottom: 1px solid var(--line);
}

.legal-section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.legal-section h2 {
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1;
}

.legal-copy {
  display: grid;
  gap: 0.8rem;
  margin-top: 0.8rem;
}

.legal-copy p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
}

.legal-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--text-soft);
  display: grid;
  gap: 0.55rem;
  line-height: 1.7;
}

.about-side {
  display: grid;
  gap: 1rem;
}

body[data-page="custom"] .about-layout.is-single-column .about-card {
  padding: clamp(1.6rem, 3vw, 2.4rem);
  border-radius: calc(var(--radius-xl) + 6px);
}

body[data-page="custom"] .about-layout.is-single-column .about-prose {
  gap: 1.15rem;
}

body[data-page="custom"] .about-layout.is-single-column .about-prose p {
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.85;
}

body[data-page="custom"] .about-layout.is-single-column .form-stack {
  max-width: 980px;
}

body[data-page="custom"][data-custom-page="team"] .masthead {
  margin-bottom: 0.35rem;
  display: grid;
  justify-items: center;
  text-align: center;
}

body[data-page="custom"][data-custom-page="team"] .masthead h1 {
  max-width: none;
  width: 100%;
  white-space: nowrap;
  font-size: clamp(1.85rem, 3.25vw, 3.4rem);
  margin-inline: auto;
  text-align: center;
}

body[data-page="custom"][data-custom-page="team"] .masthead .eyebrow,
body[data-page="custom"][data-custom-page="team"] #customPageLead {
  text-align: center;
  margin-inline: auto;
}

body[data-page="custom"][data-custom-page="team"] #customPageLead {
  max-width: min(50ch, 100%);
}

body[data-page="custom"][data-custom-page="team"] .about-layout.is-single-column {
  max-width: min(1260px, 100%);
}

body[data-page="custom"][data-custom-page="team"] .about-layout.is-single-column .about-card {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: clamp(0.6rem, 1.4vw, 1.1rem) 0;
  justify-items: center;
}

body[data-page="custom"][data-custom-page="team"] #customPageParagraphs {
  display: grid;
  gap: 1.15rem;
  width: min(1120px, 100%);
  margin-inline: auto;
}

.team-showcase {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}

.team-carousel-scene {
  position: relative;
  height: clamp(270px, 34vw, 360px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-carousel {
  --team-card-width: min(270px, 34vw);
  --team-side-shift: clamp(172px, 21vw, 236px);
  --team-arrow-shift: calc(var(--team-side-shift) + clamp(94px, 10vw, 126px));
  position: relative;
  width: min(980px, 100%);
  height: 100%;
  margin: 0 auto;
}

.team-carousel-nav {
  position: absolute;
  top: 50%;
  width: 2.55rem;
  height: 2.55rem;
  border: 0;
  border-radius: 0.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(160, 175, 201, 0.38);
  box-shadow: 0 8px 20px rgba(14, 27, 46, 0.14);
  backdrop-filter: blur(3px);
  cursor: pointer;
  transform: translate(-50%, -50%);
  z-index: 7;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.team-carousel-nav:hover,
.team-carousel-nav:focus-visible {
  background: rgba(135, 158, 191, 0.62);
  transform: translate(-50%, -50%) scale(1.05);
  box-shadow: 0 12px 24px rgba(14, 27, 46, 0.18);
}

.team-carousel-prev {
  left: calc(50% - var(--team-arrow-shift));
}

.team-carousel-next {
  left: calc(50% + var(--team-arrow-shift));
}

.team-profile-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--team-card-width);
  padding: 0;
  border-radius: 14px;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: transform 360ms ease, filter 360ms ease, opacity 280ms ease, box-shadow 320ms ease, z-index 0ms linear 180ms;
}

.team-profile-card::before {
  display: none;
}

.team-profile-card.is-active {
  opacity: 1;
  z-index: 4;
  transform: translate(-50%, -50%) scale(1);
  filter: none;
  box-shadow: none;
}

.team-profile-card.is-prev {
  opacity: 0.86;
  z-index: 3;
  transform: translate(calc(-50% - var(--team-side-shift)), -50%) scale(0.88);
}

.team-profile-card.is-next {
  opacity: 0.86;
  z-index: 3;
  transform: translate(calc(-50% + var(--team-side-shift)), -50%) scale(0.88);
}

.team-profile-card.is-prev .team-profile-media,
.team-profile-card.is-next .team-profile-media {
  filter: grayscale(1) saturate(0.2) brightness(0.72) blur(1.6px);
}

.team-profile-card.is-active .team-profile-media {
  filter: none;
}

.team-profile-card.is-hidden {
  opacity: 0;
  z-index: 1;
  transform: translate(-50%, -50%) scale(0.72);
  pointer-events: none;
}

.team-profile-media-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(18, 38, 63, 0.2);
  box-shadow: 0 16px 32px rgba(12, 30, 49, 0.3);
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.team-profile-media-wrap::after {
  content: none;
}

.team-profile-card.is-active .team-profile-media-wrap {
  border-color: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.2),
    0 0 16px rgba(255, 255, 255, 0.7),
    0 0 36px rgba(30, 137, 200, 0.62),
    0 18px 34px rgba(12, 30, 49, 0.34);
}

.team-profile-media {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 15%;
  transform: scale(1);
  transition: transform 420ms ease;
}

.team-profile-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(7, 16, 30, 0.06) 0%, rgba(7, 16, 30, 0.22) 68%, rgba(7, 16, 30, 0.45) 100%),
    radial-gradient(circle at 70% 12%, rgba(255, 255, 255, 0.18), transparent 34%);
}

.team-profile-name-tag {
  position: absolute;
  top: 0.78rem;
  left: 0.82rem;
  z-index: 4;
  margin: 0;
  color: #ffffff;
  font-family: var(--body-font);
  font-size: 0.98rem;
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: 0.003em;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.38);
  max-width: calc(100% - 1.5rem);
}

.team-profile-glow {
  position: absolute;
  width: 48%;
  height: 48%;
  border-radius: 999px;
  filter: blur(34px);
  opacity: 0.28;
  pointer-events: none;
  animation: team-glow-float 4.2s ease-in-out infinite;
}

.team-profile-glow-blue {
  top: -12%;
  left: -8%;
  background: rgba(31, 136, 255, 0.74);
}

.team-profile-glow-red {
  right: -10%;
  bottom: -12%;
  background: rgba(229, 36, 71, 0.66);
  animation-delay: 0.9s;
}

.team-profile-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: grid;
  gap: 0.2rem;
  padding: 0.72rem 0.82rem 0.72rem;
  background: linear-gradient(180deg, rgba(8, 18, 33, 0) 0%, rgba(8, 18, 33, 0.82) 62%, rgba(8, 18, 33, 0.94) 100%);
}

.team-profile-content h2 {
  display: none;
}

.team-profile-role {
  margin: 0;
  color: #ffffff !important;
  font-family: var(--body-font);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.003em;
  text-transform: none;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.38);
}

body[data-page="custom"][data-custom-page="team"] .about-prose .team-profile-content h2,
body[data-page="custom"][data-custom-page="team"] .about-prose .team-profile-role {
  color: #ffffff !important;
}

body[data-page="custom"][data-custom-page="team"] .about-prose .team-profile-role {
  font-size: 0.98rem !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
}

.team-profile-email {
  margin-top: 0.12rem;
  display: inline-flex;
  align-items: center;
  gap: 0.34rem;
  width: fit-content;
  color: #ffffff;
  font-family: var(--body-font);
  font-size: 0.66rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.005em;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.38);
}

.team-profile-email:hover,
.team-profile-email:focus-visible {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.team-profile-email-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.04rem;
  height: 1.04rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.team-profile-email-icon svg {
  width: 0.72rem;
  height: 0.72rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.team-profile-lead {
  display: none;
}

.team-copy-grid {
  display: grid;
  gap: 0.95rem;
  width: min(980px, 100%);
  margin-inline: auto;
}

.team-copy-grid p {
  margin: 0;
  color: #1a314f;
  line-height: 1.8;
}

@keyframes team-glow-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.25;
  }

  50% {
    transform: translate3d(5px, -6px, 0) scale(1.12);
    opacity: 0.4;
  }
}

@media (max-width: 900px) {
  body[data-page="custom"][data-custom-page="team"] .masthead h1 {
    max-width: none;
    width: 100%;
    white-space: normal;
    text-wrap: balance;
    overflow-wrap: anywhere;
    font-size: clamp(1.45rem, 8.4vw, 2.05rem);
    line-height: 1.08;
  }

  body[data-page="custom"][data-custom-page="team"] .about-layout.is-single-column .about-card {
    padding-top: 0.2rem;
  }

  .team-carousel-scene {
    height: clamp(236px, 66vw, 320px);
  }

  .team-carousel {
    --team-card-width: min(198px, 54vw);
    --team-side-shift: clamp(108px, 21vw, 142px);
    --team-arrow-shift: calc(var(--team-side-shift) + clamp(58px, 9vw, 82px));
  }

  .team-carousel-prev {
    left: calc(50% - var(--team-arrow-shift));
  }

  .team-carousel-next {
    left: calc(50% + var(--team-arrow-shift));
  }
}

.about-platforms,
.about-facts {
  display: grid;
  gap: 0.85rem;
}

.about-platform,
.about-fact {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: var(--bg-soft);
  border: 1px solid rgba(17, 110, 167, 0.08);
}

.about-platform span,
.about-fact span {
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-platform strong,
.about-fact strong {
  color: var(--text-strong);
  font-size: 1rem;
  line-height: 1.4;
}

.receive-panel {
  padding: 1.25rem;
  border-radius: var(--radius-xl);
}

.contact-form-card,
.editor-card,
.editor-preview-card {
  padding: 1.5rem;
  border-radius: var(--radius-xl);
}

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

.generated-form-block {
  display: grid;
  gap: 0.55rem;
}

.generated-form-block h2 {
  margin: 0;
  max-width: 16ch;
  font-size: clamp(2.15rem, 4vw, 3.7rem);
  line-height: 0.94;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.generated-form-block .section-copy {
  max-width: 44rem;
}

.player-request-block {
  padding-top: 1rem;
}

.compact-form-card {
  padding: 1.2rem 1.25rem;
}

.compact-form-card .generated-form-block {
  gap: 0.7rem;
}

.compact-form-card .generated-form-block h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  line-height: 1.02;
  max-width: none;
}

.compact-form-card .section-copy {
  max-width: 52rem;
}

.compact-form-card .contact-form {
  gap: 0.8rem;
}

.compact-form-card .field {
  gap: 0.48rem;
}

.compact-form-card .field input,
.compact-form-card .field textarea,
.compact-form-card .field select {
  padding: 1rem 1.05rem;
  border-radius: 16px;
}

.compact-form-card textarea {
  min-height: 10.5rem;
}

.compact-form-card .button {
  width: fit-content;
  min-width: 14rem;
}

.contact-guard {
  margin-top: 0.35rem;
  display: grid;
  gap: 0.75rem;
}

.contact-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.form-note {
  margin: 0.15rem 0 0;
  color: var(--text-soft);
  font-size: 0.94rem;
  line-height: 1.5;
}

.contact-side-mail {
  margin: 0.25rem 0 0;
}

.contact-side-mail a {
  color: var(--brand-dark);
  font-weight: 700;
}

.contact-side-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.status-subtle.is-error {
  color: var(--accent);
}

.status-subtle.is-success {
  color: var(--brand-dark);
}

.editor-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.7fr);
  gap: 1rem;
}

.application-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.68fr);
  gap: 1rem;
  align-items: start;
}

.application-copy {
  display: grid;
  gap: 1.35rem;
  padding: 1.7rem 1.8rem;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff, #f9fbfe);
  box-shadow: var(--shadow-soft);
}

.application-copy,
.application-panel,
.application-side-note {
  border-radius: var(--radius-xl);
}

.application-intro {
  max-width: 43rem;
  margin: 0;
  color: var(--text-soft);
  font-size: 1.08rem;
  line-height: 1.78;
}

.application-intro-band {
  display: grid;
  gap: 0.55rem;
  padding: 1rem 1.1rem;
  border-radius: calc(var(--radius-lg) + 2px);
  border: 1px solid rgba(17, 110, 167, 0.12);
  background:
    radial-gradient(circle at top right, rgba(30, 137, 200, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(247, 251, 255, 0.96), rgba(255, 255, 255, 0.98));
}

.application-intro-band .eyebrow {
  margin: 0;
}

.application-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.artist-form-block {
  display: flex;
  justify-content: center;
}

.songrequest-form-block {
  display: flex;
  justify-content: center;
}

.contact-form-card-wide {
  width: 100%;
  max-width: min(58rem, 100%);
  padding: 1.95rem 2rem;
}

.custom-form-card-block {
  padding-top: 0.4rem;
}

.songrequest-form-card {
  max-width: min(48rem, 100%);
  padding: 1.85rem 1.9rem;
  background:
    radial-gradient(circle at top right, rgba(30, 137, 200, 0.1), transparent 24%),
    linear-gradient(180deg, #ffffff, #f9fbfe);
}

body[data-page="songrequest"] .songrequest-form-card .generated-form-block {
  gap: 0.6rem;
}

body[data-page="songrequest"] .songrequest-form-card .section-copy {
  max-width: 40rem;
}

body[data-page="songrequest"] .songrequest-form-card .contact-form {
  gap: 0.8rem;
}

body[data-page="songrequest"] .songrequest-form-card .field input,
body[data-page="songrequest"] .songrequest-form-card .field textarea,
body[data-page="songrequest"] .songrequest-form-card .field select {
  padding: 1rem 1.05rem;
  border-radius: 16px;
}

body[data-page="songrequest"] .songrequest-form-card textarea {
  min-height: 10rem;
}

body[data-page="songrequest"] .songrequest-form-card .button {
  width: fit-content;
  min-width: 14rem;
}

.songrequest-side-note {
  max-width: min(28rem, 100%);
}

body[data-page="artists"] .contact-form-card-wide .generated-form-block {
  gap: 0.55rem;
}

body[data-page="artists"] .contact-form-card-wide .section-copy {
  max-width: 42rem;
}

body[data-page="artists"] .contact-form-card-wide .contact-form {
  gap: 0.8rem;
}

body[data-page="artists"] .contact-form-card-wide .field {
  gap: 0.5rem;
}

body[data-page="artists"] .contact-form-card-wide .field input,
body[data-page="artists"] .contact-form-card-wide .field textarea,
body[data-page="artists"] .contact-form-card-wide .field select {
  padding: 1rem 1.05rem;
  border-radius: 16px;
}

body[data-page="artists"] .contact-form-card-wide textarea {
  min-height: 11rem;
}

body[data-page="artists"] .contact-form-card-wide .button {
  width: fit-content;
  min-width: 15rem;
}

body[data-page="custom"] #customPageParagraphs + .custom-form-card-block,
body[data-page="songrequest"] .songrequest-form-block,
body[data-page="kontakt"] .contact-service-layout {
  margin-top: 0.9rem;
}

body[data-page="artists"] .artist-form-block {
  margin-top: 0;
  padding-top: 1rem;
}

.promo-link-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 1.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top right, rgba(30, 137, 200, 0.14), transparent 26%),
    linear-gradient(180deg, #ffffff, #f8fbfd);
  box-shadow: var(--shadow);
}

.promo-link-copy {
  max-width: 42rem;
}

.promo-link-actions {
  display: flex;
  align-items: center;
  justify-content: end;
}

body[data-page="kontakt"] .page-flow {
  gap: 1.35rem;
}

.contact-masthead {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 1.15rem;
  align-items: stretch;
}

.contact-masthead .masthead-copy {
  max-width: 40rem;
}

.contact-masthead h1 .line {
  display: block;
  white-space: nowrap;
}

.contact-masthead h1 {
  max-width: none;
  text-wrap: initial;
}

.contact-masthead-panel {
  display: grid;
  align-content: start;
  gap: 0.9rem;
  padding: 1.35rem;
  border-radius: calc(var(--radius-xl) - 4px);
  border: 1px solid rgba(17, 110, 167, 0.12);
  background:
    radial-gradient(circle at top right, rgba(30, 137, 200, 0.12), transparent 24%),
    linear-gradient(180deg, #ffffff, #f8fbfe);
  box-shadow: var(--shadow-soft);
}

.contact-masthead-panel h2 {
  margin: 0;
  font-size: clamp(1.55rem, 2vw, 2rem);
  line-height: 1.02;
}

.contact-quick-grid {
  display: grid;
  gap: 0.75rem;
}

.contact-quick-link {
  position: relative;
  display: grid;
  gap: 0.22rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(17, 110, 167, 0.1);
  background: rgba(255, 255, 255, 0.76);
  color: var(--text);
  transition:
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 260ms ease,
    box-shadow 260ms ease,
    background 260ms ease;
}

.contact-quick-link::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 35%, rgba(255, 255, 255, 0.45) 50%, rgba(255, 255, 255, 0) 65%);
  transform: translateX(-120%);
  transition: transform 420ms ease;
  pointer-events: none;
}

.contact-quick-link:hover,
.contact-quick-link:focus-visible {
  transform: translateY(-8px);
  border-color: rgba(17, 110, 167, 0.24);
  box-shadow: 0 22px 38px rgba(17, 110, 167, 0.18);
  background: #ffffff;
}

.contact-quick-link:hover::after,
.contact-quick-link:focus-visible::after {
  transform: translateX(120%);
}

.contact-quick-label {
  color: var(--brand-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-quick-link strong {
  font-size: 1.02rem;
  line-height: 1.28;
}

.contact-quick-meta {
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.45;
}

.contact-overview-shell {
  display: grid;
  gap: 0.9rem;
  max-width: 1320px;
  margin: 0 auto;
}

.contact-overview-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.contact-overview-head h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  line-height: 0.96;
  max-width: 18ch;
}

body[data-page="kontakt"] #contactGrid .content-card {
  min-height: 100%;
  padding: 1.35rem 1.45rem 1.4rem;
  background:
    radial-gradient(circle at top right, rgba(30, 137, 200, 0.08), transparent 22%),
    linear-gradient(180deg, #ffffff, #fbfdff);
  box-shadow: var(--shadow-soft);
}

body[data-page="kontakt"] #contactGrid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

body[data-page="kontakt"] #contactGrid .tag-chip {
  margin-bottom: 0.7rem;
}

body[data-page="kontakt"] #contactGrid h3 {
  font-size: clamp(1.3rem, 1.6vw, 1.75rem);
  line-height: 1.05;
  margin-bottom: 0.4rem;
  overflow-wrap: anywhere;
}

body[data-page="kontakt"] #contactGrid p {
  font-size: 0.96rem;
  line-height: 1.5;
  max-width: 28ch;
  overflow-wrap: anywhere;
}

body[data-page="kontakt"] #contactGrid .card-meta {
  margin-top: 0.7rem;
  padding-top: 0;
  color: var(--text-soft);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

body[data-page="kontakt"] #contactGrid .content-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  height: 100%;
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

body[data-page="kontakt"] #contactGrid .content-card-link:hover .content-card,
body[data-page="kontakt"] #contactGrid .content-card-link:focus-visible .content-card {
  transform: translateY(-8px);
  border-color: rgba(17, 110, 167, 0.22);
  box-shadow: 0 24px 42px rgba(17, 110, 167, 0.17);
}

@media (max-width: 1180px) {
  body[data-page="kontakt"] #contactGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.contact-service-layout {
  align-items: stretch;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.78fr);
}

.contact-form-card-emphasis {
  margin-inline: auto;
  padding: 1.7rem;
  background:
    radial-gradient(circle at top right, rgba(30, 137, 200, 0.11), transparent 24%),
    linear-gradient(180deg, #ffffff, #f9fbfe);
  box-shadow: var(--shadow);
}

.contact-form-intro {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 0.85rem;
}

.contact-form-intro h2 {
  margin: 0;
  font-size: clamp(1.9rem, 2.8vw, 2.8rem);
  line-height: 0.95;
  max-width: 15ch;
}

.contact-side-card {
  position: relative;
  overflow: hidden;
  justify-content: start;
  gap: 0.95rem;
}

.contact-side-card::after {
  content: "";
  position: absolute;
  right: -2.5rem;
  bottom: -3rem;
  width: 11rem;
  height: 11rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 72%);
  pointer-events: none;
}

body[data-page="kontakt"] .contact-side-card h2 {
  max-width: 12ch;
  line-height: 0.96;
}

body[data-page="kontakt"] .contact-side-card .contact-side-actions {
  margin-top: 1.2rem;
}

.contact-side-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.contact-side-list li {
  position: relative;
  padding-left: 1.15rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.58;
}

.contact-side-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
}

.advertising-page-head {
  padding-top: 0.8rem;
}

.advertising-page-head h1:empty {
  display: none;
}

.advertising-page-head h1 {
  max-width: none;
}

.partner-stack {
  display: grid;
  gap: 1.1rem;
  justify-content: start;
}

body[data-page="werbung"] .content-block {
  padding-top: var(--section-spacing);
}

body[data-page="werbung"] #advertisingContactStrip {
  margin-top: 1.1rem;
}

@media (max-width: 720px) {
  body[data-page="werbung"] .content-block {
    padding-top: var(--mobile-section-spacing);
  }

  body[data-page="werbung"] #advertisingContactStrip {
    margin-top: 0.7rem;
  }
}

.partner-card {
  display: grid;
  grid-template-columns: minmax(190px, var(--partner-photo-width)) minmax(420px, var(--partner-copy-width));
  gap: 0.9rem;
  align-items: stretch;
  width: fit-content;
  max-width: 100%;
}

.partner-card-photo-shell,
.partner-card-copy {
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  align-self: stretch;
}

.partner-card-photo-shell {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  height: 100%;
  width: 100%;
  background:
    radial-gradient(circle at top center, rgba(82, 148, 255, 0.14), transparent 32%),
    linear-gradient(160deg, #f0f5f8, #cfd8de);
}

.partner-card-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.partner-card--partner-inselkino {
  grid-template-columns: minmax(260px, 0.9fr) minmax(360px, 1.1fr);
  gap: 0;
  width: min(74rem, 100%);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(255, 209, 92, 0.16), transparent 24%),
    linear-gradient(145deg, #07192f, #123b68 48%, #50172a 100%);
  box-shadow: var(--shadow);
}

.partner-card--partner-inselkino .partner-card-photo-shell {
  min-height: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(95, 39, 132, 0.96), rgba(61, 28, 102, 0.98));
  box-shadow: none;
}

.partner-card--partner-inselkino .partner-card-photo {
  object-fit: contain;
  padding: clamp(1.2rem, 3vw, 2.35rem);
}

.partner-card--partner-inselkino .partner-card-copy {
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.partner-card-copy {
  padding: var(--partner-card-padding);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 22%),
    linear-gradient(145deg, var(--partner-surface-start), #17345f 54%, var(--partner-surface-end) 100%);
  color: var(--text-on-dark);
}

.partner-card-copy h2 {
  margin: 0.35rem 0 0;
  font-family: var(--display-font);
  font-size: clamp(1.85rem, 3vw, 2.95rem);
  line-height: 0.96;
}

.partner-card-role,
.partner-card-subtitle,
.partner-card-claim,
.partner-card-lead {
  margin: 0;
}

.partner-card-role {
  margin-top: 1rem;
  font-size: clamp(1.15rem, 2vw, 1.85rem);
  font-weight: 700;
  line-height: 1.05;
}

.partner-card-subtitle {
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.partner-card-claim {
  margin-top: 0.85rem;
  font-size: clamp(1rem, 1.8vw, 1.65rem);
  line-height: 1.16;
  font-weight: 500;
}

.partner-card-lead {
  margin-top: 0.75rem;
  max-width: 32rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.partner-card-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.15rem;
  flex-wrap: wrap;
}

@keyframes partner-card-cinema-glow {
  0%,
  100% {
    transform: translateY(0);
    filter: saturate(1);
  }
  50% {
    transform: translateY(-4px);
    filter: saturate(1.12);
  }
}

.partner-social-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.partner-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 24px rgba(8, 14, 26, 0.18);
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.partner-social-link:hover,
.partner-social-link:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 18px 32px rgba(8, 14, 26, 0.24);
}

.partner-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.2rem;
  height: 1.2rem;
  color: #ffffff;
}

.partner-social-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.partner-social-link.social-facebook .partner-social-icon svg,
.partner-social-link.social-tiktok .partner-social-icon svg,
.partner-social-link.social-xing .partner-social-icon svg,
.partner-social-icon svg .fill-dot {
  fill: currentColor;
  stroke: none;
}

.partner-social-link.social-mail {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.24), transparent 34%),
    linear-gradient(145deg, #4da7f5, #256fcb);
  border-color: rgba(144, 201, 255, 0.45);
}

.partner-social-link.social-instagram {
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 195, 113, 0.42), transparent 22%),
    linear-gradient(145deg, #833ab4, #fd1d1d 62%, #fcb045);
  border-color: rgba(255, 212, 157, 0.34);
}

.partner-social-link.social-tiktok {
  background:
    radial-gradient(circle at 30% 20%, rgba(83, 255, 242, 0.24), transparent 24%),
    linear-gradient(145deg, #121212, #101820 58%, #1a3b42);
  border-color: rgba(123, 255, 242, 0.22);
}

.partner-social-link.social-xing {
  background:
    radial-gradient(circle at top right, rgba(26, 198, 178, 0.2), transparent 32%),
    linear-gradient(145deg, #0b7d67, #0f4c44);
  border-color: rgba(95, 221, 196, 0.28);
}

.partner-social-link.social-facebook {
  background:
    radial-gradient(circle at top right, rgba(145, 183, 255, 0.25), transparent 32%),
    linear-gradient(145deg, #2f6fe4, #1f4ca8);
  border-color: rgba(157, 191, 255, 0.3);
}

.partner-social-link.social-link,
.partner-social-link.social-website,
.partner-social-link.social-web {
  background:
    radial-gradient(circle at top right, rgba(197, 225, 255, 0.2), transparent 34%),
    linear-gradient(145deg, #4e647f, #1f3550);
  border-color: rgba(199, 220, 244, 0.28);
}

.partner-social-link.social-linkedin {
  background:
    radial-gradient(circle at top right, rgba(118, 196, 255, 0.24), transparent 34%),
    linear-gradient(145deg, #2c85c9, #175b90);
  border-color: rgba(145, 214, 255, 0.28);
}

.partner-social-link.social-youtube {
  background:
    radial-gradient(circle at top right, rgba(255, 196, 196, 0.2), transparent 34%),
    linear-gradient(145deg, #ff3d3d, #b81616);
  border-color: rgba(255, 186, 186, 0.28);
}

.partner-social-link.social-whatsapp {
  background:
    radial-gradient(circle at top right, rgba(171, 255, 204, 0.2), transparent 34%),
    linear-gradient(145deg, #2ebc66, #18864a);
  border-color: rgba(180, 255, 209, 0.28);
}

/* TikTok-style icon effects for "Werbung & Partner" partner cards */
.partner-card .partner-social-link {
  position: relative;
  isolation: isolate;
  width: auto;
  min-width: 3.1rem;
  overflow: hidden;
  white-space: nowrap;
  max-width: 3.1rem;
  padding: 0;
  gap: 0;
  transform-origin: center;
  transition:
    max-width 260ms ease,
    padding 260ms ease,
    gap 260ms ease,
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
  animation:
    partner-icon-intro 620ms cubic-bezier(0.2, 0.9, 0.25, 1) backwards,
    partner-icon-float 3.2s ease-in-out infinite;
  animation-delay:
    calc(var(--icon-stagger, 0) * 90ms),
    calc(760ms + (var(--icon-stagger, 0) * 90ms));
}

.partner-card .partner-social-link::before {
  content: "";
  position: absolute;
  inset: -0.28rem;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.58) 0%, rgba(255, 255, 255, 0) 72%);
  opacity: 0;
  filter: blur(5px);
  pointer-events: none;
  z-index: -1;
  animation: partner-icon-glow 2.4s ease-in-out infinite;
  animation-delay: calc(960ms + (var(--icon-stagger, 0) * 90ms));
}

.partner-card .partner-social-icon {
  animation: partner-icon-pulse 2.4s ease-in-out infinite;
  animation-delay: calc(920ms + (var(--icon-stagger, 0) * 90ms));
  flex: 0 0 1.2rem;
}

.partner-card .partner-social-link::after {
  content: attr(aria-label);
  display: inline-block;
  max-width: 0;
  margin-left: 0;
  opacity: 0;
  transform: translateX(-8px);
  overflow: hidden;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
  transition:
    max-width 260ms ease,
    margin-left 260ms ease,
    opacity 220ms ease,
    transform 260ms ease;
}

.partner-card .partner-social-link:nth-child(1) {
  --icon-stagger: 0;
}

.partner-card .partner-social-link:nth-child(2) {
  --icon-stagger: 1;
}

.partner-card .partner-social-link:nth-child(3) {
  --icon-stagger: 2;
}

.partner-card .partner-social-link:nth-child(4) {
  --icon-stagger: 3;
}

.partner-card .partner-social-link:nth-child(5) {
  --icon-stagger: 4;
}

.partner-card .partner-social-link:nth-child(6) {
  --icon-stagger: 5;
}

.partner-card .partner-social-link:nth-child(7) {
  --icon-stagger: 6;
}

.partner-card .partner-social-link:nth-child(8) {
  --icon-stagger: 7;
}

.partner-card .partner-social-link:hover,
.partner-card .partner-social-link:focus-visible {
  max-width: 22rem;
  padding: 0 1.15rem 0 0.82rem;
  gap: 0.48rem;
  justify-content: flex-start;
  z-index: 4;
  transform: translateY(-3px) scale(1.07);
}

.partner-card .partner-social-link:hover::after,
.partner-card .partner-social-link:focus-visible::after {
  max-width: 18.5rem;
  margin-left: 0.08rem;
  opacity: 1;
  transform: translateX(0);
}

.partner-card .partner-social-row {
  flex-wrap: nowrap;
  overflow: visible;
}

@keyframes partner-icon-intro {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.66);
  }

  65% {
    opacity: 1;
    transform: translateY(-4px) scale(1.08);
  }

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

@keyframes partner-icon-float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-3px) scale(1.01);
  }
}

@keyframes partner-icon-glow {
  0%,
  100% {
    opacity: 0.08;
    transform: scale(0.92);
  }

  45% {
    opacity: 0.32;
    transform: scale(1.09);
  }
}

@keyframes partner-icon-pulse {
  0%,
  100% {
    transform: scale(1);
  }

  40% {
    transform: scale(1.09);
  }
}

@media (prefers-reduced-motion: reduce) {
  .custom-section .card-cta,
  .custom-section .card-cta::before,
  .custom-section .card-cta::after,
  .hero-card-cta,
  .hero-card-cta::before,
  .hero-card-cta::after,
  .custom-section-actions .button,
  .custom-section-actions .button::before,
  .custom-section-actions .button::after,
  .partner-card .partner-social-link,
  .partner-card .partner-social-link::before,
  .partner-card .partner-social-icon {
    animation: none !important;
  }
}

@media (max-width: 900px), (hover: none), (pointer: coarse) {
  .custom-section .card-cta,
  .custom-section .card-cta::before,
  .custom-section .card-cta::after,
  .hero-card-cta,
  .hero-card-cta::before,
  .hero-card-cta::after,
  .custom-section-actions .button,
  .custom-section-actions .button::before,
  .custom-section-actions .button::after {
    animation: none !important;
  }

  .custom-section .card-cta,
  .custom-section .card-cta:hover,
  .custom-section .card-cta:focus-visible,
  .hero-card-cta,
  .hero-card-cta:hover,
  .hero-card-cta:focus-visible,
  .custom-section-actions .button,
  .custom-section-actions .button:hover,
  .custom-section-actions .button:focus-visible {
    transform: none !important;
    box-shadow: 0 12px 22px rgba(18, 102, 166, 0.24) !important;
  }

  .partner-card .partner-social-link {
    width: 3.1rem;
    min-width: 3.1rem;
    max-width: 3.1rem !important;
    padding: 0 !important;
    gap: 0 !important;
    transform: none !important;
    animation: none !important;
  }

  .partner-card .partner-social-link::before,
  .partner-card .partner-social-icon {
    animation: none !important;
  }

  .partner-card .partner-social-link::after {
    display: none !important;
  }

  .partner-card .partner-social-link:hover,
  .partner-card .partner-social-link:focus-visible {
    max-width: 3.1rem !important;
    padding: 0 !important;
    gap: 0 !important;
    transform: none !important;
  }

  .footer-social .partner-social-link,
  .footer-admin-link,
  .footer-share-button {
    max-width: 2.6rem !important;
    padding: 0 !important;
    gap: 0 !important;
    transform: none !important;
  }

  .footer-social .partner-social-link::after,
  .footer-admin-link::after,
  .footer-share-button::after {
    display: none !important;
  }

  .footer-social .partner-social-link:hover,
  .footer-social .partner-social-link:focus-visible,
  .footer-admin-link:hover,
  .footer-admin-link:focus-visible,
  .footer-share-button:hover,
  .footer-share-button:focus-visible {
    max-width: 2.6rem !important;
    padding: 0 !important;
    gap: 0 !important;
    transform: none !important;
    box-shadow: none !important;
  }
}

.social-xing {
  background:
    radial-gradient(circle at top right, rgba(26, 198, 178, 0.18), transparent 32%),
    linear-gradient(160deg, rgba(0, 126, 101, 0.32), rgba(7, 23, 28, 0.96));
}

.social-xing .social-icon {
  background: linear-gradient(135deg, #0b7d67, #11685b);
}

.application-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 100%;
  padding: 1.45rem 1.5rem 1.55rem;
  border: 1px solid rgba(17, 110, 167, 0.12);
  background:
    radial-gradient(circle at top right, rgba(30, 137, 200, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff, #f9fbfe);
  box-shadow: 0 18px 34px rgba(17, 31, 48, 0.06);
}

.application-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(219, 31, 47, 0.9), rgba(30, 137, 200, 0.35));
}

.application-panel .eyebrow {
  margin: 0;
}

.application-panel h2 {
  margin: 0;
  max-width: 18ch;
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  line-height: 1.02;
}

.application-side {
  position: relative;
  display: grid;
  gap: 1rem;
  align-content: start;
  padding: 1.55rem 1.55rem 1.7rem;
  min-height: 100%;
  border: 1px solid rgba(17, 110, 167, 0.16);
  background:
    radial-gradient(circle at top right, rgba(30, 137, 200, 0.16), transparent 28%),
    linear-gradient(160deg, rgba(28, 58, 103, 0.98), rgba(18, 40, 77, 0.96));
  box-shadow: 0 24px 42px rgba(17, 31, 48, 0.18);
}

.application-side::after {
  content: "";
  position: absolute;
  inset: auto 1.55rem 0.95rem 1.55rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), transparent);
  pointer-events: none;
}

.application-side .eyebrow,
.application-side h2,
.application-side .section-copy {
  position: relative;
  z-index: 1;
}

.application-side h2 {
  margin: 0;
  max-width: 12ch;
  color: #ffffff;
  font-size: clamp(2rem, 3.3vw, 2.95rem);
  line-height: 0.96;
}

.application-side .section-copy {
  margin: 0;
  color: rgba(232, 240, 250, 0.9);
  line-height: 1.7;
}

.application-side .button {
  position: relative;
  z-index: 1;
  width: fit-content;
  min-width: 18rem;
  justify-content: center;
  border-radius: 999px;
  box-shadow: 0 16px 30px rgba(219, 31, 47, 0.22);
}

.feature-list {
  list-style: none;
  margin: 0.15rem 0 0;
  padding: 0;
  color: var(--text);
  display: grid;
  gap: 0.95rem;
  line-height: 1.58;
}

.feature-list li {
  position: relative;
  display: grid;
  grid-template-columns: 1.2rem minmax(0, 1fr);
  gap: 0.8rem;
  align-items: start;
}

.feature-list li::before {
  content: "";
  width: 0.72rem;
  height: 0.72rem;
  margin-top: 0.48rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--brand));
  box-shadow: 0 0 0 5px rgba(30, 137, 200, 0.08);
}

.feature-list.compact {
  margin-top: 0.8rem;
  gap: 0.55rem;
}

.editor-layout-wide {
  grid-template-columns: minmax(0, 1.6fr) minmax(290px, 0.68fr);
}

.editor-page-switcher {
  display: grid;
  gap: 0.9rem;
  padding: 1.3rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #ffffff, #f8fbfd);
}

.editor-page-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.editor-page-button {
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--text);
  border-radius: 999px;
  padding: 0.8rem 1.05rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease;
}

.editor-page-button:hover {
  transform: translateY(-1px);
  border-color: rgba(17, 110, 167, 0.28);
}

.editor-page-button.is-active {
  color: #ffffff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  box-shadow: 0 12px 26px rgba(17, 110, 167, 0.18);
}

.editor-page-summary {
  margin: 0;
}

.editor-form {
  display: grid;
  gap: 1rem;
}

.editor-section {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.editor-section[hidden],
.editor-advanced-block[hidden] {
  display: none;
}

.editor-section:first-of-type {
  padding-top: 0;
  border-top: 0;
}

.editor-subhead {
  margin-bottom: 1rem;
}

.editor-subhead h3 {
  margin: 0.35rem 0 0;
  font-family: var(--display-font);
  font-size: 1.55rem;
  line-height: 1;
}

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

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

.editor-span-2 {
  grid-column: span 2;
}

.editor-json-head {
  margin-top: 1.6rem;
}

.editor-page-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.editor-page-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.25fr);
  gap: 1rem;
  align-items: start;
}

.editor-builder-column {
  display: grid;
  gap: 0.85rem;
}

.editor-page-list {
  display: grid;
  gap: 0.75rem;
}

.editor-builder-tip {
  margin-bottom: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(17, 110, 167, 0.14);
  background: linear-gradient(180deg, #f9fcff, #eef7fd);
  color: var(--text-soft);
  line-height: 1.55;
}

.editor-builder-tip strong {
  color: var(--text);
}

.editor-page-item,
.editor-empty-note {
  width: 100%;
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--bg-soft);
}

.editor-page-item {
  display: grid;
  gap: 0.28rem;
  text-align: left;
  cursor: pointer;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.editor-page-item:hover,
.editor-page-item:focus-visible,
.editor-page-item.is-active {
  transform: translateY(-1px);
  border-color: rgba(17, 110, 167, 0.28);
  background: linear-gradient(180deg, #ffffff, #eef7fd);
  box-shadow: 0 14px 28px rgba(17, 110, 167, 0.12);
}

.editor-sortable-item {
  position: relative;
}

.editor-sortable-item[draggable="true"] {
  cursor: grab;
}

.editor-sortable-item.is-dragging {
  opacity: 0.45;
  transform: scale(0.985);
}

.editor-sortable-item.is-drop-before {
  box-shadow: inset 0 3px 0 rgba(30, 137, 200, 0.88);
}

.editor-sortable-item.is-drop-after {
  box-shadow: inset 0 -3px 0 rgba(30, 137, 200, 0.88);
}

.editor-page-item strong {
  color: var(--text);
  font-size: 1rem;
}

.editor-page-item span,
.editor-page-item small,
.editor-empty-note {
  color: var(--text-soft);
}

.editor-page-item span {
  font-family: "SFMono-Regular", "Menlo", "Consolas", monospace;
  font-size: 0.84rem;
}

.editor-page-item small {
  font-size: 0.8rem;
}

.editor-page-item.is-muted {
  opacity: 0.72;
}

.editor-page-item-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
  background: rgba(17, 110, 167, 0.09);
  color: var(--brand-dark);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.editor-page-item.is-muted .editor-page-item-status {
  background: rgba(17, 17, 17, 0.06);
  color: var(--text-soft);
}

.live-editor-shell {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 90;
}

.live-builder-dock {
  position: fixed;
  top: 1rem;
  left: 1rem;
  display: grid;
  grid-template-columns: auto minmax(180px, 220px) auto;
  gap: 0.8rem;
  align-items: center;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(17, 110, 167, 0.14);
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(16px);
  z-index: 91;
}

.live-builder-dock__title {
  display: grid;
  gap: 0.18rem;
}

.live-builder-dock__title strong {
  color: var(--text);
  font-family: var(--display-font);
  font-size: 1.08rem;
  line-height: 1;
}

.live-builder-dock__field {
  min-width: 0;
}

.live-builder-dock__field span {
  font-size: 0.76rem;
}

.live-builder-dock__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: flex-end;
}

.live-editor-fab,
.live-editor-panel,
.live-editor-backdrop {
  pointer-events: auto;
}

.live-editor-fab {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  min-height: 3.1rem;
  padding: 0.9rem 1.15rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--brand), var(--brand-dark));
  color: var(--text-on-dark);
  font-weight: 800;
  box-shadow: 0 18px 34px rgba(17, 110, 167, 0.24);
  cursor: pointer;
}

.live-editor-backdrop {
  position: fixed;
  inset: 0;
  border: 0;
  background: rgba(8, 18, 31, 0.18);
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.live-editor-panel {
  position: fixed;
  top: 0.8rem;
  right: 0.8rem;
  bottom: 0.8rem;
  width: min(30rem, calc(100vw - 1.2rem));
  padding: 1rem;
  border-radius: 1.4rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
  overflow: auto;
  transform: translateX(calc(100% + 1rem));
  transition: transform 220ms ease;
  backdrop-filter: blur(18px);
}

.live-editor-shell.is-open .live-editor-backdrop {
  opacity: 1;
  visibility: visible;
}

.live-editor-shell.is-open .live-editor-panel {
  transform: translateX(0);
}

.live-editor-head,
.live-editor-head-actions,
.live-editor-toolbar,
.live-editor-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.live-editor-head {
  align-items: start;
}

.live-editor-head h2 {
  margin: 0.45rem 0 0;
  font-family: var(--display-font);
  font-size: clamp(1.7rem, 4vw, 2.35rem);
  line-height: 0.98;
}

.live-editor-close {
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
}

.live-editor-status {
  margin: 0.9rem 0 0;
  padding: 0.85rem 0.95rem;
  border-radius: 1rem;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-size: 0.95rem;
  line-height: 1.55;
}

.live-selection-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 1rem;
  padding: 0.85rem 0.95rem;
  border-radius: 1rem;
  border: 1px solid rgba(17, 110, 167, 0.16);
  background: linear-gradient(180deg, #f8fbff, #eef7fd);
}

.live-selection-bar__copy {
  display: grid;
  gap: 0.18rem;
}

.live-selection-bar__copy span {
  color: var(--text-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.live-selection-bar__copy strong {
  color: var(--text);
  font-size: 1rem;
}

.live-selection-bar__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
}

.live-editor-section {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.live-editor-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.live-editor-span-2 {
  grid-column: span 2;
}

.live-editor-toolbar {
  flex-wrap: wrap;
  margin: 0.8rem 0;
}

.live-editor-collection-picker {
  min-width: 100%;
}

.live-editor-list {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.8rem;
}

.live-editor-list-item {
  width: 100%;
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--surface);
  text-align: left;
  cursor: pointer;
}

.live-editor-list-item strong,
.live-editor-list-item span {
  display: block;
}

.live-editor-list-item strong {
  font-size: 0.98rem;
}

.live-editor-list-item span {
  margin-top: 0.3rem;
  color: var(--text-soft);
  font-size: 0.86rem;
  line-height: 1.45;
}

.live-editor-list-item.is-active {
  border-color: rgba(17, 110, 167, 0.34);
  background: linear-gradient(180deg, rgba(231, 245, 253, 0.9), #ffffff);
  box-shadow: 0 10px 22px rgba(17, 110, 167, 0.1);
}

.live-editor-list-item[draggable="true"] {
  cursor: grab;
}

.live-editor-empty {
  padding: 1rem;
  border: 1px dashed var(--line);
  border-radius: 1rem;
  color: var(--text-soft);
  line-height: 1.6;
}

.live-editor-module-visibility,
.live-editor-checkbox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.live-editor-module-visibility input,
.live-editor-checkbox input {
  width: 1.1rem;
  height: 1.1rem;
}

.live-editor-footer {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.builder-live-target {
  position: relative;
  cursor: pointer;
  transition: box-shadow 160ms ease, transform 160ms ease;
}

.builder-module-target {
  position: relative;
  cursor: pointer;
  transition: box-shadow 160ms ease, transform 160ms ease, outline-color 160ms ease;
}

.builder-live-target:hover {
  box-shadow: 0 18px 34px rgba(17, 110, 167, 0.14);
  transform: translateY(-2px);
}

.builder-module-target:hover {
  box-shadow: 0 16px 28px rgba(17, 110, 167, 0.08);
}

.builder-live-target.is-selected {
  outline: 3px solid rgba(17, 110, 167, 0.36);
  outline-offset: 4px;
}

.builder-module-target.is-selected {
  outline: 3px solid rgba(17, 110, 167, 0.3);
  outline-offset: 6px;
}

.builder-live-target.is-drop-before::before,
.builder-live-target.is-drop-after::after,
.builder-module-target.is-drop-before::before,
.builder-module-target.is-drop-after::after {
  content: "";
  position: absolute;
  left: 0.45rem;
  right: 0.45rem;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--brand));
  z-index: 2;
}

.builder-live-target.is-drop-before::before {
  top: -0.35rem;
}

.builder-live-target.is-drop-after::after {
  bottom: -0.35rem;
}

.builder-live-target.is-dragging {
  opacity: 0.72;
}

.builder-module-target.is-dragging {
  opacity: 0.72;
}

.editor-empty-note {
  line-height: 1.6;
}

.editor-page-fields {
  padding: 1rem;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff, #f8fbfd);
}

.admin-page {
  width: min(calc(100% - 2rem), 1320px);
  margin: 1.2rem auto 4rem;
  display: grid;
  gap: 1rem;
}

.admin-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  align-items: start;
  gap: 1rem;
  padding: 1.35rem;
  border-radius: 2rem;
  background: linear-gradient(135deg, #10233f, #173763 56%, #21558c);
  color: var(--text-on-dark);
  box-shadow: 0 30px 70px rgba(9, 26, 46, 0.24);
}

.admin-hero-copy,
.admin-login-card,
.admin-dashboard,
.admin-country-panel {
  display: grid;
  gap: 0.9rem;
}

.admin-hero-copy,
.admin-login-card {
  align-content: start;
}

.admin-dashboard[hidden],
#adminLoginPanel[hidden],
#adminAccountPanel[hidden] {
  display: none !important;
}

.admin-hero-copy h1,
.admin-card h2,
.admin-card h3,
.admin-country-panel h3 {
  margin: 0;
}

.admin-hero-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.admin-card,
.admin-login-card,
.admin-country-panel {
  padding: 1.1rem;
  border-radius: 1.6rem;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff, #f8fbfd);
  box-shadow: 0 18px 44px rgba(17, 26, 38, 0.08);
}

.admin-status {
  padding: 0.85rem 0.95rem;
  border-radius: 1rem;
  background: #eef7fd;
  color: var(--brand-dark);
  font-size: 0.95rem;
  line-height: 1.55;
}

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

.admin-status.is-error {
  background: #fff0f1;
  color: #a31624;
}

.admin-status.is-success {
  background: #eefaf3;
  color: #0d7a40;
}

.admin-login-card .form-stack,
.admin-country-panel .admin-city-list {
  margin-top: 0.2rem;
}

.admin-login-card .section-copy {
  margin: 0;
}

.admin-login-card h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2vw, 1.85rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.admin-auth-field {
  gap: 0.55rem;
}

.admin-auth-label {
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.admin-auth-input {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  min-height: 62px;
  border-radius: 18px;
  border: 1px solid rgba(17, 110, 167, 0.16);
  background: linear-gradient(180deg, #ffffff, #f6fbff);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 14px 28px rgba(17, 26, 38, 0.06);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.admin-auth-input:focus-within {
  border-color: rgba(17, 110, 167, 0.44);
  box-shadow: 0 0 0 4px rgba(30, 137, 200, 0.12), 0 18px 36px rgba(17, 26, 38, 0.1);
  transform: translateY(-1px);
}

.admin-auth-icon {
  display: grid;
  place-items: center;
  align-self: stretch;
  color: var(--brand-dark);
  background: linear-gradient(180deg, rgba(18, 110, 167, 0.14), rgba(18, 110, 167, 0.05));
  border-right: 1px solid rgba(17, 110, 167, 0.12);
}

.admin-auth-icon svg {
  width: 1.2rem;
  height: 1.2rem;
}

.admin-auth-input input {
  width: 100%;
  min-width: 0;
  padding: 1rem 1rem 1rem 0.95rem;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  outline: none;
  box-shadow: none;
}

.admin-auth-input input::placeholder {
  color: #9aa8b5;
  font-weight: 500;
}

.admin-actions .button {
  min-width: 180px;
  padding-inline: 1.4rem;
  background: linear-gradient(135deg, #0f6faf, #1e89c8);
  color: #ffffff;
  border: 0;
  box-shadow: 0 16px 32px rgba(17, 110, 167, 0.22);
}

.admin-actions .button:hover,
.admin-actions .button:focus-visible {
  background: linear-gradient(135deg, #0d6299, #167ab2);
}

.admin-dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(320px, 0.72fr);
  gap: 1rem;
}

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

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

.admin-metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.admin-metric-grid--compact {
  grid-template-columns: repeat(auto-fit, minmax(9.5rem, 1fr));
}

.admin-outage-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 1.2rem;
  margin-top: 1.1rem;
}

.admin-outage-list .admin-data-row {
  margin-bottom: 0.75rem;
}

.admin-outage-list .admin-data-row:last-child {
  margin-bottom: 0;
}

.admin-metric {
  padding: 0.95rem 1rem;
  border-radius: 1.15rem;
  border: 1px solid rgba(17, 110, 167, 0.12);
  background: linear-gradient(180deg, #f7fbff, #edf5fb);
}

.admin-metric span {
  display: block;
  color: var(--text-soft);
  font-size: 0.85rem;
}

.admin-metric strong {
  display: block;
  margin-top: 0.32rem;
  font-family: var(--display-font);
  font-size: 1.8rem;
  line-height: 0.96;
}

.admin-toolbar,
.admin-actions,
.admin-inline-actions,
.admin-country-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.admin-toolbar {
  align-items: center;
  justify-content: space-between;
}

.admin-toolbar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  justify-content: flex-end;
}

.admin-country-chip {
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-size: 0.82rem;
  font-weight: 800;
}

.admin-map-shell {
  position: relative;
  overflow: hidden;
  min-height: 25rem;
  border-radius: 1.45rem;
  background:
    radial-gradient(circle at 20% 35%, rgba(64, 122, 201, 0.2), transparent 20rem),
    linear-gradient(180deg, #0d223c, #112a47 52%, #173257);
}

.admin-map-svg {
  width: 100%;
  height: 100%;
}

.admin-map-svg .continent {
  fill: rgba(255, 255, 255, 0.08);
  stroke: rgba(255, 255, 255, 0.12);
  stroke-width: 2;
}

.admin-map-markers {
  position: absolute;
  inset: 0;
}

.admin-map-marker {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 0.95rem;
  height: 0.95rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff6b73, #db1f2f);
  box-shadow: 0 0 0 6px rgba(219, 31, 47, 0.16);
  cursor: pointer;
}

.admin-map-marker.is-active {
  background: linear-gradient(180deg, #7be3ff, #1e89c8);
  box-shadow: 0 0 0 8px rgba(30, 137, 200, 0.18);
}

.admin-map-hint {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
}

.admin-country-list,
.admin-source-list,
.admin-page-list,
.admin-session-list,
.admin-city-list,
.admin-trend-list {
  display: grid;
  gap: 0.7rem;
  max-height: min(34rem, 62vh);
  overflow: auto;
  padding-right: 0.45rem;
  scrollbar-gutter: stable both-edges;
}

.admin-trends-card {
  gap: 1rem;
}

.admin-chart-card {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border-radius: 1.3rem;
  border: 1px solid rgba(17, 110, 167, 0.1);
  background: linear-gradient(180deg, #fcfeff, #f1f8fd);
}

.admin-chart-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
}

.admin-chart-head h3 {
  margin: 0;
}

.admin-chart-head .section-copy {
  margin: 0.35rem 0 0;
}

.admin-chart-filter {
  min-width: 14rem;
}

.admin-segment-card {
  display: grid;
  gap: 1rem;
}

.admin-segment-chart {
  display: grid;
  gap: 0.95rem;
}

.admin-segment-bar {
  display: flex;
  overflow: hidden;
  min-height: 1rem;
  border-radius: 999px;
  background: #e8f0f6;
}

.admin-segment-fill {
  min-width: 0;
}

.admin-segment-fill-new {
  background: linear-gradient(90deg, #0f6faf, #56b3f4);
}

.admin-segment-fill-returning {
  background: linear-gradient(90deg, #0e7b58, #4cbf8d);
}

.admin-segment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.admin-segment-item {
  display: grid;
  gap: 0.25rem;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 12px 28px rgba(17, 26, 38, 0.05);
}

.admin-segment-item strong {
  font-family: var(--display-font);
  font-size: 2rem;
  line-height: 0.95;
}

.admin-segment-item span {
  color: var(--text);
  font-weight: 700;
}

.admin-segment-item small {
  color: var(--text-soft);
}

.admin-chart-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.admin-chart-stage {
  overflow-x: auto;
  padding: 0.5rem 0.35rem 0.15rem;
  scrollbar-gutter: stable both-edges;
}

.admin-chart-svg {
  display: block;
  width: 100%;
  min-width: 52rem;
  height: auto;
}

.admin-chart-axis {
  stroke: rgba(17, 110, 167, 0.22);
  stroke-width: 1.5;
}

.admin-chart-axis-soft {
  stroke: rgba(17, 110, 167, 0.08);
  stroke-dasharray: 6 8;
}

.admin-chart-bar {
  fill: url(#adminChartFill);
  filter: drop-shadow(0 10px 18px rgba(17, 110, 167, 0.18));
}

.admin-chart-value,
.admin-chart-label {
  fill: #31516f;
  font-family: var(--body-font);
}

.admin-chart-value {
  font-size: 0.88rem;
  font-weight: 700;
}

.admin-chart-label {
  font-size: 0.84rem;
  font-weight: 600;
}

.admin-filter-card {
  gap: 1rem;
}

.admin-filter-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.9rem;
  align-items: end;
}

.admin-filter-actions {
  display: flex;
  justify-content: flex-end;
  align-items: end;
  min-height: 100%;
}

.admin-trend-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.admin-trend-panel {
  display: grid;
  gap: 0.75rem;
  padding: 0.9rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(17, 110, 167, 0.1);
  background: linear-gradient(180deg, #fcfeff, #f4f9fc);
}

.admin-trend-row {
  display: grid;
  gap: 0.45rem;
  padding: 0.8rem 0.85rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: #fff;
}

.admin-trend-copy {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: baseline;
}

.admin-trend-copy strong {
  font-size: 0.94rem;
}

.admin-trend-copy span {
  color: var(--text-soft);
  font-size: 0.82rem;
  text-align: right;
}

.admin-trend-bar {
  overflow: hidden;
  height: 0.52rem;
  border-radius: 999px;
  background: #e8f0f6;
}

.admin-trend-fill {
  height: 100%;
  min-width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #0f6faf, #53a6df);
}

.admin-device-head {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: baseline;
}

.admin-device-head span {
  color: var(--text-soft);
  font-size: 0.82rem;
}

.admin-country-row,
.admin-data-row,
.admin-city-row {
  width: 100%;
  padding: 0.9rem 0.95rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: #fff;
  text-align: left;
  box-shadow: 0 12px 28px rgba(17, 26, 38, 0.05);
}

.admin-country-row.is-active {
  border-color: rgba(17, 110, 167, 0.28);
  background: linear-gradient(180deg, #ffffff, #eef7fd);
}

.admin-country-row strong,
.admin-data-row strong,
.admin-city-row strong {
  display: block;
}

.admin-country-row span,
.admin-data-row span,
.admin-city-row span {
  display: block;
  margin-top: 0.28rem;
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.5;
}

.admin-data-row small,
.admin-city-row small,
.analytics-row small {
  display: block;
  margin-top: 0.18rem;
  color: var(--text-soft);
  font-size: 0.84rem;
  line-height: 1.45;
}

/* Admin dashboard visual refresh */
body[data-page="admin"] {
  background:
    radial-gradient(circle at 12% -8%, rgba(117, 219, 255, 0.22), transparent 36rem),
    radial-gradient(circle at 92% 3%, rgba(88, 125, 255, 0.2), transparent 32rem),
    linear-gradient(180deg, #081526 0%, #0b1b30 42%, #0a1728 100%);
  color: #e8f2ff;
}

body[data-page="admin"] #siteFooter {
  display: none !important;
}

body[data-page="admin"] .admin-shell {
  display: grid;
  grid-template-columns: minmax(230px, 260px) minmax(0, 1fr);
  align-items: start;
  gap: 1.2rem;
}

body[data-page="admin"] .admin-page {
  width: min(calc(100% - 2.2rem), 1440px);
  margin: 1.35rem auto 4.2rem;
  gap: 1.2rem;
}

body[data-page="admin"] .admin-rail {
  position: sticky;
  top: 1.2rem;
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
  border-radius: 1.8rem;
  border: 1px solid rgba(138, 214, 255, 0.24);
  background:
    radial-gradient(circle at 100% -8%, rgba(195, 122, 255, 0.24), transparent 48%),
    linear-gradient(180deg, rgba(15, 35, 61, 0.96), rgba(12, 27, 47, 0.96));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 24px 52px rgba(4, 14, 28, 0.46);
}

body[data-page="admin"] .admin-rail-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.22rem;
  letter-spacing: -0.01em;
}

body[data-page="admin"] .admin-rail-dot {
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, #ffffff, #8fd8ff 52%, #5c6cff);
  box-shadow: 0 0 0 6px rgba(131, 214, 255, 0.14), 0 0 22px rgba(108, 174, 255, 0.6);
}

body[data-page="admin"] .admin-rail-nav {
  display: grid;
  gap: 0.45rem;
}

body[data-page="admin"] .admin-rail-nav a {
  display: block;
  padding: 0.72rem 0.85rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(126, 199, 255, 0.14);
  color: rgba(230, 245, 255, 0.88);
  text-decoration: none;
  font-weight: 700;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

body[data-page="admin"] .admin-rail-nav a:hover,
body[data-page="admin"] .admin-rail-nav a:focus-visible,
body[data-page="admin"] .admin-rail-nav a.is-active {
  border-color: rgba(137, 223, 255, 0.46);
  background: linear-gradient(135deg, rgba(49, 124, 193, 0.32), rgba(58, 91, 201, 0.34));
  transform: translateY(-1px);
}

body[data-page="admin"] .admin-shell-main {
  display: grid;
  gap: 1rem;
}

body[data-page="admin"] .admin-topbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: center;
  padding: 0.72rem 0.92rem;
  border-radius: 1.15rem;
  border: 1px solid rgba(129, 204, 255, 0.26);
  background: linear-gradient(180deg, rgba(16, 41, 70, 0.88), rgba(11, 30, 53, 0.88));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

body[data-page="admin"] .admin-search {
  flex: 1 1 22rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.55rem;
  min-height: 3rem;
  padding: 0 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(133, 200, 255, 0.26);
  background: rgba(13, 36, 62, 0.86);
}

body[data-page="admin"] .admin-search span {
  display: grid;
  place-items: center;
  color: rgba(215, 237, 255, 0.75);
}

body[data-page="admin"] .admin-search svg {
  width: 1.08rem;
  height: 1.08rem;
}

body[data-page="admin"] .admin-search input {
  width: 100%;
  border: 0;
  background: transparent;
  color: #eff8ff;
  font-size: 0.98rem;
  outline: none;
}

body[data-page="admin"] .admin-search input::placeholder {
  color: rgba(210, 232, 252, 0.58);
}

body[data-page="admin"] .admin-topbar-actions {
  display: flex;
  align-items: center;
  gap: 0.52rem;
}

body[data-page="admin"] .admin-topbar-icon,
body[data-page="admin"] .admin-topbar-avatar {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  border: 1px solid rgba(141, 205, 255, 0.28);
  background: linear-gradient(180deg, rgba(40, 102, 159, 0.44), rgba(26, 67, 108, 0.62));
  color: #ebf6ff;
  display: grid;
  place-items: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.13);
}

body[data-page="admin"] .admin-topbar-icon svg {
  width: 1.1rem;
  height: 1.1rem;
}

body[data-page="admin"] .admin-topbar-avatar {
  font-size: 0.82rem;
  font-weight: 800;
}

body[data-page="admin"] .admin-hero {
  position: relative;
  overflow: hidden;
  padding: 1.6rem;
  border-radius: 2rem;
  border: 1px solid rgba(122, 200, 255, 0.22);
  background:
    radial-gradient(circle at 10% 8%, rgba(70, 180, 255, 0.22), transparent 40%),
    radial-gradient(circle at 84% 14%, rgba(121, 113, 255, 0.18), transparent 45%),
    linear-gradient(130deg, #0f2c4b, #173b65 52%, #234f84);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 22px 54px rgba(3, 11, 24, 0.46);
}

body[data-page="admin"] .admin-hero::after {
  content: "";
  position: absolute;
  inset: auto -14% -56% auto;
  width: 28rem;
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(117, 210, 255, 0.28), transparent 68%);
  pointer-events: none;
}

body[data-page="admin"] .admin-dashboard {
  gap: 1rem;
}

body[data-page="admin"] .admin-hero-copy h1 {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  letter-spacing: -0.02em;
}

body[data-page="admin"] .admin-hero-copy p {
  color: rgba(229, 242, 255, 0.82);
}

body[data-page="admin"] .admin-login-card,
body[data-page="admin"] .admin-card,
body[data-page="admin"] .admin-country-panel {
  border-radius: 1.45rem;
  border: 1px solid rgba(120, 185, 255, 0.22);
  background:
    linear-gradient(165deg, rgba(15, 40, 70, 0.92), rgba(12, 32, 58, 0.94));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 18px 42px rgba(4, 14, 28, 0.44);
  color: #eaf4ff;
}

body[data-page="admin"] .admin-card h2,
body[data-page="admin"] .admin-card h3,
body[data-page="admin"] .admin-country-panel h3,
body[data-page="admin"] .admin-login-card h2 {
  color: #f4f9ff;
}

body[data-page="admin"] .admin-status {
  border: 1px solid rgba(123, 206, 255, 0.28);
  background: rgba(12, 38, 66, 0.86);
  color: #d9ecff;
}

body[data-page="admin"] .admin-status.is-error {
  border-color: rgba(255, 120, 145, 0.42);
  background: rgba(92, 23, 40, 0.74);
  color: #ffe3eb;
}

body[data-page="admin"] .admin-status.is-success {
  border-color: rgba(110, 230, 170, 0.34);
  background: rgba(16, 70, 49, 0.74);
  color: #dfffee;
}

body[data-page="admin"] .admin-auth-label {
  color: rgba(224, 241, 255, 0.74);
}

body[data-page="admin"] .admin-auth-input {
  border: 1px solid rgba(136, 206, 255, 0.28);
  background: linear-gradient(180deg, rgba(15, 48, 80, 0.86), rgba(11, 33, 59, 0.92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

body[data-page="admin"] .admin-auth-input:focus-within {
  border-color: rgba(121, 214, 255, 0.62);
  box-shadow:
    0 0 0 4px rgba(94, 178, 255, 0.15),
    0 16px 34px rgba(4, 14, 28, 0.44);
}

body[data-page="admin"] .admin-auth-icon {
  color: #8ed4ff;
  background: linear-gradient(180deg, rgba(92, 180, 255, 0.26), rgba(92, 180, 255, 0.08));
  border-right-color: rgba(132, 205, 255, 0.26);
}

body[data-page="admin"] .admin-auth-input input {
  color: #f6fbff;
}

body[data-page="admin"] .admin-auth-input input::placeholder {
  color: rgba(220, 236, 252, 0.52);
}

body[data-page="admin"] .button,
body[data-page="admin"] .button.button-soft {
  border: 1px solid rgba(125, 205, 255, 0.34);
  background: linear-gradient(135deg, #2289cf, #346cd7);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(18, 74, 146, 0.42);
}

body[data-page="admin"] .button:hover,
body[data-page="admin"] .button:focus-visible,
body[data-page="admin"] .button.button-soft:hover,
body[data-page="admin"] .button.button-soft:focus-visible {
  background: linear-gradient(135deg, #2a99e8, #3d79ea);
  transform: translateY(-1px);
}

body[data-page="admin"] .button.button-ghost,
body[data-page="admin"] .button.button-muted {
  background: rgba(17, 56, 92, 0.72);
  border-color: rgba(129, 206, 255, 0.3);
  color: #d8ecff;
}

body[data-page="admin"] .button.button-ghost:hover,
body[data-page="admin"] .button.button-ghost:focus-visible,
body[data-page="admin"] .button.button-muted:hover,
body[data-page="admin"] .button.button-muted:focus-visible {
  background: rgba(26, 69, 110, 0.84);
}

body[data-page="admin"] .admin-country-chip {
  border: 1px solid rgba(123, 207, 255, 0.36);
  background: rgba(24, 79, 128, 0.72);
  color: #dff2ff;
}

body[data-page="admin"] .admin-metric {
  border: 1px solid rgba(130, 203, 255, 0.26);
  background: linear-gradient(165deg, rgba(18, 52, 86, 0.88), rgba(13, 39, 68, 0.92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

body[data-page="admin"] .admin-metric span {
  color: rgba(213, 235, 255, 0.74);
}

body[data-page="admin"] .admin-metric strong {
  color: #f8fcff;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
}

body[data-page="admin"] .admin-map-shell {
  border: 1px solid rgba(124, 200, 255, 0.24);
  background:
    radial-gradient(circle at 24% 30%, rgba(81, 187, 255, 0.2), transparent 22rem),
    linear-gradient(180deg, #091b30, #0d2340 56%, #122a4a);
}

body[data-page="admin"] .admin-map-svg .continent {
  fill: rgba(163, 212, 255, 0.12);
  stroke: rgba(170, 217, 255, 0.22);
}

body[data-page="admin"] .admin-map-hint {
  color: rgba(221, 240, 255, 0.8);
}

body[data-page="admin"] .admin-chart-card,
body[data-page="admin"] .admin-trend-panel,
body[data-page="admin"] .admin-segment-item,
body[data-page="admin"] .admin-country-row,
body[data-page="admin"] .admin-data-row,
body[data-page="admin"] .admin-city-row,
body[data-page="admin"] .admin-trend-row {
  border: 1px solid rgba(125, 197, 255, 0.2);
  background: linear-gradient(165deg, rgba(18, 52, 86, 0.84), rgba(14, 41, 71, 0.88));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

body[data-page="admin"] .admin-country-row span,
body[data-page="admin"] .admin-data-row span,
body[data-page="admin"] .admin-city-row span,
body[data-page="admin"] .admin-trend-copy span,
body[data-page="admin"] .admin-data-row small,
body[data-page="admin"] .admin-city-row small {
  color: rgba(226, 242, 255, 0.86);
}

body[data-page="admin"] .admin-country-row strong,
body[data-page="admin"] .admin-data-row strong,
body[data-page="admin"] .admin-city-row strong,
body[data-page="admin"] .admin-trend-copy strong,
body[data-page="admin"] .admin-segment-item strong,
body[data-page="admin"] .admin-segment-item span,
body[data-page="admin"] .admin-device-head strong,
body[data-page="admin"] .admin-device-head span {
  color: #f6fbff;
}

body[data-page="admin"] .admin-segment-item small,
body[data-page="admin"] .verwaltung-empty-note {
  color: rgba(226, 242, 255, 0.84);
}

body[data-page="admin"] .admin-country-row.is-active {
  border-color: rgba(126, 208, 255, 0.56);
  background: linear-gradient(165deg, rgba(34, 92, 143, 0.88), rgba(19, 61, 98, 0.9));
}

body[data-page="admin"] .admin-chart-axis {
  stroke: rgba(153, 214, 255, 0.26);
}

body[data-page="admin"] .admin-chart-axis-soft {
  stroke: rgba(142, 204, 250, 0.12);
}

body[data-page="admin"] .admin-chart-value,
body[data-page="admin"] .admin-chart-label {
  fill: #d8efff;
}

body[data-page="admin"] .form-field span {
  color: rgba(235, 247, 255, 0.9);
}

body[data-page="admin"] .form-field select,
body[data-page="admin"] .form-field input,
body[data-page="admin"] .form-field textarea {
  border: 1px solid rgba(127, 199, 255, 0.28);
  background: rgba(13, 44, 74, 0.82);
  color: #ebf6ff;
}

body[data-page="admin"] .form-field select option {
  color: #0a1728;
  background: #ffffff;
}

@media (max-width: 1120px) {
  body[data-page="admin"] .admin-shell {
    grid-template-columns: 1fr;
  }

  body[data-page="admin"] .admin-rail {
    position: static;
  }
}

.editor-tile-canvas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 0.85rem;
}

.editor-tile-preview {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 24px;
  border: 1px solid rgba(17, 110, 167, 0.12);
  background: linear-gradient(180deg, #ffffff, #f7fbfe);
  text-align: left;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.editor-tile-preview:hover,
.editor-tile-preview:focus-visible,
.editor-tile-preview.is-active {
  transform: translateY(-1px);
  border-color: rgba(17, 110, 167, 0.28);
  box-shadow: 0 16px 28px rgba(17, 110, 167, 0.12);
}

.editor-tile-preview.is-dark {
  border-color: rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(15, 28, 49, 0.98), rgba(20, 42, 77, 0.98));
  color: #fff;
}

.editor-tile-preview.is-dark .editor-tile-preview-text,
.editor-tile-preview.is-dark .editor-tile-preview-meta {
  color: rgba(255, 255, 255, 0.72);
}

.editor-tile-preview.is-dark .editor-tile-preview-actions a {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.editor-tile-preview-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 5rem;
  padding: 0.8rem;
  border-radius: 18px;
  background: #edf5fd;
  overflow: hidden;
}

.editor-tile-preview-media img {
  max-width: 100%;
  max-height: 3rem;
  object-fit: contain;
}

.editor-tile-preview-copy {
  display: grid;
  gap: 0.55rem;
}

.editor-tile-preview-copy h4 {
  margin: 0;
  font-family: var(--display-font);
  font-size: 1.2rem;
  line-height: 1.02;
}

.editor-tile-preview-text,
.editor-tile-preview-meta {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.55;
  font-size: 0.96rem;
}

.editor-tile-preview-meta {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.editor-tile-preview-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.editor-tile-preview-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 999px;
  border: 1px solid rgba(17, 110, 167, 0.15);
  background: #fff;
  color: var(--brand-dark);
  box-shadow: 0 10px 22px rgba(17, 110, 167, 0.08);
}

.editor-tile-preview-actions svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.editor-tile-preview-actions .fill-dot {
  fill: currentColor;
  stroke: none;
}

.editor-tile-preview-actions .social-instagram {
  background: linear-gradient(135deg, #7638fa, #ff5a34);
  color: #fff;
}

.editor-tile-preview-actions .social-facebook {
  background: linear-gradient(135deg, #4b79ff, #2753c8);
  color: #fff;
}

.editor-tile-preview-actions .social-tiktok {
  background: linear-gradient(135deg, #111111, #0d3e43);
  color: #fff;
}

.editor-tile-preview-actions .social-xing {
  background: linear-gradient(135deg, #1d3d46, #2f735e);
  color: #fff;
}

.editor-tile-preview-actions .social-mail,
.editor-tile-preview-actions .social-email {
  background: linear-gradient(135deg, #5ca7ff, #4a7dff);
  color: #fff;
}

.field-inline {
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.75rem;
  min-height: 3.6rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.field-inline input {
  width: auto;
}

.field-inline input[type="checkbox"] {
  min-width: 1.1rem;
  min-height: 1.1rem;
  padding: 0;
  accent-color: var(--brand);
}

.editor-required-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.85rem;
  margin-top: 0.75rem;
}

.editor-required-toggle {
  display: grid;
  gap: 0.18rem;
  min-height: 4.25rem;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
}

.editor-required-toggle strong {
  font-size: 0.98rem;
}

.editor-required-toggle small {
  color: var(--text-soft);
  line-height: 1.4;
}

.editor-required-toggle .field-inline {
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
}

.editor-json {
  width: 100%;
  min-height: 28rem;
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #0f1115;
  color: #f8f8f8;
  font-family: "SFMono-Regular", "Menlo", "Consolas", monospace;
  font-size: 0.9rem;
  line-height: 1.5;
  resize: vertical;
}

.preview-link-card {
  display: block;
  padding: 1rem;
  border-radius: 16px;
  color: var(--text);
  font-weight: 700;
}

.preview-link-card:hover,
.preview-link-card:focus-visible {
  border-color: var(--brand);
}

.editor-hint {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.analytics-dashboard {
  display: grid;
  gap: 1rem;
}

.analytics-metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.analytics-metric-card,
.analytics-panel {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
}

.analytics-metric-card {
  padding: 1rem 1.1rem;
}

.analytics-metric-card span {
  display: block;
  color: var(--text-soft);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.analytics-metric-card strong {
  display: block;
  margin-top: 0.45rem;
  font-family: var(--display-font);
  font-size: 1.85rem;
  line-height: 1;
}

.analytics-detail-grid {
  align-items: start;
}

.analytics-panel {
  padding: 1rem 1.1rem;
}

.analytics-panel-head {
  margin-bottom: 0.7rem;
}

.analytics-panel-head h4 {
  margin: 0;
  font-family: var(--display-font);
  font-size: 1.2rem;
}

.analytics-list {
  display: grid;
  gap: 0.7rem;
  max-height: min(28rem, 56vh);
  overflow: auto;
  padding-right: 0.35rem;
}

.analytics-row {
  display: grid;
  gap: 0.15rem;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--bg-soft);
}

.analytics-row-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.8rem;
}

.analytics-row strong {
  font-size: 1rem;
}

.analytics-row span,
.analytics-row small {
  color: var(--text-soft);
}

.analytics-row small {
  font-size: 0.86rem;
}

.social-showcase {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(30, 137, 200, 0.2), transparent 26%),
    radial-gradient(circle at bottom left, rgba(219, 31, 47, 0.18), transparent 28%),
    linear-gradient(145deg, #09131c, #0d1d2a 52%, #05080c 100%);
  color: var(--text-on-dark);
}

.social-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 42%);
  pointer-events: none;
}

.social-showcase.is-compact {
  min-height: 100%;
  padding: 1.2rem;
}

.social-showcase-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.45fr);
  gap: 1.6rem;
  align-items: start;
}

.social-showcase .section-copy,
.social-showcase .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.social-showcase-head {
  max-width: 30rem;
  display: grid;
  align-content: start;
  gap: 0.35rem;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
  align-content: start;
}

.social-link {
  display: grid;
  align-content: space-between;
  gap: 1.1rem;
  min-height: 12.6rem;
  padding: 1.25rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-on-dark);
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-4px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.24);
}

.social-link-featured {
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.9rem;
  min-height: 0;
  padding: 1rem 1.05rem;
  border-radius: 22px;
}

.social-link-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.social-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.social-copy {
  display: grid;
  gap: 0.36rem;
  text-align: left;
}

.social-link-featured .social-copy {
  gap: 0.14rem;
}

.social-link strong {
  color: var(--text-on-dark);
  font-size: 1.45rem;
  line-height: 1;
}

.social-link-featured strong {
  font-size: 1.18rem;
  line-height: 1.05;
}

.social-handle,
.social-cta {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.96rem;
}

.social-link-featured .social-handle {
  font-size: 0.86rem;
}

.social-cta {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.social-link-arrow {
  color: rgba(255, 255, 255, 0.55);
  font-size: 1.1rem;
  line-height: 1;
}

.social-instagram {
  background:
    radial-gradient(circle at top right, rgba(252, 175, 69, 0.22), transparent 34%),
    linear-gradient(160deg, rgba(131, 58, 180, 0.34), rgba(225, 48, 108, 0.24), rgba(17, 20, 24, 0.96));
}

.social-tiktok {
  background:
    radial-gradient(circle at top right, rgba(37, 244, 238, 0.16), transparent 32%),
    radial-gradient(circle at bottom left, rgba(254, 44, 85, 0.18), transparent 28%),
    linear-gradient(160deg, rgba(15, 18, 20, 0.98), rgba(7, 11, 15, 0.98));
}

.social-facebook {
  background:
    radial-gradient(circle at top right, rgba(87, 149, 255, 0.2), transparent 34%),
    linear-gradient(155deg, rgba(24, 119, 242, 0.34), rgba(8, 21, 38, 0.96));
}

.social-link.is-compact {
  min-height: auto;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.65rem;
  padding: 0.58rem 0.8rem;
  border-radius: 18px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.social-icon svg {
  width: 1.8rem;
  height: 1.8rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-instagram .social-icon {
  background: linear-gradient(135deg, #833ab4, #fd1d1d 58%, #fcb045);
}

.social-tiktok .social-icon {
  background: linear-gradient(135deg, #25f4ee, #0d0d0d 48%, #fe2c55);
}

.social-facebook .social-icon {
  background: linear-gradient(135deg, #1877f2, #0f5ecc);
}

.social-link-featured.social-instagram {
  background:
    radial-gradient(circle at top right, rgba(252, 175, 69, 0.15), transparent 40%),
    linear-gradient(160deg, rgba(131, 58, 180, 0.18), rgba(225, 48, 108, 0.14), rgba(14, 22, 36, 0.92));
}

.social-link-featured.social-tiktok {
  background:
    radial-gradient(circle at top right, rgba(37, 244, 238, 0.1), transparent 34%),
    radial-gradient(circle at bottom left, rgba(254, 44, 85, 0.12), transparent 30%),
    linear-gradient(160deg, rgba(10, 16, 22, 0.95), rgba(8, 12, 18, 0.96));
}

.social-link-featured.social-facebook {
  background:
    radial-gradient(circle at top right, rgba(87, 149, 255, 0.13), transparent 36%),
    linear-gradient(155deg, rgba(24, 119, 242, 0.2), rgba(14, 28, 55, 0.95));
}

.social-icon svg .fill-dot,
.social-facebook svg,
.social-tiktok svg {
  fill: currentColor;
  stroke: none;
}

.social-link.is-compact .social-link-top {
  display: contents;
}

.social-link.is-compact .social-badge,
.social-link.is-compact .social-handle,
.social-link.is-compact .social-cta {
  display: none;
}

.social-link.is-compact .social-copy {
  gap: 0;
}

.social-link.is-compact strong {
  font-size: 0.84rem;
  line-height: 1.05;
}

.social-link.is-compact .social-icon {
  width: 2rem;
  height: 2rem;
}

.social-link.is-compact .social-icon svg {
  width: 0.94rem;
  height: 0.94rem;
}

.social-showcase.is-compact .social-showcase-head {
  max-width: none;
}

.social-showcase.is-compact .social-showcase-layout {
  display: block;
}

.social-showcase.is-compact h2 {
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
}

.social-showcase.is-compact .section-copy {
  font-size: 0.92rem;
  line-height: 1.55;
}

.social-showcase.is-compact .social-grid {
  gap: 0.7rem;
  margin-top: 1rem;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: end;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.footer-share-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 2.6rem;
  max-width: 2.6rem;
  height: 2.6rem;
  overflow: hidden;
  white-space: nowrap;
  padding: 0;
  gap: 0;
  border-radius: 999px;
  border: 1px solid rgba(15, 38, 67, 0.09);
  background: rgba(15, 38, 67, 0.04);
  color: var(--text-soft);
  transition:
    max-width 240ms ease,
    padding 240ms ease,
    gap 240ms ease,
    transform 160ms ease,
    box-shadow 160ms ease,
    color 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.footer-share-button::after {
  content: attr(aria-label);
  display: inline-block;
  max-width: 0;
  margin-left: 0;
  opacity: 0;
  transform: translateX(-7px);
  overflow: hidden;
  color: currentColor;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1;
  transition:
    max-width 240ms ease,
    margin-left 240ms ease,
    opacity 220ms ease,
    transform 240ms ease;
}

.footer-share-button:hover,
.footer-share-button:focus-visible {
  max-width: 14.5rem;
  padding: 0 0.95rem 0 0.72rem;
  gap: 0.42rem;
  justify-content: flex-start;
  color: var(--brand-dark);
  box-shadow: 0 10px 18px rgba(15, 38, 67, 0.18);
  border-color: rgba(15, 38, 67, 0.14);
  background: rgba(15, 38, 67, 0.1);
  z-index: 3;
  transform: translateY(-1px);
}

.footer-share-button:hover::after,
.footer-share-button:focus-visible::after {
  max-width: 10.4rem;
  margin-left: 0.06rem;
  opacity: 1;
  transform: translateX(0);
}

.footer-share-icon svg {
  width: 1.2rem;
  height: 1.2rem;
}

.share-sheet {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
}

.share-sheet.is-hidden {
  display: none;
}

.share-sheet__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 16, 28, 0.45);
  backdrop-filter: blur(4px);
}

.share-sheet__panel {
  position: relative;
  width: min(92vw, 520px);
  background: #ffffff;
  border-radius: 20px;
  padding: 1.4rem 1.4rem 1.2rem;
  box-shadow: 0 24px 60px rgba(15, 38, 67, 0.25);
}

.share-sheet__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.share-sheet__head h3 {
  margin: 0.2rem 0 0;
  font-size: 1.4rem;
}

.share-sheet__close {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 38, 67, 0.12);
  background: rgba(15, 38, 67, 0.04);
  font-size: 1.3rem;
  line-height: 1;
}

.share-sheet__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.8rem;
}

.share-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 0.9rem;
  border-radius: 14px;
  border: 1px solid rgba(15, 38, 67, 0.1);
  background: #f7f9fc;
  color: #223044;
  font-weight: 600;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.share-chip:hover,
.share-chip:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(15, 38, 67, 0.15);
  border-color: rgba(15, 38, 67, 0.18);
}

.share-chip__icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.share-chip-whatsapp {
  background: linear-gradient(135deg, rgba(33, 196, 93, 0.12), rgba(33, 196, 93, 0.04));
  border-color: rgba(33, 196, 93, 0.25);
  color: #1a7a3f;
}

.share-chip-facebook {
  background: linear-gradient(135deg, rgba(25, 119, 243, 0.12), rgba(25, 119, 243, 0.04));
  border-color: rgba(25, 119, 243, 0.25);
  color: #1653a6;
}

.share-chip-instagram {
  background: linear-gradient(135deg, rgba(214, 41, 118, 0.12), rgba(214, 41, 118, 0.04));
  border-color: rgba(214, 41, 118, 0.25);
  color: #a11457;
}

.share-chip-tiktok {
  background: linear-gradient(135deg, rgba(28, 28, 28, 0.12), rgba(28, 28, 28, 0.04));
  border-color: rgba(28, 28, 28, 0.25);
  color: #1c1c1c;
}

.share-chip-link {
  background: linear-gradient(135deg, rgba(17, 132, 198, 0.12), rgba(17, 132, 198, 0.04));
  border-color: rgba(17, 132, 198, 0.25);
  color: #116ea7;
}

.share-sheet__hint {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  color: var(--text-soft);
}

.footer-link-row {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-link-row-primary {
  align-items: center;
  gap: 1rem 1.15rem;
}

.footer-link {
  color: var(--text-soft);
  font-size: 0.92rem;
  font-weight: 600;
  white-space: nowrap;
  transition: color 160ms ease;
}

.footer-link:hover,
.footer-link:focus-visible {
  color: var(--brand-dark);
}

.footer-admin-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 2.5rem;
  max-width: 2.5rem;
  height: 2.5rem;
  overflow: hidden;
  white-space: nowrap;
  padding: 0;
  gap: 0;
  border-radius: 999px;
  border: 1px solid rgba(15, 38, 67, 0.09);
  background: rgba(15, 38, 67, 0.04);
  transition:
    max-width 240ms ease,
    padding 240ms ease,
    gap 240ms ease,
    transform 160ms ease,
    box-shadow 160ms ease,
    color 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.footer-admin-link::after {
  content: attr(aria-label);
  display: inline-block;
  max-width: 0;
  margin-left: 0;
  opacity: 0;
  transform: translateX(-7px);
  overflow: hidden;
  color: currentColor;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1;
  transition:
    max-width 240ms ease,
    margin-left 240ms ease,
    opacity 220ms ease,
    transform 240ms ease;
}

.footer-admin-link:hover,
.footer-admin-link:focus-visible {
  max-width: 14.5rem;
  padding: 0 0.95rem 0 0.72rem;
  gap: 0.42rem;
  justify-content: flex-start;
  color: var(--brand-dark);
  box-shadow: 0 10px 18px rgba(15, 38, 67, 0.16);
  background: rgba(17, 110, 167, 0.08);
  border-color: rgba(17, 110, 167, 0.18);
  z-index: 3;
  transform: translateY(-1px);
}

.footer-admin-link:hover::after,
.footer-admin-link:focus-visible::after {
  max-width: 10.4rem;
  margin-left: 0.06rem;
  opacity: 1;
  transform: translateX(0);
}

.footer-admin-icon {
  width: 1rem;
  height: 1rem;
  display: inline-flex;
}

.footer-admin-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-social .partner-social-link {
  width: auto;
  min-width: 2.5rem;
  max-width: 2.5rem;
  height: 2.5rem;
  overflow: hidden;
  white-space: nowrap;
  padding: 0;
  gap: 0;
  background: rgba(15, 38, 67, 0.05);
  border: 1px solid rgba(15, 38, 67, 0.08);
  transition:
    max-width 240ms ease,
    padding 240ms ease,
    gap 240ms ease,
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.footer-social .partner-social-link::after {
  content: attr(aria-label);
  display: inline-block;
  max-width: 0;
  margin-left: 0;
  opacity: 0;
  transform: translateX(-7px);
  overflow: hidden;
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1;
  transition:
    max-width 240ms ease,
    margin-left 240ms ease,
    opacity 220ms ease,
    transform 240ms ease;
}

.footer-social .partner-social-link:hover,
.footer-social .partner-social-link:focus-visible {
  max-width: 14.5rem;
  padding: 0 0.95rem 0 0.72rem;
  gap: 0.42rem;
  justify-content: flex-start;
  background: rgba(15, 38, 67, 0.1);
  border-color: rgba(15, 38, 67, 0.14);
  box-shadow: 0 10px 18px rgba(15, 38, 67, 0.16);
  z-index: 3;
}

.footer-social .partner-social-link:hover::after,
.footer-social .partner-social-link:focus-visible::after {
  max-width: 10.4rem;
  margin-left: 0.06rem;
  opacity: 1;
  transform: translateX(0);
}

.footer-social .partner-social-icon {
  width: 1rem;
  height: 1rem;
  flex: 0 0 1rem;
  color: var(--text);
}

.site-footer {
  padding: 0.45rem 0 0.3rem;
  border-top: 1px solid rgba(15, 38, 67, 0.08);
}

.footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  flex-wrap: wrap;
}

.footer-bar-left,
.footer-bar-right {
  display: flex;
  align-items: center;
  gap: 0.95rem 1.2rem;
  flex-wrap: wrap;
  min-width: 0;
}

.footer-bar-right {
  justify-content: flex-end;
}

.whatsapp-chat-float {
  position: fixed;
  right: 1.35rem;
  bottom: 1.35rem;
  z-index: 95;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1.05rem;
  border-radius: 999px;
  color: #ffffff;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.24), transparent 34%),
    linear-gradient(145deg, #2ecb6b, #179654);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 22px 42px rgba(23, 150, 84, 0.28);
  text-decoration: none;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    filter 0.18s ease;
}

.whatsapp-chat-float:hover,
.whatsapp-chat-float:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 26px 48px rgba(23, 150, 84, 0.34);
  filter: saturate(1.05);
}

.whatsapp-chat-float__icon {
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  flex-shrink: 0;
}

.whatsapp-chat-float__icon svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: currentColor;
  stroke: none;
}

.whatsapp-chat-float__copy {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
  line-height: 1.15;
}

.whatsapp-chat-float__copy strong {
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.whatsapp-chat-float__copy span {
  font-size: 0.78rem;
  opacity: 0.92;
}

.legal-backtotop {
  position: fixed;
  right: 1.35rem;
  bottom: 6.25rem;
  z-index: 96;
  width: 2.95rem;
  height: 2.95rem;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(53, 131, 200, 0.96), rgba(36, 105, 171, 0.96));
  color: #ffffff;
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 34px rgba(12, 55, 92, 0.26);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.legal-backtotop.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.legal-backtotop:hover,
.legal-backtotop:focus-visible {
  box-shadow: 0 20px 38px rgba(12, 55, 92, 0.33);
  transform: translateY(-1px);
}

.footer-meta p {
  margin: 0;
  color: var(--text-muted);
}

.footer-meta-inline {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.footer-copy {
  font-size: 0.96rem;
  letter-spacing: 0.03em;
  color: var(--text-muted);
  margin: 0;
  max-width: 100%;
  line-height: 1.45;
  white-space: normal;
  overflow-wrap: break-word;
}

.footer-copy-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-copy-link:hover,
.footer-copy-link:focus-visible {
  color: var(--brand-dark);
}

.footer-links {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.85rem 1.1rem;
  text-align: right;
}

.footer-links-minimal:empty,
.footer-social-minimal:empty {
  display: none;
}

@keyframes idleBars {
  0%,
  100% {
    transform: scaleY(0.45);
  }
  50% {
    transform: scaleY(0.92);
  }
}

@keyframes activeBars {
  0%,
  100% {
    transform: scaleY(0.3);
  }
  25% {
    transform: scaleY(1.35);
  }
  50% {
    transform: scaleY(0.55);
  }
  75% {
    transform: scaleY(1.1);
  }
}

@media (max-width: 1180px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-main-column {
    grid-column: 1 / -1;
  }

  .hero-side-grid {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .player-main {
    grid-template-columns: minmax(0, 1fr) minmax(15rem, 0.75fr);
  }

  .player-controls-panel {
    grid-template-columns: 1fr;
  }

  .player-links {
    grid-column: auto;
  }

  .tiktok-feed-shell {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 980px) {
  .site-header,
  .split-layout,
  .about-layout,
  .stream-layout,
  .partner-card,
  .application-grid,
  .editor-layout,
  .editor-page-grid,
  .app-promo,
  .hero-grid,
  .ticker-grid,
  .card-grid-4,
  .card-grid-3,
  .card-grid-2,
  .schedule-grid,
  .playlist-layout,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .playlist-page-shell {
    grid-template-columns: 1fr;
  }

  .playlist-explorer-shell {
    position: static;
    min-height: 0;
    height: auto;
    max-height: none;
    overflow: visible;
  }

  .playlist-results-shell {
    position: static;
    min-height: 0;
    height: auto;
    max-height: none;
  }

  .playlist-calendar-layout {
    grid-template-columns: 1fr;
  }

  .site-header {
    display: flex;
    flex-direction: column;
    align-items: start;
  }

  .site-nav {
    justify-content: start;
  }

  .hero-main-column,
  .hero-grid > .player-panel {
    grid-column: auto;
  }

  .hero-side-grid {
    grid-template-columns: 1fr;
  }

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

  .player-main {
    grid-template-columns: 1fr;
  }

  .player-now {
    grid-template-columns: auto 1fr;
  }

  .player-controls-panel {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .home-intro-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  body[data-page="home"] .home-intro__title {
    margin-top: 3rem;
  }

  .home-live-card {
    max-width: none;
    justify-self: stretch;
  }

  .player-actions--compact,
  .player-links {
    justify-content: flex-start;
    grid-column: auto;
  }

  .tiktok-feed-embed-card {
    justify-self: stretch;
    width: 100%;
    max-width: none;
    min-height: 19rem;
  }

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

  .editor-page-nav {
    display: grid;
    grid-template-columns: 1fr;
  }

  .social-showcase-layout {
    grid-template-columns: 1fr;
  }

  .social-showcase-head {
    max-width: none;
  }

  .contact-masthead {
    grid-template-columns: 1fr;
  }

  .contact-overview-head {
    flex-direction: column;
    align-items: start;
  }

  .contact-overview-head h2 {
    max-width: none;
  }

  body[data-page="kontakt"] #contactGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .editor-tile-canvas {
    grid-template-columns: 1fr;
  }

  .live-editor-panel {
    top: auto;
    right: 0.5rem;
    left: 0.5rem;
    bottom: 0.5rem;
    width: auto;
    max-height: calc(100vh - 1rem);
  }

  .live-builder-dock {
    left: 0.8rem;
    right: 0.8rem;
    top: auto;
    bottom: 5rem;
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .live-builder-dock__actions,
  .live-selection-bar__actions {
    justify-content: stretch;
  }

  .live-builder-dock__actions .button,
  .live-selection-bar__actions .button {
    flex: 1 1 9rem;
  }

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

  .live-editor-form-grid {
    grid-template-columns: 1fr;
  }

  .live-editor-span-2 {
    grid-column: auto;
  }

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

  .admin-hero,
  .admin-dashboard-grid,
  .admin-grid-2,
  .admin-grid-3,
  .admin-filter-grid,
  .admin-trend-grid {
    grid-template-columns: 1fr;
  }

  .admin-chart-head {
    flex-direction: column;
    align-items: stretch;
  }

  .admin-toolbar-actions {
    justify-content: flex-start;
  }

  .admin-map-shell {
    min-height: 22rem;
  }

  .footer-links {
    text-align: left;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-social {
    justify-content: start;
  }

  .footer-bar,
  .footer-bar-left,
  .footer-bar-right {
    justify-content: flex-start;
  }

  .promo-link-panel {
    display: grid;
  }

  .promo-link-actions {
    justify-content: start;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 68px;
    --header-height-compact: 68px;
  }

  .page-shell,
  .site-footer {
    width: min(calc(100% - 1rem), var(--mobile-content-width));
  }

  .content-block {
    padding-top: var(--mobile-section-spacing);
  }

  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.45rem;
    padding: 0.25rem 0;
    height: var(--header-height);
    width: 100%;
    left: 0;
    right: 0;
    padding-inline: 0.5rem;
  }

  .site-header.is-compact {
    padding: 0.25rem 0;
    height: var(--header-height-compact);
  }

  .brand {
    width: auto;
    margin-right: 0;
    justify-content: flex-start;
    gap: 0.55rem;
    min-width: 0;
  }

  .site-footer {
    align-items: flex-start;
    padding: 1.35rem 0 1.1rem;
  }

  .footer-top,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .whatsapp-chat-float {
    right: 0.9rem;
    bottom: 5.25rem;
  }

  .legal-backtotop {
    right: 0.9rem;
    bottom: 9.1rem;
    width: 2.7rem;
    height: 2.7rem;
    font-size: 1.28rem;
  }

  .footer-meta-inline {
    align-items: center;
    gap: 0.7rem;
  }

  .hero-heading-row h1,
  .masthead h1,
  .section-head h2,
  .newsletter-card h2,
  .contact-form-card h2,
  .editor-card h2,
  .editor-preview-card h2 {
    font-size: clamp(1.78rem, 8.2vw, 2.45rem);
    line-height: 1.02;
  }

  .masthead-copy {
    font-size: 1rem;
    line-height: 1.58;
  }

  .hero-heading-row,
  .player-head,
  .section-head,
  .player-now {
    display: block;
  }

  .player-panel {
    padding: 0.85rem 0.85rem 0.95rem;
  }

  .player-head h2 {
    font-size: clamp(1.32rem, 6.2vw, 1.75rem);
  }

  .player-main {
    gap: 0.65rem;
  }

  .player-artwork {
    width: 4.25rem;
    margin-bottom: 0.8rem;
  }

  .player-controls-panel {
    grid-template-columns: 1fr;
    padding: 0.78rem 0.82rem;
  }

  .player-panel--dock {
    width: calc(100% - 1rem);
    bottom: 0.2rem;
    height: auto;
    box-shadow: 0 12px 26px rgba(12, 55, 92, 0.2);
  }

  body:not([data-page="admin"]) {
    padding-bottom: 5.6rem;
  }

  .player-dock-spacer {
    height: 0;
  }

  .player-now {
    padding: 0.78rem 0.82rem;
  }

  #playerShowTitle {
    font-size: clamp(0.98rem, 5.2vw, 1.2rem);
  }

  #playerShowMeta {
    font-size: 0.84rem;
  }

  .playlist-history-head,
  .playlist-item {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .playlist-position {
    width: 2.2rem;
    height: 2.2rem;
  }

  .whatsapp-chat-float {
    padding: 0.82rem;
  }

  .whatsapp-chat-float__copy {
    display: none;
  }

  .hero-metrics,
  .editor-grid,
  .editor-check-grid,
  .host-grid,
  .application-columns,
  .admin-metric-grid,
  .admin-grid-2,
  .admin-grid-3,
  .admin-filter-grid,
  .admin-trend-grid {
    grid-template-columns: 1fr;
  }

  .admin-filter-actions {
    justify-content: stretch;
  }

  .admin-filter-actions .button {
    width: 100%;
  }

  .admin-chart-filter {
    min-width: 0;
  }

  .admin-chart-svg {
    min-width: 42rem;
  }

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

  .hero-card,
  .content-card,
  .generated-form-block,
  .editor-page-fields,
  .analytics-panel {
    padding: var(--mobile-card-padding);
  }

  .button,
  .file-button,
  .header-action,
  .header-app-editor {
    width: 100%;
    text-align: center;
  }

  .header-extras {
    justify-content: flex-end;
    align-items: center;
    gap: 0.5rem;
    width: auto;
  }

  .site-nav-toggle {
    display: inline-flex;
  }

  .site-header.is-menu-open .site-nav-toggle-bar:nth-child(1) {
    transform: translateY(0.4rem) rotate(45deg);
  }

  .site-header.is-menu-open .site-nav-toggle-bar:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-menu-open .site-nav-toggle-bar:nth-child(3) {
    transform: translateY(-0.4rem) rotate(-45deg);
  }

  .header-decoration-slot {
    justify-content: flex-start;
  }

  .header-decoration {
    width: var(--header-decoration-mobile-size, 3.9rem);
  }

  .header-weather {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.28rem;
    min-width: 0;
    width: auto;
    min-height: 2.2rem;
    padding: 0.28rem 0.48rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    box-shadow: none;
    order: 1;
  }

  .header-weather[hidden] {
    display: none !important;
  }

  .header-weather-copy {
    display: flex;
    align-items: center;
    min-width: 0;
  }

  .header-weather-copy strong {
    font-size: 0.8rem;
    line-height: 1;
    white-space: nowrap;
    display: block;
    color: rgba(255, 255, 255, 0.95);
  }

  .header-weather-copy span {
    display: block;
    font-size: 0.74rem;
    line-height: 1;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.95);
  }

  .header-weather-icon {
    width: 1.2rem;
    height: 1.2rem;
  }

  .site-nav-toggle {
    order: 2;
  }

  .brand-shell {
    padding-right: 0;
    max-width: max-content;
  }

  .brand-logo {
    width: min(42vw, 8.6rem);
    max-width: min(42vw, 8.6rem);
  }

  .brand-decoration--easter {
    left: calc(100% + var(--header-decoration-mobile-offset-x, 0.35rem));
    right: auto;
    top: var(--header-decoration-mobile-offset-y, 50%);
    width: var(--header-decoration-mobile-size, 3.45rem);
    transform: translateY(-50%);
  }

  .brand-decoration--christmas {
    right: 0.45rem;
    top: -0.5rem;
    width: 4.8rem;
  }

  .brand-decoration--newyear {
    right: -0.1rem;
    top: -0.8rem;
    width: 5.4rem;
  }

  .brand-decoration--labourday {
    right: 0.2rem;
    top: -0.3rem;
    width: 5rem;
  }

  .brand-decoration--ascension {
    right: 0.45rem;
    top: -0.2rem;
    width: 4.7rem;
  }

  .brand-decoration--pentecost {
    right: 0.1rem;
    top: 0.15rem;
    width: 4.9rem;
  }

  .brand-decoration--unity {
    right: 0.15rem;
    top: 0;
    width: 4.9rem;
  }

  .brand-decoration--epiphany {
    right: 0.35rem;
    top: -0.15rem;
    width: 4.7rem;
  }

  .brand-decoration--corpuschristi {
    right: 0.2rem;
    top: -0.1rem;
    width: 4.5rem;
  }

  .brand-decoration--allsaints {
    right: 0.4rem;
    top: -0.1rem;
    width: 3.8rem;
  }

  .brand-decoration--reformation {
    right: 0.15rem;
    top: 0.2rem;
    width: 4.5rem;
  }

  .promo-link-panel {
    padding: 1.2rem;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 0.38rem);
    left: 0;
    right: 0;
    z-index: 80;
    border-radius: 1rem;
    background: rgba(13, 66, 102, 0.98);
    box-shadow: 0 18px 34px rgba(9, 45, 73, 0.38);
    padding: 0.75rem 0.85rem;
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }

  .site-header.is-menu-open .site-nav {
    display: grid;
  }

  .site-nav-link {
    font-size: 0.96rem;
    font-weight: 700;
    padding: 0.42rem 0.35rem;
    line-height: 1.25;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.88);
  }

  .site-nav-link.is-active {
    color: #ffffff;
  }

  .page-flow {
    padding-top: 0.9rem;
  }

  .header-decoration-slot {
    display: none;
  }

  .player-panel--dock .player-now {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.35rem;
    padding: 0.12rem 0.3rem;
  }

  .player-panel--dock .player-artwork {
    width: 2.6rem;
    margin-bottom: 0;
  }

  .player-panel--dock .equalizer {
    display: none;
  }

  .player-panel--dock .player-controls-panel {
    padding: 0.12rem 0.3rem 0.12rem;
    gap: 0.26rem 0.4rem;
  }

  .player-panel--dock .player-links {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.5rem;
  }

  .player-panel--dock .player-icon-button {
    width: 2.2rem;
    min-width: 2.2rem;
    height: 2.2rem;
    min-height: 2.2rem;
  }

  .player-panel--dock .player-track-copy strong {
    font-size: 1.12em;
  }

  .player-panel--dock .player-track-copy p {
    font-size: 0.73rem;
  }

  .player-panel--dock .player-track-title {
    font-size: 0.9em;
  }

  .player-panel--dock .player-track-title-text {
    max-width: 100%;
  }

  .player-panel--dock .player-track-title.is-marquee .player-track-title-text {
    padding-left: 100%;
    animation: player-title-marquee-mobile 20s linear infinite;
  }

  .player-panel--dock .player-track-sep {
    font-size: 0.9em;
  }

  .player-panel--dock .player-track-line {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.08rem;
    align-items: start;
  }

  .player-panel--dock .player-track-sep {
    display: none;
  }

  .player-panel--dock .player-links .button {
    padding: 0.35rem 0.6rem;
    font-size: 0.85rem;
  }

  .player-panel--dock .player-main {
    display: grid;
    grid-template-areas:
      "now"
      "controls";
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .player-panel--dock .player-now {
    grid-area: now;
  }

  .player-panel--dock .player-controls-panel {
    grid-area: controls;
  }

  .player-panel--dock .player-links .button {
    padding: 0.4rem 0.65rem;
    font-size: 0.95rem;
  }

  .player-panel--dock .player-controls-panel {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 0.6rem;
    width: 100%;
  }

  .player-panel--dock .player-links {
    width: auto;
  }

  .stream-offline-popup {
    bottom: 7.2rem;
  }

  .player-panel--dock .field-volume {
    display: none;
  }

  .player-panel--dock .player-links a[href*="musikwunsch"] {
    display: none;
  }

.player-panel--dock .player-links a[href*="playlist"] {
  width: auto;
}

  .player-panel--dock .player-actions {
  gap: 0.5rem;
}

  body[data-page="songrequest"] .masthead h1 {
    font-size: clamp(1.55rem, 8.9vw, 2.15rem);
    line-height: 1.08;
  }

  body[data-page="songrequest"] .masthead h1 .line {
    display: block;
    white-space: normal;
  }

  body[data-page="songrequest"] #songRequestLead {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.62;
  }

  body[data-page="playlist"] .masthead h1 {
    font-size: clamp(1.6rem, 8.4vw, 2.2rem);
    line-height: 1.06;
  }

  body[data-page="playlist"] #playlistLead {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.6;
  }

  body[data-page="news"] .masthead h1.news-intro-title {
    font-size: clamp(1.9rem, 8.4vw, 2.45rem);
    line-height: 1.06;
    max-width: 100%;
  }

  body[data-page="news"] #newsIntroLead {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.6;
  }

@keyframes player-title-marquee-mobile {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.stream-offline-popup {
  position: fixed;
  left: 50%;
  bottom: 8.4rem;
  transform: translateX(-50%);
  width: min(calc(100% - 2rem), var(--content-width));
  padding: 0.9rem 1.1rem;
  border-radius: 18px;
  background: #f28c28;
  border: none;
  box-shadow: 0 18px 36px rgba(9, 39, 64, 0.24);
  z-index: 90;
}

.stream-offline-popup.is-hidden {
  display: none;
}

.stream-offline-popup--inline {
  position: relative;
  left: auto;
  bottom: auto;
  transform: none;
  width: 100%;
  margin: 0;
  box-shadow: 0 10px 24px rgba(9, 39, 64, 0.22);
  background: #f28c28;
  color: #ffffff;
}

.player-panel--dock .player-track-copy .stream-offline-popup {
  position: relative;
  left: auto;
  bottom: auto;
  transform: none;
  width: 100%;
  margin: 0;
  background: #f28c28;
  color: #ffffff;
}

.player-panel--dock .player-track-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 0.4rem;
}

.player-panel--dock.stream-offline-visible #playerShowTitle,
.player-panel--dock.stream-offline-visible #playerShowMeta {
  display: none;
}

.stream-offline-popup__content {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #ffffff;
  font-size: 0.95rem;
}

.stream-offline-popup__icon {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  flex: 0 0 auto;
}

.stream-offline-popup__icon svg {
  width: 1.25rem;
  height: 1.25rem;
  max-width: 1.25rem;
  max-height: 1.25rem;
  display: block;
}

.stream-offline-popup__content strong {
  font-size: 1rem;
  font-weight: 700;
}

.stream-offline-popup__text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.stream-offline-popup__text span:last-child {
  display: block;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
}

  .player-panel--dock .player-actions--compact {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
  }

  .player-panel--dock .player-controls-panel {
    grid-template-columns: 1fr;
  }

  .contact-masthead-panel,
  .contact-form-card-emphasis,
  .contact-side-card {
    padding: 1.15rem;
  }

  .contact-form-intro h2,
  .contact-overview-head h2 {
    max-width: none;
  }

  body[data-page="kontakt"] #contactGrid {
    grid-template-columns: 1fr;
  }

  body[data-page="kontakt"] #contactGrid p {
    max-width: none;
  }

  body[data-page="empfang"] .stream-layout {
    gap: 0.85rem;
  }

  body[data-page="empfang"] #receptionPlatformGrid {
    gap: 1rem;
  }

  body[data-page="empfang"] #receptionPlatformGrid .card-media {
    min-height: 4.3rem;
    padding: 0.7rem 0.85rem;
    justify-content: center;
  }

  body[data-page="empfang"] #receptionPlatformGrid .card-media img {
    max-width: min(13rem, 100%);
    max-height: 2.35rem;
  }

  body[data-page="empfang"] #receptionPlatformGrid .content-card {
    padding: 1rem;
  }

  .consent-shell {
    right: 0.7rem;
    left: 0.7rem;
    bottom: 0.7rem;
  }

  .consent-card {
    width: auto;
    padding: 1rem;
  }

  .consent-categories {
    grid-template-columns: 1fr;
  }

  .consent-actions {
    justify-content: stretch;
  }

  .consent-actions .button {
    width: 100%;
  }

  .partner-card {
    gap: 0.85rem;
  }

  .footer-bar {
    gap: 0.85rem;
  }

  .footer-bar-left,
  .footer-bar-right {
    width: 100%;
    gap: 0.7rem 0.9rem;
  }

  .footer-bar-right {
    display: grid;
    justify-content: flex-start;
  }

  .footer-social {
    justify-content: flex-start;
    gap: 0.5rem;
  }

  .footer-link-row,
  .footer-link-row-primary,
  .footer-links {
    gap: 0.65rem 0.95rem;
  }

  .footer-copy,
  .footer-link {
    font-size: 0.94rem;
  }

  .partner-card-photo-shell {
    min-height: 18rem;
    max-height: none;
  }

  .admin-page {
    width: min(calc(100% - 1rem), var(--mobile-content-width));
  }

  .admin-hero,
  .admin-login-card,
  .admin-card,
  .admin-country-panel {
    padding: var(--mobile-card-padding);
  }

  .admin-map-shell {
    min-height: 18rem;
  }

  .player-actions,
  .hero-actions,
  .app-promo-actions,
  .editor-toolbar,
  .live-editor-toolbar,
  .live-editor-head-actions,
  .live-editor-footer,
  .admin-actions,
  .admin-toolbar {
    flex-direction: column;
  }
}

@media (max-width: 820px) {
  body[data-page="playlist"] .masthead h1 {
    font-size: clamp(1.7rem, 8.4vw, 2.45rem);
    line-height: 1.04;
    white-space: normal;
    text-wrap: balance;
  }

  body[data-page="playlist"] #playlistLead {
    max-width: 100%;
    font-size: 1.02rem;
    line-height: 1.62;
  }

  body[data-page="songrequest"] .masthead h1 {
    max-width: 100%;
    font-size: clamp(1.72rem, 8.8vw, 2.48rem);
    line-height: 1.04;
  }

  body[data-page="songrequest"] .masthead h1,
  body[data-page="songrequest"] #songRequestTitle {
    max-width: 100%;
    white-space: normal !important;
    text-wrap: balance;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  body[data-page="songrequest"] .masthead h1 .line {
    white-space: normal !important;
    text-wrap: balance;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  body[data-page="songrequest"] .masthead h1 .line:first-child,
  body[data-page="songrequest"] .masthead h1 .line:nth-child(2),
  body[data-page="songrequest"] .masthead h1 .line:nth-child(3) {
    white-space: normal !important;
    text-wrap: balance;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  body[data-page="songrequest"] #songRequestLead {
    max-width: 100%;
    margin-top: 1.2rem;
    font-size: 1.02rem;
    line-height: 1.62;
  }

  .songrequest-broadcast-note {
    margin-top: 0.95rem;
    font-size: 0.98rem;
  }

  .songrequest-whatsapp-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .songrequest-whatsapp-actions,
  .songrequest-whatsapp-button {
    width: 100%;
  }

  .tiktok-feed-head h2 {
    font-size: clamp(1.7rem, 11vw, 2.5rem);
    white-space: normal;
  }

  .tiktok-feed-embed-card {
    min-height: 16.5rem;
    padding: 0.55rem;
  }

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

  .playlist-hour-grid {
    grid-template-columns: 1fr;
  }

  .playlist-hour-button {
    width: 100%;
  }

  .playlist-result-card {
    grid-template-columns: 1fr;
  }

  .playlist-result-main {
    grid-template-columns: 1fr;
  }

  .playlist-result-time {
    width: fit-content;
  }

  .playlist-vote-button {
    width: fit-content;
  }

  .playlist-results-list {
    max-height: 28rem;
  }

  .home-top-vote-card {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .home-top-vote-count {
    grid-column: 1 / -1;
    width: fit-content;
  }

  .chatbot-shell {
    right: 0.8rem;
    left: 0.8rem;
    bottom: 0.8rem;
    justify-items: stretch;
  }

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

  .chatbot-panel {
    width: 100%;
  }

  .chatbot-form {
    grid-template-columns: 1fr;
  }

  .chatbot-submit {
    width: 100%;
  }
}

body[data-page="about"]:not([data-page="admin"]),
body[data-page="werbung"]:not([data-page="admin"]) {
  padding-bottom: clamp(5.8rem, 14vh, 7.6rem);
}

body[data-page="werbung"] .partner-card--partner-inselkino .partner-social-link {
  border: 1px solid transparent;
  background:
    linear-gradient(145deg, rgba(25, 45, 73, 0.9), rgba(18, 83, 134, 0.94)) padding-box,
    conic-gradient(from var(--button-angle, 0deg), #00ccff, transparent 28%, #d400d4, transparent 68%, #00ccff) border-box;
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.2),
    0 0 16px rgba(0, 204, 255, 0.2),
    0 0 22px rgba(212, 0, 212, 0.12);
  animation:
    cyber-button-ring 5.6s linear infinite,
    partner-icon-intro 620ms cubic-bezier(0.2, 0.9, 0.25, 1) backwards,
    partner-icon-float 3.2s ease-in-out infinite;
}

body[data-page="werbung"] .partner-card--partner-inselkino .partner-social-link:hover,
body[data-page="werbung"] .partner-card--partner-inselkino .partner-social-link:focus-visible {
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.26),
    0 0 28px rgba(0, 204, 255, 0.36),
    0 0 30px rgba(212, 0, 212, 0.22);
}

.button,
.file-button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid transparent;
  color: #ffffff;
  background:
    linear-gradient(145deg, rgba(25, 45, 73, 0.9), rgba(18, 83, 134, 0.94)) padding-box,
    conic-gradient(from var(--button-angle, 0deg), #00ccff, transparent 28%, #d400d4, transparent 68%, #00ccff) border-box;
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.18),
    inset 0 0 18px rgba(0, 204, 255, 0.1),
    0 0 16px rgba(0, 204, 255, 0.18),
    0 0 22px rgba(212, 0, 212, 0.12);
  animation: cyber-button-ring 5.6s linear infinite;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}

.button:hover,
.button:focus-visible,
.file-button:hover,
.file-button:focus-visible {
  transform: translateY(-3px) scale(1.03);
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.24),
    inset 0 0 22px rgba(0, 204, 255, 0.14),
    0 0 28px rgba(0, 204, 255, 0.36),
    0 0 30px rgba(212, 0, 212, 0.22);
  filter: saturate(1.08);
}

.button:active,
.file-button:active {
  transform: translateY(-1px) scale(0.99);
}

.home-songrequest-strip__actions .button::before,
.home-songrequest-strip__actions .button::after {
  content: none;
}

.custom-section-actions .button,
.custom-section .card-cta,
.hero-card-cta {
  color: #ffffff;
  background:
    linear-gradient(145deg, rgba(25, 45, 73, 0.9), rgba(18, 83, 134, 0.94)) padding-box,
    conic-gradient(from var(--button-angle, 0deg), #00ccff, transparent 28%, #d400d4, transparent 68%, #00ccff) border-box;
  border: 1px solid transparent;
  box-shadow:
    inset 0 0 18px rgba(0, 204, 255, 0.1),
    0 14px 28px rgba(0, 0, 0, 0.18),
    0 0 16px rgba(0, 204, 255, 0.18),
    0 0 22px rgba(212, 0, 212, 0.12);
  animation:
    cyber-button-ring 5.6s linear infinite,
    cta-button-float 3.6s ease-in-out infinite;
}

.custom-section-actions .button::before,
.custom-section .card-cta::before,
.hero-card-cta::before {
  content: none;
}

.custom-section-actions .button::after,
.custom-section .card-cta::after,
.hero-card-cta::after {
  top: 0;
  left: -55%;
  width: 42%;
  height: 100%;
  transform: skewX(25deg);
  background: rgba(255, 255, 255, 0.08);
}

@property --button-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

@keyframes cyber-button-ring {
  to {
    --button-angle: 360deg;
  }
}

@media (max-width: 980px) {
  .partner-card--partner-inselkino {
    grid-template-columns: 1fr;
  }

  .partner-card--partner-inselkino .partner-card-photo-shell {
    aspect-ratio: 2048 / 900;
    min-height: 0;
    height: auto;
  }

  .partner-card--partner-inselkino .partner-card-copy {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
  }
}

@media (max-width: 720px) {
  body[data-page="about"]:not([data-page="admin"]),
  body[data-page="werbung"]:not([data-page="admin"]) {
    padding-bottom: 7.6rem;
  }

  .partner-card--partner-inselkino .partner-card-photo {
    padding: clamp(0.7rem, 4vw, 1rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .button,
  .file-button,
  body[data-page="werbung"] .partner-card--partner-inselkino .partner-social-link {
    animation: none !important;
  }
}

.promotion-page {
  max-width: min(1120px, calc(100vw - 2rem));
}

.promotion-masthead {
  min-height: auto;
  padding-bottom: clamp(2rem, 5vw, 3.5rem);
}

body[data-page="promotion"] .promotion-masthead h1 {
  max-width: 100%;
  font-size: clamp(1.72rem, 5.6vw, 3.75rem);
}

.promotion-text-page {
  display: block;
  max-width: min(62rem, 100%);
  min-height: auto;
  padding-bottom: clamp(2rem, 5vw, 3.5rem);
}

.promotion-text-card {
  padding: clamp(1.45rem, 4.5vw, 2.7rem);
  border: 1px solid rgba(17, 110, 167, 0.16);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(30, 137, 200, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff, #f8fbff);
  box-shadow: 0 22px 60px rgba(13, 73, 112, 0.14);
}

.promotion-text-page h1 {
  margin-bottom: clamp(1.1rem, 3vw, 1.7rem);
}

.promotion-text-page h1 span {
  display: block;
  white-space: nowrap;
}

.promotion-visual {
  width: min(82%, 30rem);
  margin: 0 auto clamp(1rem, 3vw, 1.4rem);
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(13, 73, 112, 0.16);
}

.promotion-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: inherit;
}

.promotion-slogan {
  position: relative;
  display: grid;
  gap: 0.12em;
  width: min(100%, 44rem);
  margin: clamp(0.45rem, 2vw, 1rem) 0 clamp(1.2rem, 3.4vw, 1.9rem);
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 4.6vw, 3.45rem);
  font-weight: 800;
  line-height: 0.98;
  text-shadow: 0 10px 24px rgba(5, 41, 77, 0.22);
}

.promotion-slogan span {
  display: block;
  white-space: nowrap;
}

.promotion-slogan i {
  display: block;
  width: min(50%, 17rem);
  height: 0.18rem;
  margin: 0.34rem 0 0 31%;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #35bec8 12%, #25aeb9 82%, transparent);
  transform: rotate(-1.4deg) skewX(-8deg);
  opacity: 0.92;
}

.promotion-sun {
  display: inline-block;
  width: 0.66em;
  aspect-ratio: 1;
  margin-left: 0.12em;
  vertical-align: 0.06em;
  background:
    radial-gradient(circle, #f5bd20 0 16%, transparent 17%),
    conic-gradient(from 0deg, transparent 0 8%, #f5bd20 9% 12%, transparent 13% 20%, #f5bd20 21% 24%, transparent 25% 33%, #f5bd20 34% 37%, transparent 38% 46%, #f5bd20 47% 50%, transparent 51% 100%);
  opacity: 0.95;
}

.promotion-text-page h2 {
  margin: 2.1rem 0 0.75rem;
  color: var(--brand-dark);
  font-size: clamp(1.55rem, 2.55vw, 2.22rem);
  line-height: 1.08;
}

.promotion-text-page p,
.promotion-text-page li {
  max-width: 54rem;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.55vw, 1.1rem);
  line-height: 1.78;
}

.promotion-text-page p {
  margin: 0 0 1.15rem;
}

.promotion-text-page ul {
  display: grid;
  gap: 0.45rem;
  margin: 0 0 1.55rem;
  padding-left: 1.25rem;
}

.promotion-text-page strong {
  color: var(--text);
}

.promotion-text-page a {
  color: var(--brand-dark);
  font-weight: 900;
  text-decoration: none;
}

.promotion-text-page a:hover,
.promotion-text-page a:focus-visible {
  text-decoration: underline;
}

.promotion-cta-row {
  margin-top: clamp(1.4rem, 4vw, 2rem) !important;
}

.promotion-text-page .promotion-text-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 32rem);
  min-height: auto;
  padding-block: 1rem;
  color: #ffffff;
  text-decoration: none;
  white-space: normal;
  text-align: center;
  line-height: 1.25;
}

.promotion-text-page .promotion-text-cta:hover,
.promotion-text-page .promotion-text-cta:focus-visible {
  text-decoration: none;
}

@media (max-width: 720px) {
  .promotion-visual {
    width: min(78%, 20rem);
  }

  .promotion-visual img {
    width: 100%;
  }

  .promotion-text-page .promotion-text-cta {
    width: 100%;
    padding-inline: 1rem;
    font-size: 0.9rem;
  }

  .promotion-slogan {
    font-size: clamp(1.34rem, 5.7vw, 2rem);
  }

}

@media (max-width: 420px) {
  body[data-page="promotion"] .promotion-masthead h1 {
    font-size: clamp(1.42rem, 5.9vw, 1.72rem);
  }
}

.promotion-editorial,
.promotion-benefits {
  padding: clamp(1.3rem, 4vw, 2.2rem);
  border: 1px solid rgba(17, 110, 167, 0.16);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(30, 137, 200, 0.09), transparent 28%),
    linear-gradient(180deg, #ffffff, #f7fbff);
  box-shadow: 0 18px 48px rgba(13, 73, 112, 0.12);
}

.promotion-editorial-copy {
  display: grid;
  gap: 1rem;
  max-width: 58rem;
}

.promotion-editorial p,
.promotion-offer p,
.promotion-benefits li {
  margin: 0;
  color: var(--text-soft);
  font-size: clamp(1rem, 2vw, 1.16rem);
  line-height: 1.7;
}

.promotion-statement {
  color: var(--brand-dark) !important;
  font-size: clamp(1.45rem, 3vw, 2rem) !important;
  font-weight: 900;
  line-height: 1.1 !important;
}

.promotion-offer {
  display: grid;
  gap: clamp(1.2rem, 3vw, 1.8rem);
  padding: clamp(1.4rem, 4vw, 2.4rem);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 88% 12%, rgba(246, 182, 50, 0.22), transparent 24%),
    radial-gradient(circle at 8% 92%, rgba(0, 204, 255, 0.22), transparent 28%),
    linear-gradient(135deg, #0f6fa7 0%, #168bd0 48%, #0a3a6c 100%);
  color: #ffffff;
  box-shadow: 0 24px 60px rgba(7, 53, 91, 0.26);
}

.promotion-offer h2 {
  margin: 0;
  max-width: 14ch;
  color: #ffffff;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 0.95;
}

.promotion-offer .eyebrow,
.promotion-offer .promotion-note {
  color: rgba(255, 255, 255, 0.78);
}

.promotion-offer p {
  color: rgba(255, 255, 255, 0.84);
}

.promotion-feature-grid,
.promotion-price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.promotion-feature-grid article,
.promotion-price {
  display: grid;
  gap: 0.35rem;
  align-content: center;
  min-height: 7rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: calc(var(--radius-lg) + 2px);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.promotion-feature-grid strong {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.15;
}

.promotion-feature-grid span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  line-height: 1.35;
}

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

.promotion-price {
  min-height: 8rem;
  background: rgba(255, 255, 255, 0.92);
  color: #062a55;
}

.promotion-price span {
  font-weight: 800;
  color: #1680bf;
}

.promotion-price strong {
  margin-top: 0.25rem;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1;
}

.promotion-submit-button {
  width: fit-content;
  min-width: min(100%, 17rem);
}

.promotion-note {
  max-width: 46rem;
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
}

.promotion-benefits {
  display: grid;
  gap: 0.9rem;
}

.promotion-benefits h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1;
}

.promotion-benefits ul {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding-left: 1.25rem;
}

.promotion-final .button {
  margin-top: 0.4rem;
}

.promotion-form-block {
  display: flex;
  justify-content: center;
}

.promotion-form-card {
  max-width: min(54rem, 100%);
  background:
    radial-gradient(circle at top right, rgba(30, 137, 200, 0.1), transparent 24%),
    linear-gradient(180deg, #ffffff, #f9fbfe);
}

body[data-page="promotion"] .promotion-form-card .generated-form-block {
  gap: 0.6rem;
}

body[data-page="promotion"] .promotion-form-card .contact-form {
  gap: 0.8rem;
}

body[data-page="promotion"] .promotion-form-card .field input,
body[data-page="promotion"] .promotion-form-card .field textarea,
body[data-page="promotion"] .promotion-form-card .field select {
  padding: 1rem 1.05rem;
  border-radius: 16px;
}

.field-file input[type="file"] {
  cursor: pointer;
}

.promotion-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: clamp(0.8rem, 3vw, 1.6rem);
  background: rgba(3, 18, 39, 0.68);
  backdrop-filter: blur(12px);
}

.promotion-popup__card {
  position: relative;
  width: min(94vw, 920px);
  aspect-ratio: 977 / 862;
  overflow: hidden;
  border-radius: clamp(1rem, 3vw, 1.8rem);
  background: #ffffff;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
}

.promotion-popup__image-wrap {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.promotion-popup__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.promotion-popup__close {
  position: absolute;
  top: clamp(0.5rem, 1.5vw, 0.8rem);
  right: clamp(0.5rem, 1.5vw, 0.8rem);
  z-index: 2;
  display: inline-grid;
  place-items: center;
  width: clamp(2rem, 5vw, 2.7rem);
  height: clamp(2rem, 5vw, 2.7rem);
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #071d3f;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  cursor: pointer;
}

.promotion-popup__link {
  position: absolute;
  left: 44.8%;
  right: 6.2%;
  bottom: 14%;
  height: 7%;
  z-index: 1;
  display: block;
  border-radius: 999px;
  color: transparent;
  cursor: pointer;
  font-size: 0;
}

.promotion-popup__link:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 3px;
  box-shadow: 0 0 0 6px rgba(247, 178, 34, 0.65);
}

@media (max-width: 720px) {
  .promotion-feature-grid,
  .promotion-price-grid {
    grid-template-columns: 1fr;
  }

  .promotion-feature-grid article,
  .promotion-price {
    min-height: 0;
  }

  .promotion-popup {
    align-items: center;
    padding: 0.7rem;
  }

  .promotion-popup__card {
    width: min(94vw, 520px);
    max-height: calc(100dvh - 1.4rem);
    overflow: auto;
  }
}

/* Admin dashboard: hide side navigation and top utility bar */
body[data-page="admin"] .admin-rail,
body[data-page="admin"] .admin-topbar {
  display: none !important;
}

body[data-page="admin"] .admin-shell {
  grid-template-columns: 1fr;
}

body[data-page="admin"] .admin-shell-main {
  max-width: 1180px;
  width: 100%;
  margin-inline: auto;
}

body[data-page="admin"] .button,
body[data-page="admin"] .button.button-soft,
body[data-page="admin"] .button.button-ghost,
body[data-page="admin"] .button.button-muted {
  animation: none;
  isolation: auto;
  overflow: visible;
  filter: none;
}

body[data-page="admin"] .button,
body[data-page="admin"] .button.button-soft {
  border: 1px solid rgba(125, 205, 255, 0.34);
  background: linear-gradient(135deg, #2289cf, #346cd7);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(18, 74, 146, 0.34);
}

body[data-page="admin"] .button:hover,
body[data-page="admin"] .button:focus-visible,
body[data-page="admin"] .button.button-soft:hover,
body[data-page="admin"] .button.button-soft:focus-visible {
  background: linear-gradient(135deg, #2a99e8, #3d79ea);
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(18, 74, 146, 0.4);
}

body[data-page="admin"] .button.button-ghost,
body[data-page="admin"] .button.button-muted {
  background: rgba(17, 56, 92, 0.72);
  border-color: rgba(129, 206, 255, 0.3);
  color: #d8ecff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

body[data-page="admin"] .button.button-ghost:hover,
body[data-page="admin"] .button.button-ghost:focus-visible,
body[data-page="admin"] .button.button-muted:hover,
body[data-page="admin"] .button.button-muted:focus-visible {
  background: rgba(26, 69, 110, 0.84);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

body[data-page="admin"] .admin-hero {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

body[data-page="admin"] .admin-hero::after {
  content: none;
}

body[data-page="admin"] .admin-login-card {
  background: rgba(11, 30, 53, 0.78);
}

body[data-page="admin"] .admin-login-card .section-copy,
body[data-page="admin"] .admin-card .section-copy,
body[data-page="admin"] .admin-country-panel .section-copy,
body[data-page="admin"] .admin-chart-head .section-copy {
  color: rgba(232, 244, 255, 0.88);
}

body[data-page="admin"] .admin-page {
  width: min(calc(100% - 1.2rem), 1260px);
  margin-top: clamp(3.8rem, 8vh, 5.6rem);
}

body[data-page="admin"] .admin-shell-main {
  gap: clamp(1rem, 3vw, 1.6rem);
}

body[data-page="admin"] .admin-hero {
  align-items: stretch;
}

body[data-page="admin"] .admin-hero-copy {
  gap: 1.25rem;
}

body[data-page="admin"] .admin-hero-copy h1 {
  max-width: 12ch;
  font-size: clamp(2rem, 4.4vw, 3.65rem);
  line-height: 1;
}

body[data-page="admin"] .admin-status {
  width: fit-content;
  max-width: 100%;
}

body[data-page="admin"] .admin-visual-preview {
  display: grid;
  gap: 0.82rem;
  width: min(100%, 29rem);
  margin-top: auto;
  padding: 0.9rem;
  border: 1px solid rgba(119, 200, 255, 0.22);
  border-radius: 1.4rem;
  background:
    linear-gradient(135deg, rgba(18, 74, 123, 0.62), rgba(10, 31, 55, 0.82)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 3.2rem);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 22px 42px rgba(3, 12, 25, 0.24);
}

body[data-page="admin"] .admin-preview-head,
body[data-page="admin"] .admin-preview-metrics {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
}

body[data-page="admin"] .admin-preview-head span,
body[data-page="admin"] .admin-preview-metrics strong {
  color: rgba(232, 246, 255, 0.86);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body[data-page="admin"] .admin-preview-head strong,
body[data-page="admin"] .admin-preview-metrics em {
  color: #ffffff;
  font-style: normal;
  font-weight: 900;
}

body[data-page="admin"] .admin-preview-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

body[data-page="admin"] .admin-preview-metrics span {
  display: grid;
  gap: 0.22rem;
  padding: 0.55rem 0.62rem;
  border-radius: 0.82rem;
  border: 1px solid rgba(142, 211, 255, 0.18);
  background: rgba(255, 255, 255, 0.095);
}

body[data-page="admin"] .admin-preview-chart {
  display: none;
}

body[data-page="admin"] .admin-preview-dashboard {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 0.68rem;
  min-height: 7.8rem;
}

body[data-page="admin"] .admin-preview-map,
body[data-page="admin"] .admin-preview-panel,
body[data-page="admin"] .admin-preview-line {
  border: 1px solid rgba(142, 211, 255, 0.2);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

body[data-page="admin"] .admin-preview-map {
  position: relative;
  min-height: 7.8rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 28% 38%, rgba(133, 217, 255, 0.22), transparent 1.8rem),
    radial-gradient(circle at 62% 56%, rgba(102, 156, 255, 0.18), transparent 2rem),
    linear-gradient(145deg, rgba(9, 32, 57, 0.82), rgba(12, 45, 78, 0.72));
}

body[data-page="admin"] .admin-preview-map::before {
  content: "";
  position: absolute;
  inset: 1.2rem;
  border-radius: 44% 56% 48% 52%;
  border: 1px solid rgba(205, 235, 255, 0.16);
  background:
    linear-gradient(135deg, transparent 0 36%, rgba(208, 239, 255, 0.12) 37% 43%, transparent 44%),
    linear-gradient(45deg, transparent 0 52%, rgba(208, 239, 255, 0.1) 53% 58%, transparent 59%);
}

body[data-page="admin"] .admin-preview-map span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 0.74rem;
  aspect-ratio: 1;
  border-radius: 999px;
  background: #83dfff;
  box-shadow: 0 0 0 0.38rem rgba(131, 223, 255, 0.16), 0 0 1.2rem rgba(131, 223, 255, 0.58);
}

body[data-page="admin"] .admin-preview-panel {
  display: grid;
  align-content: center;
  gap: 0.54rem;
  padding: 0.8rem;
}

body[data-page="admin"] .admin-preview-panel i {
  display: block;
  width: var(--w);
  height: 0.56rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #80ddff, #4f86ef);
  box-shadow: 0 0 1rem rgba(80, 195, 255, 0.22);
}

body[data-page="admin"] .admin-preview-line {
  grid-column: 2;
  width: 100%;
  height: 3.8rem;
  padding: 0.55rem;
}

body[data-page="admin"] .admin-preview-line path {
  fill: none;
  stroke: #8ddfff;
  stroke-width: 5;
  stroke-linecap: round;
  filter: drop-shadow(0 0 0.55rem rgba(141, 223, 255, 0.44));
}

body[data-page="admin"] .admin-login-card {
  align-self: center;
  padding: clamp(1rem, 2vw, 1.45rem);
  border-radius: 1.5rem;
}

body[data-page="admin"] .admin-dashboard:not([hidden]) {
  display: grid;
  gap: 1.05rem;
}

body[data-page="admin"] .admin-metric-grid {
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
}

body[data-page="admin"] .admin-card,
body[data-page="admin"] .admin-country-panel {
  border-radius: 1.35rem;
}

body[data-page="admin"] .admin-metric {
  min-height: 8.2rem;
}

@media (min-width: 1121px) {
  body[data-page="admin"] .admin-hero {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 440px);
    gap: clamp(1.4rem, 4vw, 3rem);
  }

  body[data-page="admin"] .admin-hero-copy {
    padding: 1.2rem 0;
  }
}

@media (max-width: 760px) {
  body[data-page="admin"] .admin-page {
    width: min(calc(100% - 1rem), 34rem);
    margin-top: 1.2rem;
  }

  body[data-page="admin"] .admin-hero-copy h1 {
    max-width: 12ch;
    font-size: clamp(2rem, 11vw, 3.2rem);
  }

  body[data-page="admin"] .admin-status {
    width: 100%;
  }

  body[data-page="admin"] .admin-visual-preview {
    gap: 0.7rem;
    padding: 0.78rem;
    border-radius: 1.1rem;
  }

  body[data-page="admin"] .admin-preview-dashboard {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  body[data-page="admin"] .admin-preview-map {
    min-height: 8rem;
  }

  body[data-page="admin"] .admin-preview-line {
    grid-column: auto;
  }

  body[data-page="admin"] .admin-preview-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
  }

  body[data-page="admin"] .admin-preview-metrics span {
    padding: 0.55rem;
  }

  body[data-page="admin"] .admin-preview-metrics strong {
    font-size: 0.68rem;
    letter-spacing: 0.04em;
  }

  body[data-page="admin"] .admin-preview-metrics em {
    font-size: 0.95rem;
  }

  body[data-page="admin"] .admin-preview-chart {
    min-height: 5.4rem;
  }
}

body[data-page="admin"] {
  padding-top: var(--header-height-compact);
}

body[data-page="admin"] .admin-page {
  margin-top: clamp(3.8rem, 8vh, 5.6rem);
}

@media (max-width: 720px) {
  body[data-page="admin"] {
    padding-top: var(--header-height-compact);
  }

  body[data-page="admin"] .admin-page {
    margin-top: 2.6rem;
  }
}
