:root {
  --bg: #ffffff;
  --bg-soft: #ffffff;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --surface-muted: #f3eee7;
  --text: #18222c;
  --muted: #64707b;
  --accent: #d96b2b;
  --accent-strong: #b95318;
  --accent-soft: rgba(217, 107, 43, 0.12);
  --border: rgba(24, 34, 44, 0.1);
  --border-strong: rgba(24, 34, 44, 0.16);
  --shadow-soft: 0 18px 46px rgba(24, 34, 44, 0.08);
  --shadow-strong: 0 28px 80px rgba(24, 34, 44, 0.12);
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --page-width: min(1320px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  background:
    radial-gradient(
      circle at top left,
      rgba(217, 107, 43, 0.08),
      transparent 24%
    ),
    radial-gradient(
      circle at right 12%,
      rgba(232, 180, 140, 0.1),
      transparent 20%
    ),
    linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
}

a {
  color: inherit;
}

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

.page {
  width: var(--page-width);
  margin: 0 auto;
  padding: 30px 0 52px;
}

.hero,
.topbar,
.layout,
.grid {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent-strong);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}

.badge,
.status,
.play-pill,
.back,
.link {
  border-radius: 999px;
}

.badge,
.status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  background: var(--accent-soft);
  border: 1px solid rgba(217, 107, 43, 0.18);
  color: var(--accent-strong);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.panel,
.card,
.empty,
.not-found {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.card,
.panel,
.empty,
.not-found {
  border-radius: var(--radius-lg);
}

.index-page .page::before,
.player-page .page::before,
.not-found-page main::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  pointer-events: none;
  filter: blur(6px);
}

.index-page .hero {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 28px;
}

.index-page .hero-copy {
  flex: 1 1 auto;
  min-width: 0;
}

.hero-title-row {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.site-brand-logo {
  width: auto;
  height: auto;
  object-fit: contain;
}

.hero-brand {
  margin-bottom: 0;
  flex: 0 0 auto;
}

.hero-brand-logo {
  width: min(100%, 360px);
  max-height: 100px;
  filter: drop-shadow(0 18px 26px rgba(24, 34, 44, 0.08));
}

.index-page .hero-badge {
  flex: 0 0 auto;
  align-self: flex-start;
}

.index-page h1,
.player-page .info h1,
.not-found-page h1 {
  margin: 0;
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.index-page h1 {
  font-size: clamp(20px, 3vw, 38px);
  max-width: none;
  width: 100%;
}

.lead,
.card-subtitle,
.info p,
.not-found p,
.status-text {
  color: var(--muted);
  line-height: 1.65;
}

.index-page .lead {
  margin: 14px 0 0;
  max-width: 58ch;
  font-size: 18px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}

.index-page {
  padding-bottom: 168px;
}

.adsense-banner {
  position: relative;
  z-index: 6;
}

.adsense-banner-shell {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 56px rgba(24, 34, 44, 0.14);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.adsense-banner-label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.adsense-banner-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
}

.adsense-banner-toggle {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(24, 34, 44, 0.08);
  color: var(--text);
  cursor: pointer;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.adsense-banner-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(217, 107, 43, 0.24);
  box-shadow: 0 16px 34px rgba(24, 34, 44, 0.1);
}

.adsense-banner-toggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-size: 18px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.adsense-banner-content {
  padding: 0 12px 12px;
}

.adsense-banner--collapsible.is-collapsed .adsense-banner-content {
  display: none;
}

.adsense-banner--collapsible.is-expanded .adsense-banner-toggle-icon {
  transform: rotate(180deg);
}

.adsense-banner-unit {
  display: block;
}

.adsense-banner-unit--horizontal {
  height: 350px;
  max-height: 350px;
  min-height: 350px;
}

.adsense-banner-unit--square {
  height: 320px;
  min-height: 320px;
}

.adsense-banner--inline {
  margin: 14px 4px 0;
}

.adsense-banner--square {
  margin: 16px 0 0;
}

.adsense-banner--square .adsense-banner-shell,
.adsense-banner--inline .adsense-banner-shell,
.adsense-banner--floating .adsense-banner-shell {
  padding: 0 12px 12px;
}

.adsense-banner--floating {
  position: fixed;
  left: 50%;
  bottom: 18px;
  width: min(1120px, calc(100% - 24px));
  transform: translate(-50%, calc(100% + 22px));
  animation: adsense-slide-up 0.8s cubic-bezier(0.2, 0.9, 0.2, 1) 0.35s forwards;
}

@keyframes adsense-slide-up {
  from {
    transform: translate(-50%, calc(100% + 22px));
    opacity: 0;
  }

  to {
    transform: translate(-50%, 0);
    opacity: 1;
  }
}

.site-footer {
  margin-top: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.site-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
}

.site-footer-copy {
  display: grid;
  gap: 6px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}

.site-footer-copy strong {
  color: var(--text);
  font-size: 15px;
}

.site-footer-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.site-footer-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.76);
  color: var(--text);
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(24, 34, 44, 0.06);
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.site-footer-link:hover {
  transform: translateY(-1px);
  border-color: rgba(217, 107, 43, 0.22);
  box-shadow: 0 16px 34px rgba(24, 34, 44, 0.1);
}

.privacy-page .page {
  width: min(980px, calc(100% - 32px));
}

.privacy-page .hero {
  display: grid;
  gap: 16px;
  margin-bottom: 24px;
}

.privacy-lead {
  margin: 0;
  max-width: 70ch;
  color: var(--muted);
  line-height: 1.7;
  font-size: 18px;
}

.privacy-stack {
  display: grid;
  gap: 18px;
}

.privacy-card {
  padding: 24px;
}

.privacy-card h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 4vw, 36px);
  line-height: 1;
  letter-spacing: -0.03em;
}

.privacy-card h3 {
  margin: 18px 0 10px;
  font-size: 20px;
  line-height: 1.2;
}

.privacy-card p,
.privacy-card li {
  color: var(--muted);
  line-height: 1.72;
}

.privacy-card p {
  margin: 0 0 12px;
}

.privacy-card ul {
  margin: 0;
  padding-left: 22px;
}

.privacy-card li + li {
  margin-top: 8px;
}

.privacy-note {
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: var(--accent-soft);
  border: 1px solid rgba(217, 107, 43, 0.16);
}

.privacy-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-strong);
}

.privacy-meta {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
}

.card {
  display: block;
  overflow: hidden;
  text-decoration: none;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(217, 107, 43, 0.18);
}

.card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background:
    radial-gradient(
      circle at top right,
      rgba(255, 220, 187, 0.55),
      transparent 26%
    ),
    linear-gradient(135deg, #d9b38c 0%, #b7cbd8 48%, #8ba3b4 100%);
}

.card-media img,
.frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.preview-generator {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: end;
  justify-content: start;
  padding: 20px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.04em;
  background:
    linear-gradient(
      180deg,
      rgba(24, 34, 44, 0.08) 0%,
      rgba(24, 34, 44, 0.55) 100%
    ),
    linear-gradient(135deg, #8da8bb 0%, #d48e61 100%);
}

.play-pill {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  border: 1px solid rgba(24, 34, 44, 0.08);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-body {
  padding: 18px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.78) 0%,
    rgba(255, 255, 255, 0.98) 100%
  );
}

.card-title {
  margin: 0;
  font-size: 22px;
  line-height: 1.1;
}

.card-subtitle {
  margin: 10px 0 0;
  min-height: 3.1em;
}

.card-meta {
  margin-top: 14px;
  color: var(--accent-strong);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.empty,
.not-found {
  padding: 28px;
}

.player-page {
  background:
    radial-gradient(
      circle at top left,
      rgba(217, 107, 43, 0.14),
      transparent 22%
    ),
    radial-gradient(
      circle at top right,
      rgba(201, 224, 235, 0.55),
      transparent 24%
    ),
    linear-gradient(180deg, #fffdfa 0%, #f4f0ea 100%);
}

.player-page .page {
  width: min(1200px, calc(100% - 32px));
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

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

.topbar-brand-link {
  flex: 0 0 auto;
}

.topbar-brand-logo {
  width: 172px;
  max-height: 54px;
  filter: drop-shadow(0 14px 22px rgba(24, 34, 44, 0.08));
}

.back,
.link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--border);
  box-shadow: 0 10px 24px rgba(24, 34, 44, 0.06);
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.back:hover,
.link:hover {
  transform: translateY(-1px);
  border-color: rgba(217, 107, 43, 0.22);
  box-shadow: 0 16px 34px rgba(24, 34, 44, 0.1);
}

.layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: 24px;
}

.panel {
  overflow: hidden;
}

.viewer {
  padding: 18px;
}

.frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #d8dde1;
}

.frame::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(24, 34, 44, 0.1) 100%
  );
  pointer-events: none;
}

.frame video {
  background: #d8dde1;
}

.player-frame-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: linear-gradient(
    180deg,
    rgba(7, 12, 18, 0.2) 0%,
    rgba(7, 12, 18, 0.72) 100%
  );
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.player-frame-overlay[hidden] {
  display: none !important;
}

.player-frame-overlay.is-visible {
  opacity: 1;
}

.player-frame-overlay__card {
  width: min(100%, 420px);
  display: grid;
  gap: 10px;
  padding: 20px 22px;
  border-radius: 22px;
  background: rgba(12, 20, 29, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.26);
  color: #f5f7fa;
  text-align: center;
}

.player-frame-overlay__card strong {
  font-size: 20px;
}

.player-frame-overlay__card p {
  margin: 0;
  color: rgba(245, 247, 250, 0.84);
  line-height: 1.6;
}

.player-frame-overlay--error {
  background: linear-gradient(
    180deg,
    rgba(42, 8, 8, 0.3) 0%,
    rgba(42, 8, 8, 0.8) 100%
  );
}

.player-frame-overlay--error .player-frame-overlay__card {
  border-color: rgba(255, 132, 132, 0.24);
}

.player-page .frame {
  --video-top-crop: 5%;
}

.player-page .frame video {
  height: calc(100% + var(--video-top-crop));
  transform: translateY(calc(var(--video-top-crop) * -1));
  transform-origin: top center;
}

.player-page .frame:fullscreen,
.player-page .frame:-webkit-full-screen {
  width: 100vw;
  height: 100vh;
  max-width: none;
  border-radius: 0;
  background: #000;
}

.player-page .frame:fullscreen video,
.player-page .frame:-webkit-full-screen video {
  width: 100vw;
  height: calc(100vh + var(--video-top-crop));
  object-fit: cover;
  transform: translateY(calc(var(--video-top-crop) * -1));
  transform-origin: top center;
}

.player-page .frame video:fullscreen,
.player-page .frame video:-webkit-full-screen {
  width: 100vw;
  height: calc(100vh + var(--video-top-crop));
  object-fit: cover;
  transform: translateY(calc(var(--video-top-crop) * -1));
  transform-origin: top center;
}

.player-page .frame video:fullscreen::backdrop {
  background: #000;
}

.fullscreen-weather-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5%;
  min-height: 52px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  background: linear-gradient(
    180deg,
    rgba(8, 16, 24, 0.52) 0%,
    rgba(8, 16, 24, 0.18) 100%
  );
  backdrop-filter: blur(16px);
  z-index: 4;
  pointer-events: none;
}

.fullscreen-weather-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  color: #fff;
}

.fullscreen-weather-reading {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
}

.fullscreen-weather-temp {
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.05em;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.fullscreen-weather-unit {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.88;
}

.fullscreen-weather-meta {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
}

.fullscreen-weather-label {
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.86;
}

.fullscreen-weather-wind {
  font-size: 12px;
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: 0.04em;
  opacity: 0.94;
}

.player-page .frame:fullscreen .fullscreen-weather-bar,
.player-page .frame:-webkit-full-screen .fullscreen-weather-bar {
  display: flex;
}

.player-page .frame:fullscreen .weather-watermark--player,
.player-page .frame:-webkit-full-screen .weather-watermark--player,
.player-page .frame:fullscreen .badge-watermark,
.player-page .frame:-webkit-full-screen .badge-watermark {
  display: none;
}

.player-page .frame:fullscreen::after,
.player-page .frame:-webkit-full-screen::after {
  height: 34%;
}

.player-page .badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
}

.player-page .badge-watermark {
  padding: 0;
  min-height: auto;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: lowercase;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.weather-watermark {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(12px);
  color: #fff;
  text-align: center;
}

.weather-reading {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  font-variant-numeric: tabular-nums;
}

.weather-temp {
  font-size: clamp(28px, 3vw, 34px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.05em;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.26);
}

.weather-unit {
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.88;
}

.weather-meta {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  align-items: flex-start;
}

.weather-label {
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.84;
}

.weather-wind {
  font-size: 10px;
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: 0.04em;
  opacity: 0.9;
}

.weather-icon {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.weather-icon::before,
.weather-icon::after {
  content: "";
  position: absolute;
}

.weather-icon--sun::before,
.weather-icon--moon::before,
.weather-icon--partly-cloudy-day::before,
.weather-icon--partly-cloudy-night::before {
  inset: 4px;
  border-radius: 50%;
}

.weather-icon--sun::before,
.weather-icon--partly-cloudy-day::before {
  background: radial-gradient(
    circle,
    #ffe08c 0%,
    #ffc34d 72%,
    rgba(255, 195, 77, 0.28) 100%
  );
  box-shadow: 0 0 0 4px rgba(255, 202, 88, 0.16);
}

.weather-icon--moon::before,
.weather-icon--partly-cloudy-night::before {
  background: #f7f0d8;
  box-shadow: inset -6px 0 0 0 rgba(197, 205, 255, 0.55);
}

.weather-icon--cloud::before,
.weather-icon--partly-cloudy-day::after,
.weather-icon--partly-cloudy-night::after,
.weather-icon--fog::before,
.weather-icon--drizzle::before,
.weather-icon--rain::before,
.weather-icon--snow::before,
.weather-icon--storm::before {
  left: 3px;
  right: 3px;
  bottom: 5px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.96) 0%,
    rgba(220, 231, 238, 0.96) 100%
  );
  box-shadow:
    -6px -4px 0 0 rgba(244, 248, 250, 0.96),
    6px -6px 0 0 rgba(234, 241, 245, 0.96);
}

.weather-icon--fog::after {
  left: 2px;
  right: 2px;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 -5px 0 rgba(255, 255, 255, 0.52);
}

.weather-icon--drizzle::after,
.weather-icon--rain::after,
.weather-icon--snow::after,
.weather-icon--storm::after {
  left: 6px;
  bottom: -1px;
  width: 12px;
  height: 8px;
}

.weather-icon--drizzle::after {
  border-bottom: 2px dotted rgba(157, 213, 255, 0.95);
}

.weather-icon--rain::after {
  border-bottom: 3px solid rgba(132, 206, 255, 0.95);
  transform: skewX(-18deg);
}

.weather-icon--snow::after {
  background:
    radial-gradient(
      circle at 2px 2px,
      rgba(255, 255, 255, 0.96) 0 2px,
      transparent 2.5px
    ),
    radial-gradient(
      circle at 10px 4px,
      rgba(255, 255, 255, 0.96) 0 2px,
      transparent 2.5px
    );
}

.weather-icon--storm::after {
  width: 10px;
  height: 12px;
  left: 8px;
  bottom: -2px;
  background: linear-gradient(180deg, #ffe07d 0%, #ffbe38 100%);
  clip-path: polygon(
    50% 0,
    100% 0,
    62% 46%,
    84% 46%,
    34% 100%,
    43% 60%,
    18% 60%
  );
}

.weather-watermark--card {
  left: 50%;
  right: auto;
  bottom: 10px;
  width: calc(100% - 20px);
  max-width: calc(100% - 20px);
  gap: 8px;
  padding: 8px 10px;
  background: linear-gradient(
    180deg,
    rgba(19, 30, 39, 0.28) 0%,
    rgba(19, 30, 39, 0.46) 100%
  );
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
  justify-content: center;
}

.weather-watermark--card .weather-meta {
  align-items: center;
  text-align: center;
}

.weather-watermark--player .weather-meta {
  align-items: flex-start;
}

.weather-watermark--player {
  bottom: 14px;
}

.weather-watermark--card .weather-icon {
  width: 20px;
  height: 20px;
  flex-basis: 20px;
}

.weather-watermark--card .weather-temp {
  font-size: 22px;
}

.weather-watermark--card .weather-unit {
  font-size: 11px;
}

.weather-watermark--card .weather-label {
  font-size: 10px;
}

.weather-watermark--card .weather-wind {
  font-size: 9px;
}

.player-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 14px 4px 0;
  flex-wrap: wrap;
}

.music-controls {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.music-volume {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 24px rgba(24, 34, 44, 0.08);
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.music-volume input {
  width: 120px;
  accent-color: var(--accent-strong);
}

.action-button {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(24, 34, 44, 0.08);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.action-button:hover {
  transform: translateY(-1px);
  border-color: rgba(217, 107, 43, 0.24);
  box-shadow: 0 16px 34px rgba(24, 34, 44, 0.1);
}

.status-text,
.stream-note {
  margin: 14px 4px 0;
}

.flight-deals {
  margin: 16px 4px 0;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(
    180deg,
    rgba(255, 251, 245, 0.97) 0%,
    rgba(247, 244, 238, 0.96) 100%
  );
  border: 1px solid rgba(183, 111, 47, 0.16);
  box-shadow: 0 22px 44px rgba(24, 34, 44, 0.1);
}

.flight-deals-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.flight-deals-header strong {
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7b4218;
}

.flight-deals-header span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.flight-search-form {
  display: grid;
  gap: 8px;
  justify-items: stretch;
  width: min(100%, 560px);
  flex: 1 1 420px;
  margin-left: auto;
}

.flight-search-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: right;
}

.flight-search-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: stretch;
  gap: 8px;
}

.flight-search-select-wrap {
  position: relative;
  min-width: 0;
}

.flight-search-select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 10px;
  height: 10px;
  border-right: 2px solid #9a531b;
  border-bottom: 2px solid #9a531b;
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}

.flight-search-select {
  width: 100%;
  min-height: 56px;
  padding: 0 46px 0 16px;
  border: 1px solid rgba(183, 111, 47, 0.36);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--text);
  font: inherit;
  font-weight: 600;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.flight-search-select:focus {
  outline: none;
  border-color: rgba(183, 111, 47, 0.78);
  box-shadow: 0 0 0 4px rgba(217, 107, 43, 0.14);
}

.flight-search-note {
  margin: 0;
  max-width: none;
  color: #7a624e;
  font-size: 12px;
  line-height: 1.45;
  text-align: right;
}

.flight-search-button {
  min-width: 110px;
  min-height: 56px;
  align-self: stretch;
}

.flight-deals-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.flight-deals-summary span {
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(239, 244, 248, 0.95);
  color: #4b5965;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 600;
}

.flight-deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 12px;
}

.flight-origin-card {
  display: grid;
  gap: 12px;
  min-width: 0;
  align-content: start;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(255, 248, 241, 0.96) 100%
  );
  border: 1px solid rgba(183, 111, 47, 0.14);
  box-shadow: 0 18px 32px rgba(24, 34, 44, 0.08);
}

.flight-origin-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.flight-origin-header > * {
  min-width: 0;
}

.flight-origin-code {
  font-size: clamp(24px, 2.4vw, 30px);
  line-height: 1;
  font-weight: 800;
  color: #a14d14;
  overflow-wrap: anywhere;
}

.flight-route-title {
  margin-top: 8px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.3;
  font-weight: 800;
}

.flight-origin-destination {
  color: #7a5a47;
  font-size: 15px;
  font-weight: 700;
  text-align: right;
  overflow-wrap: anywhere;
}

.flight-origin-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.flight-origin-meta span {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(239, 244, 248, 0.95);
  color: #4b5965;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 600;
}

.flight-offers-list {
  display: grid;
  gap: 10px;
}

.flight-offer-item {
  display: grid;
  gap: 12px;
  min-width: 0;
  padding: 16px;
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 246, 236, 0.98) 100%
  );
  border: 1px solid rgba(183, 111, 47, 0.12);
  box-shadow: 0 14px 28px rgba(161, 77, 20, 0.08);
}

.flight-offer-item--top {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 237, 216, 0.98) 100%
  );
  border-color: rgba(217, 107, 43, 0.28);
  box-shadow: 0 20px 36px rgba(217, 107, 43, 0.16);
}

.flight-offer-badge {
  justify-self: start;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.flight-offer-badge--top {
  background: linear-gradient(135deg, #d96b2b 0%, #f09a3e 100%);
  color: #fff;
  box-shadow: 0 10px 20px rgba(217, 107, 43, 0.22);
}

.flight-offer-badge--muted {
  background: rgba(238, 229, 220, 0.92);
  color: #8b654d;
}

.flight-empty-state {
  padding: 14px;
  border-radius: 16px;
  background: rgba(246, 249, 251, 0.98);
  border: 1px dashed rgba(24, 34, 44, 0.12);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.flight-price-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.flight-price-row > * {
  min-width: 0;
}

.flight-price {
  font-size: 32px;
  line-height: 1;
  font-weight: 900;
  color: #8c3f0d;
}

.flight-price-prefix {
  font-size: 16px;
}

.flight-trip-type,
.flight-date {
  color: #765846;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.flight-date {
  text-align: right;
}

.flight-date strong {
  display: inline-block;
  margin-top: 4px;
  color: var(--text);
  font-size: 16px;
  letter-spacing: 0;
  text-transform: none;
}

.flight-route {
  font-size: 16px;
  line-height: 1.35;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.flight-offer-route {
  font-size: 15px;
  line-height: 1.35;
  font-weight: 800;
  color: var(--text);
  overflow-wrap: anywhere;
}

.flight-route span {
  color: var(--accent-strong);
}

.flight-offer-route span {
  color: var(--accent-strong);
}

.flight-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.flight-meta span {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(239, 244, 248, 0.95);
  color: #4b5965;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 600;
}

.flight-airline-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  max-width: 100%;
  flex-wrap: wrap;
}

.flight-airline-logo {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  object-fit: contain;
  box-shadow: 0 4px 10px rgba(24, 34, 44, 0.08);
}

.flight-cta {
  justify-self: stretch;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  min-height: 48px;
  border-color: rgba(217, 107, 43, 0.3);
  background: linear-gradient(135deg, #d96b2b 0%, #ef8c36 100%);
  color: #fff;
  box-shadow: 0 16px 28px rgba(217, 107, 43, 0.24);
}

.flight-cta:hover {
  border-color: rgba(217, 107, 43, 0.42);
  color: #fff;
  box-shadow: 0 20px 34px rgba(217, 107, 43, 0.3);
}

.weekly-forecast {
  margin: 16px 4px 0;
  padding: 16px;
  border-radius: 22px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(248, 242, 235, 0.92) 100%
  );
  border: 1px solid rgba(24, 34, 44, 0.08);
  box-shadow: 0 16px 34px rgba(24, 34, 44, 0.08);
}

.weekly-forecast-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.weekly-forecast-header strong {
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.weekly-forecast-header span {
  color: var(--muted);
  font-size: 13px;
}

.weekly-forecast-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
}

.forecast-card {
  display: grid;
  justify-items: center;
  gap: 6px;
  min-width: 0;
  padding: 14px 10px 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(24, 34, 44, 0.07);
  text-align: center;
}

.forecast-day {
  font-size: 13px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.forecast-date {
  color: var(--muted);
  font-size: 12px;
  line-height: 1;
}

.forecast-icon {
  width: 22px;
  height: 22px;
  flex-basis: 22px;
}

.forecast-label {
  min-height: 30px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.25;
  font-weight: 600;
}

.forecast-temps {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  align-items: center;
}

.forecast-temp {
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
}

.forecast-temp--max {
  color: var(--text);
}

.forecast-temp--min {
  color: var(--muted);
}

.stream-note {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  color: #41505d;
  font-size: 13px;
  line-height: 1.55;
}

.info {
  padding: 24px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.74) 0%,
    rgba(255, 255, 255, 0.95) 100%
  );
}

.player-page .info h1 {
  font-size: clamp(15px, 2vw, 24px);
}

.pip-body {
  margin: 0;
  background: #000;
}

.pip-shell {
  width: 100vw;
  height: 100vh;
  margin: 0;
  display: grid;
  place-items: stretch;
  background: #000;
}

.pip-frame {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}

.pip-frame video {
  width: 100%;
  height: calc(100% + var(--video-top-crop, 5%));
  object-fit: cover;
  transform: translateY(calc(var(--video-top-crop, 5%) * -1));
  transform-origin: top center;
  background: #000;
}

.not-found-page {
  display: grid;
  place-items: center;
}

.not-found-page main {
  width: min(720px, calc(100% - 32px));
  position: relative;
}

.not-found-page h1 {
  font-size: clamp(34px, 7vw, 58px);
}

.not-found-page a {
  color: var(--accent-strong);
}

@media (max-width: 900px) {
  .index-page {
    padding-bottom: 182px;
  }

  .site-footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .player-page .frame {
    --video-top-crop: 7.5%;
    aspect-ratio: 16 / 9.8;
  }

  .index-page .hero {
    gap: 12px;
  }

  .index-page .hero-copy {
    width: 100%;
  }

  .hero-title-row {
    gap: 14px;
  }

  .hero-brand {
    margin-bottom: 0;
  }

  .hero-brand-logo {
    width: min(100%, 300px);
    max-height: 82px;
  }

  .index-page .hero-badge {
    order: 2;
    margin-top: 2px;
  }

  .index-page h1 {
    font-size: clamp(20px, 5.4vw, 31px);
    line-height: 1.02;
    width: auto;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .player-page .pip-action {
    display: none;
  }

  .player-page .status {
    display: none;
  }

  .topbar-brand {
    flex-wrap: wrap;
  }

  .topbar-brand-logo {
    width: 154px;
    max-height: 50px;
  }

  .music-controls {
    display: none;
  }

  .player-page .weather-watermark--player {
    left: 14px;
    right: auto;
    bottom: 10px;
    transform: none;
    gap: 6px;
    padding: 6px 8px;
    max-width: calc(100% - 28px);
    justify-content: flex-start;
  }

  .player-page .weather-watermark--player .weather-icon {
    width: 14px;
    height: 14px;
    flex-basis: 14px;
  }

  .flight-deals-grid {
    grid-template-columns: 1fr;
  }

  .flight-deals-header {
    grid-template-columns: 1fr;
    display: grid;
  }

  .flight-search-form {
    justify-items: stretch;
    width: 100%;
    flex-basis: auto;
  }

  .flight-search-controls {
    display: grid;
    grid-template-columns: 1fr;
  }

  .flight-search-select-wrap,
  .flight-search-select,
  .flight-search-button {
    width: 100%;
  }

  .flight-search-note {
    max-width: none;
    text-align: left;
  }

  .flight-origin-header {
    display: grid;
  }

  .flight-date {
    text-align: left;
  }

  .flight-origin-destination {
    text-align: left;
  }

  .flight-price {
    font-size: 24px;
  }

  .player-page .weather-watermark--player .weather-temp {
    font-size: 16px;
  }

  .player-page .weather-watermark--player .weather-unit {
    font-size: 8px;
  }

  .player-page .weather-watermark--player .weather-meta {
    gap: 2px;
    align-items: flex-start;
    text-align: left;
  }

  .player-page .weather-watermark--player .weather-wind {
    font-size: 6px;
  }

  .fullscreen-weather-pill {
    gap: 10px;
    padding: 7px 14px;
  }

  .fullscreen-weather-temp {
    font-size: 28px;
  }

  .fullscreen-weather-wind {
    font-size: 11px;
  }

  .topbar,
  .index-page .hero {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (hover: none), (pointer: coarse) {
  .music-controls {
    display: none;
  }
}

@media (max-width: 760px) {
  :root {
    --page-width: min(100% - 20px, 1320px);
  }

  .index-page {
    padding-bottom: 194px;
  }

  .adsense-banner--floating {
    bottom: 10px;
    width: calc(100% - 16px);
  }

  .adsense-banner-label {
    padding-left: 0;
    padding-right: 0;
  }

  .adsense-banner-head {
    padding: 10px 10px 8px;
  }

  .adsense-banner-content,
  .adsense-banner--inline .adsense-banner-shell,
  .adsense-banner--floating .adsense-banner-shell {
    padding: 0 8px 8px;
  }

  .site-footer-nav {
    width: 100%;
  }

  .site-footer-link {
    width: 100%;
    justify-content: center;
  }

  .player-page .frame {
    --video-top-crop: 8.5%;
    aspect-ratio: 16 / 10;
  }

  .page {
    padding-top: 22px;
  }

  .index-page .page {
    width: calc(100% - 20px);
  }

  .index-page .hero {
    display: block;
    margin-bottom: 20px;
  }

  .index-page .hero-copy {
    width: 100%;
  }

  .hero-title-row {
    gap: 10px;
    align-items: center;
  }

  .hero-brand {
    display: inline-flex;
    justify-content: flex-start;
    align-self: center;
    margin-right: 0;
    margin-bottom: 0;
  }

  .hero-brand-logo {
    width: auto;
    height: 46px;
    max-height: none;
    margin-left: 0;
  }

  .index-page h1 {
    font-size: clamp(18px, 5.3vw, 25px);
    line-height: 1.04;
    letter-spacing: -0.04em;
    flex: 1 1 auto;
  }

  .index-page .hero-badge {
    display: inline-flex;
    margin-top: 12px;
  }

  .player-page .page {
    width: 100%;
    padding-top: 10px;
    padding-left: 0;
    padding-right: 0;
  }

  .player-page .topbar,
  .player-page .info,
  .player-page .status-text,
  .player-page .weekly-forecast,
  .player-page .stream-note,
  .player-page .player-actions {
    margin-left: 16px;
    margin-right: 16px;
  }

  .player-page .topbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
  }

  .topbar-brand {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    align-items: center;
    width: 100%;
  }

  .topbar-brand-link {
    width: auto;
    flex: 0 0 auto;
  }

  .topbar-brand-logo {
    width: min(34vw, 132px);
    max-height: 42px;
  }

  .player-page .back {
    min-height: 40px;
    padding: 0 14px;
    font-size: 15px;
    flex: 1 1 auto;
    justify-content: center;
  }

  .player-page .status {
    min-height: 40px;
    padding: 8px 14px;
    font-size: 11px;
    letter-spacing: 0.08em;
  }

  .player-page .layout {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .player-page .viewer {
    order: 1;
    padding: 0;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    box-shadow: none;
    background: transparent;
    backdrop-filter: none;
  }

  .player-page .frame {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    border-radius: 0;
  }

  .player-page .frame::after {
    height: 32%;
  }

  .player-page .info {
    order: 2;
    border-radius: 24px;
    padding: 20px 18px;
  }

  .player-page .info h1 {
    font-size: clamp(17px, 4.7vw, 22px);
    line-height: 1.02;
  }

  .player-page .info p {
    margin: 12px 0 0;
  }

  .weekly-forecast {
    padding: 14px;
    border-radius: 20px;
  }

  .weekly-forecast-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 12px;
  }

  .weekly-forecast-grid {
    grid-template-columns: 1fr;
    gap: 8px;
    overflow: visible;
  }

  .forecast-card {
    grid-template-columns: auto auto auto minmax(0, 1fr) auto;
    justify-items: start;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    text-align: left;
  }

  .forecast-label {
    min-height: 0;
    font-size: 12px;
  }

  .forecast-temps {
    align-items: flex-end;
    margin-left: auto;
  }

  .weather-watermark--player {
    left: 12px;
    right: auto;
    bottom: 10px;
    transform: none;
    gap: 6px;
    padding: 6px 8px;
    max-width: calc(100% - 24px);
    justify-content: flex-start;
  }

  .weather-watermark--player .weather-icon {
    width: 14px;
    height: 14px;
    flex-basis: 14px;
  }

  .weather-watermark--player .weather-temp {
    font-size: 16px;
  }

  .weather-watermark--player .weather-unit {
    font-size: 8px;
  }

  .weather-watermark--player .weather-meta {
    gap: 2px;
    align-items: flex-start;
    text-align: left;
  }

  .weather-watermark--player .weather-label {
    display: none;
  }

  .weather-watermark--player .weather-wind {
    font-size: 6px;
  }

  .fullscreen-weather-bar {
    min-height: 48px;
    padding: 8px 12px;
  }

  .fullscreen-action {
    min-height: 48px;
    border-color: rgba(217, 107, 43, 0.32);
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.96) 0%,
      rgba(252, 241, 232, 0.96) 100%
    );
    box-shadow: 0 14px 30px rgba(24, 34, 44, 0.1);
  }

  .weekly-forecast-grid {
    grid-template-columns: 1fr;
    overflow: visible;
    padding-bottom: 0;
  }

  .weather-watermark--card {
    bottom: 8px;
    width: calc(100% - 16px);
    max-width: calc(100% - 16px);
    gap: 6px;
    padding: 8px 10px;
  }

  .weather-watermark--card .weather-icon {
    width: 18px;
    height: 18px;
    flex-basis: 18px;
  }

  .weather-watermark--card .weather-temp {
    font-size: 20px;
  }

  .weather-watermark--card .weather-label {
    display: none;
  }

  .weather-watermark--card .weather-wind {
    font-size: 9px;
  }

  .player-page .player-actions {
    align-items: stretch;
    gap: 10px;
    margin-top: 12px;
  }

  .player-page .status-text {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.5;
  }

  .player-page .stream-note {
    margin-top: 10px;
    padding: 10px 12px;
    font-size: 12px;
    line-height: 1.45;
  }

  .music-controls {
    width: 100%;
    justify-content: space-between;
  }

  .music-volume {
    flex: 1 1 auto;
    justify-content: space-between;
  }

  .music-volume input {
    width: min(48vw, 180px);
  }

  .player-page .action-button,
  .player-page .action-button {
    width: 100%;
  }

  .grid {
    gap: 16px;
  }

  .card-body,
  .viewer,
  .info,
  .empty,
  .not-found {
    padding: 18px;
  }
}
