:root {
  --red: #E5A93C;
  --red-glow: rgba(229, 169, 60, 0.5);
  --fg: #FDFCFB;
  --muted: rgba(253, 252, 251, 0.5);
  --header-h: 64px;
  --bar-h: 80px;
  --donate-h: 42px;
  --font-ui: 'Unbounded', 'Manrope', system-ui, sans-serif;
  --font-body: 'Manrope', system-ui, -apple-system, Arial, sans-serif;
  --content-max-width: 800px;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--fg);
  background: #030202;
  padding-bottom: calc(var(--bar-h) + 24px);
}

.wrap {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-top: calc(var(--header-h) + var(--donate-h) + 16px);
  padding-bottom: 0;
  padding-left: 24px;
  padding-right: 24px;
}

.page-content {
  width: 100%;
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 24px 0 40px;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: #030202;
  overflow: hidden;
  pointer-events: none;
}

.page-bg::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -10%;
  width: 70%;
  height: 80%;
  background: radial-gradient(ellipse at 30% 30%, rgba(229, 169, 60, 0.08) 0%, transparent 70%);
  filter: blur(60px);
}

.page-bg__lines {
  position: absolute;
  inset: 0;
}

.page-bg__line {
  position: absolute;
  top: -10%;
  height: 120%;
  transform-origin: top center;
  transform: skewX(-28deg);
  border-right: 1px solid rgba(229, 169, 60, 0.45);
  box-shadow: 0 0 60px rgba(229, 169, 60, 0.25), inset 0 0 30px rgba(229, 169, 60, 0.08);
  animation: lineDrift 45s linear infinite;
}

.page-bg__line:nth-child(1) {
  right: 14%;
  width: 28%;
  background: linear-gradient(160deg, rgba(229, 169, 60, 0.18) 0%, rgba(229, 169, 60, 0.06) 40%, transparent 80%);
}

.page-bg__line:nth-child(2) {
  right: 36%;
  width: 18%;
  background: linear-gradient(160deg, rgba(229, 169, 60, 0.12) 0%, rgba(229, 169, 60, 0.04) 50%, transparent 75%);
  animation-duration: 52s;
}

.page-bg__line:nth-child(3) {
  right: 52%;
  width: 10%;
  background: linear-gradient(160deg, rgba(229, 169, 60, 0.1) 0%, transparent 60%);
  border-right-color: rgba(229, 169, 60, 0.3);
  opacity: 0.9;
  animation-duration: 65s;
}

.page-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.02'/%3E%3C/svg%3E");
  opacity: 0.5;
  mix-blend-mode: overlay;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  background: rgba(3, 2, 2, 0.65);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  z-index: 100;
}

.header__slashes-wrap {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: var(--header-h);
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.header__slashes {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  display: flex;
  gap: 96px;
  transform: skewX(-28deg);
  transform-origin: bottom left;
  margin-left: 20px;
}

.header__slashes span {
  width: 96px;
  height: 100%;
  background-color: #8B1538;
}

.header__slashes span:nth-child(1) { opacity: 0.1; }
.header__slashes span:nth-child(2) { opacity: 0.2; }
.header__slashes span:nth-child(3) { opacity: 0.3; }
.header__slashes span:nth-child(4) { opacity: 0.4; }
.header__slashes span:nth-child(5) { opacity: 0.5; }
.header__slashes span:nth-child(6) { opacity: 0.6; }
.header__slashes span:nth-child(7) { opacity: 0.7; }
.header__slashes span:nth-child(8) { opacity: 0.8; }
.header__slashes span:nth-child(9) { opacity: 0.9; }
.header__slashes span:nth-child(10) { opacity: 1; }

.header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.header__logo img {
  height: 32px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.1));
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.nav-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 999px;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  white-space: nowrap;
}

.nav-link:hover {
  color: #fff;
  background: rgba(255,255,255,0.04);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.nav-link--active {
  color: var(--red);
  background: rgba(229, 169, 60, 0.06);
  text-shadow: 0 0 12px rgba(229, 169, 60, 0.3);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.nav-share-btn {
  appearance: none;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.4);
  padding: 8px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.4s ease;
}

.nav-share-btn:hover {
  color: var(--red);
  background: rgba(229, 169, 60, 0.08);
  filter: drop-shadow(0 0 8px rgba(229, 169, 60, 0.4));
}

.nav-share-btn svg {
  opacity: 1;
}

.donate-bar {
  position: fixed;
  top: var(--header-h);
  left: 0;
  width: 100%;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 24px;
  background: linear-gradient(90deg, #DCA342, #F7D070, #DCA342);
  background-size: 200% auto;
  color: #030202;
  font-family: 'Unbounded', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
  box-shadow: 0 4px 20px rgba(229, 169, 60, 0.15);
  animation: goldShimmer 6s linear infinite;
}

@keyframes goldShimmer {
  0% {
    background-position: 200% center;
  }
  100% {
    background-position: 0% center;
  }
}

.donate-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 115%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  clip-path: polygon(0 0, 88% 0, 100% 50%, 88% 100%, 0 100%);
  transform: translateX(-115%);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 0;
}

.donate-bar:hover::before {
  transform: translateX(0);
}

.donate-bar__heart,
.donate-bar__text,
.donate-bar__arrow {
  position: relative;
  z-index: 1;
  color: #030202;
  line-height: 1;
}

.donate-bar__heart {
  font-size: 14px;
  display: inline-block;
}

.donate-bar:hover .donate-bar__heart {
  animation: heartbeat 0.8s cubic-bezier(0.25, 1, 0.5, 1) infinite;
}

@keyframes heartbeat {
  0%, 80%, 100% { transform: scale(1); }
  20%  { transform: scale(1.3); }
  60%  { transform: scale(1.1); }
}

.donate-bar__arrow {
  font-size: 16px;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 0;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.burger:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.burger span {
  width: 16px;
  height: 1.5px;
  background: #fff;
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease;
}

.burger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); background: var(--red); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); background: var(--red); }

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 8px 16px 16px;
  border-top: 1px solid rgba(255,255,255,0.03);
  gap: 4px;
  background: rgba(3,2,2,0.95);
  backdrop-filter: blur(20px);
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav__link {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  padding: 14px 18px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.mobile-nav__link:hover,
.mobile-nav__link--active {
  color: #fff;
  background: rgba(255,255,255,0.03);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.mini-player {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--bar-h);
  z-index: 200;
  background: rgba(6, 4, 3, 0.85);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border-top: 1px solid rgba(255,255,255,0.04);
  box-shadow: 0 -10px 40px rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  padding: 0 24px;
  gap: 16px;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

.mini-player__cover {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(255,255,255,0.02);
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.mini-player__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mini-player__info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow: hidden;
}

.mini-player__title {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
}

.mini-player__sub {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}

.mini-player__progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255,255,255,0.03);
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.5);
}

.mini-player__progress-bar {
  height: 100%;
  background: var(--red);
  width: 0%;
  transition: width 0.3s linear;
  box-shadow: 0 0 10px rgba(229, 169, 60, 0.8);
}

.mini-player__controls {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.mini-play-btn {
  appearance: none;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
  color: #030202;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(0,0,0,0.6), inset 0 -1px 3px rgba(0,0,0,0.1);
  outline: none;
}

.mini-play-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 25px rgba(0,0,0,0.7), 0 0 20px rgba(229, 169, 60, 0.2);
}

.mini-play-btn:active {
  transform: scale(0.96);
}

.mini-play-btn svg {
  width: 20px;
  height: 20px;
  fill: #030202;
}

.mini-play-btn.loading svg {
  display: none;
}

.mini-play-btn.loading::after {
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid rgba(3, 2, 2, 0.1);
  border-top-color: #030202;
  border-radius: 50%;
  animation: mini-spin 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
  display: block;
}

@keyframes mini-spin {
  100% { transform: rotate(360deg); }
}

.mini-vol-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mini-vol-btn {
  appearance: none;
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.3);
  padding: 6px;
  cursor: pointer;
  display: grid;
  place-items: center;
  border-radius: 8px;
  transition: all 0.3s ease;
  outline: none;
}

.mini-vol-btn:hover {
  color: #fff;
  filter: drop-shadow(0 0 5px rgba(255,255,255,0.3));
}

.mini-vol-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 80px;
  height: 4px;
  border-radius: 999px;
  cursor: pointer;
  outline: none;
  background: linear-gradient(
    to right,
    var(--red) 0%,
    var(--red) var(--vol-pct, 100%),
    rgba(255,255,255,0.08) var(--vol-pct, 100%),
    rgba(255,255,255,0.08) 100%
  );
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.5);
}

.mini-vol-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.6), 0 0 10px rgba(229, 169, 60, 0.4);
  transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.mini-vol-slider::-webkit-slider-thumb:hover {
  transform: scale(1.3);
}

.mini-vol-slider::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  border: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.6), 0 0 10px rgba(229, 169, 60, 0.4);
}

.mini-live-badge {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  padding: 4px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  background: rgba(255, 255, 255, 0.02);
}

.mini-live-badge.is-live {
  color: #fff;
  border-color: rgba(229, 169, 60, 0.3);
  background: rgba(229, 169, 60, 0.1);
  box-shadow: 0 0 15px rgba(229, 169, 60, 0.1);
}

.mini-live-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
  transition: background 0.4s ease;
}

.mini-live-badge.is-live .mini-live-dot {
  background: var(--red);
  box-shadow: 0 0 6px var(--red);
  animation: mini-pulse 1.6s ease-in-out infinite;
}

@keyframes mini-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.page-eyebrow {
  font-family: 'Unbounded', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(229, 169, 60, 0.5);
  margin: 0 0 16px;
}

.page-title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  margin: 0 0 12px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 20px rgba(255, 255, 255, 0.1);
}

.page-subtitle {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  margin: 0 0 56px;
  letter-spacing: 0.02em;
  line-height: 1.6;
}

.about-glass { 
  position: relative; 
  background: rgba(255, 255, 255, 0.04); 
  backdrop-filter: blur(20px); 
  -webkit-backdrop-filter: blur(20px); 
  padding: 28px 32px; 
  font-size: 15px; 
  line-height: 1.65; 
  color: rgba(255, 255, 255, 0.85); 
  box-shadow: 0 20px 40px rgba(0,0,0,0.2); 
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-top: none; 
  border-bottom: none;
}

.about-glass::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.5) 50%, transparent 100%);
}

.about-glass::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
}

.about-glass h2 { 
  font-family: 'Unbounded', sans-serif; 
  font-size: 20px; 
  color: #fff; 
  margin: 32px 0 16px; 
  letter-spacing: 0.02em; 
  line-height: 1.3; 
}

.about-glass h2:first-child { 
  margin-top: 0; 
}

.about-glass p { 
  margin: 0 0 20px; 
}

.about-glass p:last-child { 
  margin-bottom: 0; 
}

.about-glass strong { 
  color: #fff; 
  font-weight: 600; 
}

.about-glass ul { 
  list-style: none; 
  padding: 0; 
  margin: 0 0 24px; 
}

.about-glass li { 
  position: relative; 
  padding-left: 24px; 
  margin-bottom: 14px; 
}

.about-glass li::before { 
  content: ""; 
  position: absolute; 
  left: 0; 
  top: 9px; 
  width: 6px; 
  height: 6px; 
  border-radius: 50%; 
  background: var(--red); 
  box-shadow: 0 0 8px rgba(139, 21, 56, 0.55); 
}

.highlight-block { 
  margin: 28px 0; 
  padding: 16px 20px; 
  background: rgba(139, 21, 56, 0.1); 
  border-left: 3px solid var(--red); 
  border-radius: 0 12px 12px 0; 
}

.highlight-block p { 
  margin: 0; 
  font-size: 16px; 
  font-style: italic; 
  color: #fff; 
}

.footer {
  width: 100%;
  margin-top: auto;
  padding-top: 24px;
  background: linear-gradient(to top, rgba(10, 7, 5, 0.8) 0%, rgba(3, 2, 2, 0) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(229, 169, 60, 0.15) 50%, transparent 100%);
}

.footer__inner {
  width: 100%;
  margin: 0 auto;
  padding: 56px 0;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  border-top: none;
}

.footer__col--brand .footer__logo {
  height: 28px;
  width: auto;
  display: block;
  margin-bottom: 14px;
  filter: drop-shadow(0 0 10px rgba(255,255,255,0.05));
}

.footer__tagline {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(229, 169, 60, 0.4);
  margin: 0;
}

.footer__col-title {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(229, 169, 60, 0.5);
  margin: 0 0 18px;
}

.footer__link {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  margin-bottom: 12px;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  letter-spacing: 0.02em;
  user-select: text;
  -webkit-user-select: text;
}

.footer__link:hover {
  color: #fff;
  transform: translateX(6px);
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.footer__bottom {
  width: 100%;
  margin: 0 auto;
  padding: 24px 0 32px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.2);
  border-top: none;
  position: relative;
  text-align: center;
}

.footer__bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20%;
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.03) 50%, transparent 100%);
}

@media (max-width: 767px) {
  :root {
    --header-h: 60px;
    --bar-h: 76px;
    --donate-h: 38px;
  }

  .header__nav {
    display: none;
  }

  .nav-share-btn {
    display: none;
  }

  .burger {
    display: flex;
  }

  .wrap {
    padding-left: 16px;
    padding-right: 16px;
    padding-top: calc(var(--header-h) + var(--donate-h) + 24px);
  }

  .page-content {
    padding: 16px 0 32px;
  }

  .mini-vol-wrap {
    display: none;
  }

  .mini-live-badge {
    display: none;
  }

  .mini-player {
    padding: 0 16px;
    gap: 12px;
  }

  .about-glass { 
    padding: 20px 16px; 
    font-size: 14px; 
    border-radius: 16px; 
  } 
  
  .about-glass h2 { 
    font-size: 18px; 
    margin: 24px 0 14px; 
  } 
  
  .highlight-block { 
    padding: 16px; 
    margin: 20px 0; 
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 40px 0;
  }

  .footer__col--brand {
    grid-column: 1 / -1;
  }

  .footer__bottom {
    padding: 16px 0 28px;
  }

  .page-title {
    font-size: 28px;
  }
}

@media (min-width: 768px) {
  .burger {
    display: none;
  }
}

@media (hover: none) {
  .mini-play-btn:hover { transform: none; box-shadow: 0 5px 15px rgba(0,0,0,0.6), inset 0 -1px 3px rgba(0,0,0,0.1); }
  .mini-vol-slider::-webkit-slider-thumb:hover { transform: none; }
  .footer__link:hover { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .page-bg__line {
    animation: none !important;
  }

  .mini-live-dot {
    animation: none !important;
  }

  .mini-play-btn.loading::after {
    animation: none !important;
  }
}