:root {
  --bg: #f4f6fb;
  --surface: #ffffff;
  --text: #0f172a;
  --muted: #556072;
  --line: rgba(15, 23, 42, 0.12);
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);

  --pink: #e11d48;
  --purple: #6d28d9;
  --blue: #0ea5e9;

  --radius: 18px;
  --radius-lg: 24px;
  --container: 1140px;
  --player-h: 72px;
}

body {
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial,
    "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: linear-gradient(#ffffff 0%, #ffffff 40%, var(--bg) 100%);
  padding-bottom: var(--player-h);
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.topbar {
  background: #262626;
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 16px;
}
.topbar__text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.topbar__social {
  display: flex;
  align-items: center;
  gap: 10px;
}
.icon-link {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}
.icon-link svg {
  width: 14px;
  height: 14px;
  fill: rgba(255, 255, 255, 0.9);
}

.site-header {
  background: #ffffff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  position: sticky;
  top: 0;
  z-index: 10;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -0.2px;
}
.brand__icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff;
  box-shadow: 0 10px 20px rgba(225, 29, 72, 0.25);
}
.brand__text {
  font-size: 18px;
}

.nav {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav__link {
  font-size: 14px;
  color: #1f2937;
  padding: 8px 10px;
  border-radius: 12px;
}
.nav__link:hover {
  background: rgba(109, 40, 217, 0.08);
  color: #111827;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(15, 23, 42, 0.04);
  place-items: center;
}

.nav-toggle__icon {
  width: 18px;
  height: 2px;
  background: rgba(17, 24, 39, 0.85);
  border-radius: 999px;
  position: relative;
  display: block;
}
.nav-toggle__icon::before,
.nav-toggle__icon::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(17, 24, 39, 0.85);
  border-radius: 999px;
}
.nav-toggle__icon::before { top: -6px; }
.nav-toggle__icon::after { top: 6px; }

.nav-toggle[aria-expanded="true"] .nav-toggle__icon {
  background: transparent;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__icon::before {
  top: 0;
  transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  padding: 44px 0 20px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -120px -120px auto -120px;
  height: 440px;
  background:
    radial-gradient(260px 260px at 18% 55%, rgba(14, 165, 233, 0.18), transparent 60%),
    radial-gradient(240px 240px at 78% 25%, rgba(225, 29, 72, 0.26), transparent 60%),
    radial-gradient(300px 300px at 55% 5%, rgba(109, 40, 217, 0.22), transparent 60%);
  pointer-events: none;
}
.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  align-items: center;
  gap: 24px;
}
.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #b91c1c;
  font-weight: 800;
  background: rgba(225, 29, 72, 0.08);
  padding: 8px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.hero__title {
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.8px;
}
.hero__title .amp {
  color: var(--pink);
}
.hero__lead {
  margin-top: 14px;
  color: var(--muted);
  max-width: 54ch;
  line-height: 1.55;
}
.hero__cta {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 14px;
  padding: 10px 14px;
  font-weight: 800;
  font-size: 14px;
  border: 1px solid transparent;
  transition: transform 0.08s ease, box-shadow 0.12s ease;
}
.btn:active {
  transform: translateY(1px);
}
.btn--primary {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff;
  box-shadow: 0 16px 32px rgba(109, 40, 217, 0.18);
}
.btn--ghost {
  background: rgba(15, 23, 42, 0.04);
  border-color: rgba(15, 23, 42, 0.08);
  color: #111827;
}
.btn--mobile {
  width: 100%;
  background: linear-gradient(135deg, #f43f5e, #c026d3);
  color: #fff;
  box-shadow: 0 14px 28px rgba(244, 63, 94, 0.18);
}
.btn--web {
  width: 100%;
  background: linear-gradient(135deg, #6d28d9, #a21caf);
  color: #fff;
  box-shadow: 0 14px 28px rgba(109, 40, 217, 0.2);
}
.btn__icon {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
}
.btn__icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.start-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 1px;
  background:
    radial-gradient(130px 130px at 90% 20%, rgba(225, 29, 72, 0.3), transparent 60%),
    radial-gradient(160px 160px at 20% 80%, rgba(109, 40, 217, 0.25), transparent 65%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.4));
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}
.start-card__inner {
  border-radius: calc(var(--radius-lg) - 1px);
  background: rgba(255, 255, 255, 0.82);
  padding: 22px;
}
.start-card__title {
  font-size: 18px;
  letter-spacing: -0.2px;
}
.start-card__sub {
  color: var(--muted);
  font-size: 13px;
  margin-top: 6px;
}
.start-card__buttons {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}
.start-card__meta {
  margin-top: 14px;
  font-size: 12px;
  color: rgba(15, 23, 42, 0.65);
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.features {
  padding: 18px 0 8px;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius);
  padding: 18px 18px 16px;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
}
.card__title {
  font-size: 16px;
  margin-top: 10px;
  letter-spacing: -0.2px;
}
.card__text {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 13px;
}
.feature__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(109, 40, 217, 0.12), rgba(225, 29, 72, 0.08));
  border: 1px solid rgba(109, 40, 217, 0.12);
}
.feature__icon svg {
  width: 22px;
  height: 22px;
  fill: rgba(17, 24, 39, 0.78);
}

.section {
  padding: 26px 0;
}
.section__header {
  text-align: center;
  margin-bottom: 18px;
}
.section__header--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
}
.section__actions {
  display: flex;
  justify-content: flex-end;
}
.btn--sm {
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 13px;
}
.section__title {
  font-size: 26px;
  letter-spacing: -0.6px;
}
.section__sub {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.media-grid--single {
  grid-template-columns: 1fr;
  max-width: 820px;
  margin-inline: auto;
}
.media-card {
  background: var(--surface);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}
.media-card__thumb {
  aspect-ratio: 16 / 9;
  position: relative;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  background: #0b1220;
}
.media-card__thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120px 120px at 20% 25%, rgba(255, 255, 255, 0.32), transparent 60%),
    radial-gradient(140px 140px at 70% 60%, rgba(0, 0, 0, 0.18), transparent 65%);
  opacity: 0.9;
  z-index: -1;
}
.media-card__thumb--warm { background: linear-gradient(135deg, #ef4444, #111827); }
.media-card__thumb--night { background: linear-gradient(135deg, #0f172a, #1d4ed8); }
.media-card__thumb--blue { background: linear-gradient(135deg, #0ea5e9, #1e293b); }
.media-card__frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.play {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.22);
  position: relative;
}
.play::after {
  content: "";
  position: absolute;
  left: 21px;
  top: 16px;
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent rgba(17, 24, 39, 0.9);
}
.media-card__body {
  padding: 12px 14px;
}
.media-card__title {
  font-size: 14px;
  letter-spacing: -0.2px;
}
.media-card__title a {
  color: #0f172a;
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.panel {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}
.panel__head {
  padding: 10px 12px;
  background: rgba(15, 23, 42, 0.03);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}
.panel__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 900;
  color: #fff;
}
.panel__badge--red { background: linear-gradient(135deg, #ef4444, #fb7185); }
.panel__badge--purple { background: linear-gradient(135deg, #6d28d9, #8b5cf6); }
.panel__badge--pink { background: linear-gradient(135deg, #a21caf, #ec4899); }
.panel__list {
  display: grid;
}
.panel__item {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}
.panel__item:first-child { border-top: 0; }
.panel__item a {
  font-weight: 800;
  font-size: 13px;
  color: #111827;
}
.mini-thumb {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.25), rgba(109, 40, 217, 0.22));
}

.cards--info {
  margin-top: 8px;
}
.info-card {
  display: grid;
  gap: 10px;
  padding: 14px;
}
.info-card__title {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -0.2px;
}
.info-card__meta {
  font-size: 12px;
  color: rgba(15, 23, 42, 0.65);
}
.info-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.08);
  font-weight: 900;
  font-size: 12px;
  color: #111827;
  width: fit-content;
}

.horoscope-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
.horoscope {
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
  padding: 8px 9px 8px;
  display: grid;
  gap: 4px;
  text-align: left;
}
.horoscope__name {
  font-weight: 900;
  font-size: 12px;
  letter-spacing: -0.2px;
}
.horoscope__range {
  font-size: 10.5px;
  color: rgba(15, 23, 42, 0.6);
}
.horoscope.is-active {
  border-color: rgba(225, 29, 72, 0.45);
  box-shadow: 0 18px 40px rgba(225, 29, 72, 0.12);
}

.horoscope-panel {
  margin-top: 12px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius);
  padding: 12px 14px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}
.horoscope-panel__title {
  font-weight: 900;
  letter-spacing: -0.2px;
}
.horoscope-panel__meta {
  margin-top: 6px;
  font-size: 12px;
  color: rgba(15, 23, 42, 0.65);
}
.horoscope-panel__text {
  margin-top: 10px;
  font-size: 13px;
  color: rgba(15, 23, 42, 0.88);
  line-height: 1.65;
}

.post-empty {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  padding: 14px 0 0;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.post-grid--list {
  grid-template-columns: repeat(2, 1fr);
}

.post-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
  display: grid;
  gap: 10px;
}

.post-card__thumb {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  aspect-ratio: 16 / 9;
  display: block;
}

.post-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.post-card__top {
  display: grid;
  gap: 6px;
}

.post-card__title {
  font-size: 15px;
  letter-spacing: -0.2px;
  line-height: 1.25;
}

.post-card__title a {
  color: #0f172a;
}

.post-card__meta {
  font-size: 12px;
  color: rgba(15, 23, 42, 0.65);
}

.post-card__excerpt {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.post-card__actions {
  display: flex;
  justify-content: flex-end;
}

.post-read {
  font-weight: 900;
  font-size: 12px;
  color: #111827;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.post-more {
  display: flex;
  justify-content: center;
  margin-top: 14px;
}

.post-hero {
  text-align: center;
  margin-bottom: 16px;
}

.post-hero__thumb {
  width: min(860px, 100%);
  margin: 0 auto 14px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  aspect-ratio: 16 / 9;
}

.post-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.post-hero__title {
  font-size: clamp(26px, 3.4vw, 36px);
  letter-spacing: -0.7px;
  line-height: 1.12;
}

.post-hero__meta {
  margin-top: 8px;
  font-size: 12px;
  color: rgba(15, 23, 42, 0.65);
}

.post-tags {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.tag {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.08);
  font-weight: 900;
  font-size: 12px;
  color: rgba(15, 23, 42, 0.86);
}

.post-hero__excerpt {
  margin: 10px auto 0;
  max-width: 68ch;
  color: var(--muted);
  line-height: 1.6;
}

.post-content {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
  line-height: 1.75;
  color: rgba(15, 23, 42, 0.9);
}

.footer {
  margin-top: 12px;
  background: linear-gradient(135deg, #a8001f, #ff2456);
  color: rgba(255, 255, 255, 0.92);
  padding: 36px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 18px;
  padding-bottom: 22px;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}
.footer__text {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.55;
}
.footer__title {
  font-size: 14px;
  letter-spacing: -0.2px;
  margin-top: 2px;
}
.footer__list {
  margin-top: 10px;
  display: grid;
  gap: 8px;
}
.footer__list a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  padding: 14px 0 calc(14px + var(--player-h));
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
}
.footer__bottom-inner {
  display: flex;
  justify-content: center;
  text-align: center;
}

.player {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: var(--player-h);
  background: rgba(18, 18, 18, 0.86);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  z-index: 30;
}
.player__inner {
  height: 100%;
  display: grid;
  grid-template-columns: 44px 1fr minmax(220px, 1.4fr) 220px;
  align-items: center;
  gap: 14px;
}
.player__btn {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  display: grid;
  place-items: center;
  box-shadow: 0 14px 26px rgba(109, 40, 217, 0.24);
}
.player__btnIcon {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 0 9px 14px;
  border-color: transparent transparent transparent rgba(255, 255, 255, 0.92);
  margin-left: 2px;
}
.player[data-state="playing"] .player__btnIcon {
  width: 14px;
  height: 16px;
  border: 0;
  margin-left: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.95) 0 38%,
    transparent 38% 62%,
    rgba(255, 255, 255, 0.95) 62% 100%
  );
  border-radius: 2px;
}
.player__meta { min-width: 0; }
.player__title {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 900;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.player__row {
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.player__status {
  margin-top: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.player__eqWrap {
  margin-left: auto;
  display: flex;
  align-items: center;
  height: 34px;
  min-width: 120px;
  max-width: 180px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  padding: 6px 8px;
}
.player__eq {
  width: 100%;
  height: 100%;
  display: none;
}
.player__eqFake {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  align-items: end;
  gap: 4px;
}
.player__eqFake span {
  display: block;
  height: 30%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(255, 42, 109, 0.85));
  transform-origin: bottom;
  transform: scaleY(0.25);
  opacity: 0.9;
}
.player[data-state="playing"] .player__eqFake span {
  animation: eqBar 900ms ease-in-out infinite;
}
.player[data-state="playing"] .player__eqFake span:nth-child(2) { animation-delay: -120ms; }
.player[data-state="playing"] .player__eqFake span:nth-child(3) { animation-delay: -240ms; }
.player[data-state="playing"] .player__eqFake span:nth-child(4) { animation-delay: -360ms; }
.player[data-state="playing"] .player__eqFake span:nth-child(5) { animation-delay: -480ms; }
.player[data-state="playing"] .player__eqFake span:nth-child(6) { animation-delay: -600ms; }
.player[data-state="playing"] .player__eqFake span:nth-child(7) { animation-delay: -720ms; }
.player[data-state="playing"] .player__eqFake span:nth-child(8) { animation-delay: -840ms; }
.player[data-state="playing"] .player__eqFake span:nth-child(9) { animation-delay: -960ms; }
.player[data-state="playing"] .player__eqFake span:nth-child(10) { animation-delay: -1080ms; }

@keyframes eqBar {
  0% { transform: scaleY(0.2); }
  30% { transform: scaleY(0.95); }
  60% { transform: scaleY(0.35); }
  100% { transform: scaleY(0.2); }
}
.player__bar {
  display: flex;
  align-items: center;
  gap: 10px;
}
.player__live {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.6px;
  color: rgba(255, 255, 255, 0.82);
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
}
.player__range { width: 100%; accent-color: #ff2a6d; }
.player__controls {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}
.player__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 900;
  font-size: 12px;
}
.player__mute {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.player__mute svg {
  width: 18px;
  height: 18px;
  fill: rgba(255, 255, 255, 0.85);
}
.player__vol { width: 92px; accent-color: #ff2a6d; }
.player[data-live="true"] .player__range { display: none; }

@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
  .cards, .media-grid, .panel-grid, .post-grid { grid-template-columns: 1fr; }
  .section__header--split { flex-direction: column; align-items: flex-start; }
  .section__actions { width: 100%; justify-content: flex-start; }
  .horoscope-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; }
  .player__inner { grid-template-columns: 44px 1fr 140px; }
  .player__bar { display: none; }
  .player__eqWrap { display: none; }
  .topbar__text { white-space: normal; overflow: visible; text-overflow: clip; }

  .header__inner { position: relative; }
  .nav-toggle { display: grid; }
  .nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 12px;
    max-height: calc(100vh - 120px);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.14);
    z-index: 40;
  }
  html[data-nav="open"] .nav { display: flex; }
  html[data-nav="open"] body { overflow: hidden; }
  .nav__link { width: 100%; }
}

