.download-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin: 50px 10px;
}

/*  DOWNLOAD   */
.download-btn {
  position: relative;
  display: inline-flex;
  align-items: start;
  justify-content: space-between;
  width: 300px;
  padding: 18px 20px;
  border-radius: 14px;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(135deg, #062e21, #0a2a22);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition:
    transform 0.2s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.download-btn[disabled] {
  opacity: 0.3;
  pointer-events: none;
}

.download-btn:hover {
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-0px);
  background: linear-gradient(135deg, #061814, #0b2f26, #071f1a);
}

.download-btn:active {
  transform: translateY(0px);
}

.dl-icon-wrap {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    background 0.3s,
    border-color 0.3s;
}
.download-btn:hover .dl-icon-wrap {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.18);
}

.dl-icon-wrap svg {
 width: 32px;
 height: auto;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.download-btn:hover .dl-icon-wrap svg {
  transform: translateY(2px);
}

/* Text group */
.dl-text {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-self: center;
  gap: 3px;
}
.dl-label {
  font-family: "Syne", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #ffffff;
  line-height: 1;
}
.dl-sub {
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.38);
  letter-spacing: 0.03em;
  line-height: 1;
  transition: color 0.3s;
}
.download-btn:hover .dl-sub {
  color: rgba(255, 255, 255, 0.55);
}

/* Shine line */
.download-btn .shine {
  position: absolute;
  top: 0;
  left: -60%;
  width: 45%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255, 255, 255, 0.06) 50%,
    transparent 70%
  );
  transform: skewX(-15deg);
  z-index: 0;
  transition: left 0s;
}
.download-btn:hover .shine {
  left: 130%;
  transition: left 0.5s ease;
}

/* Pill badge */
.dl-badge {
  position: relative;
  display: flex;
  justify-self: start;
  top: -8px;
  right: -5px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2px 7px;
  z-index: 1;
  transition:
    color 0.3s,
    background 0.3s;
}
.download-btn:hover .dl-badge {
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.1);
}

/* STREAM + DONATE  */

.stream-donate-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: nowrap; 
  margin: 10px 0;
}

.stream-btn,
.donate-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex: 1; 
  padding: 4px 15px;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.2s ease,
    border-color 0.3s,
    background 0.3s,
    box-shadow 0.3s;
}

.stream-btn[disabled],
.donate-btn[disabled] {
  opacity: 0.3;
  pointer-events: none;
}

.stream-btn:active,
.donate-btn:active {
  transform: translateY(0) scale(0.98);
}

/*  STREAM BUTTON  */
.stream-btn {
  background: linear-gradient(135deg, #1a2030, #0d1117);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.stream-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #222d42, #131b28);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.play-pill {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
  z-index: 1;
  transition:
    background 0.3s,
    transform 0.3s;
}
.stream-btn:hover .play-pill {
  background: rgba(255, 255, 255, 0.12);
  transform: scale(1.12);
}
.play-pill svg {
  width: 12px;
  height: auto;
  fill: rgba(255, 255, 255, 0.75);
  margin-left: 1px;
}

/* Ripple ring */
.play-pill::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0;
  transition:
    opacity 0.3s,
    transform 0.3s;
}
.stream-btn:hover .play-pill::after {
  opacity: 1;
  transform: scale(1.08);
}

.stream-label {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 750;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
  z-index: 1;
  transition: color 0.3s;
  text-align: center;
  width: min-content;
  white-space: normal;
}
.stream-btn:hover .stream-label {
  color: rgba(255, 255, 255, 0.85);
}

/* Live dot */
.live-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ff4757;
  box-shadow: 0 0 6px rgba(255, 71, 87, 0.7);
  animation: blink 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}
.live-text {
  font-family: "DM Sans", sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255, 71, 87, 0.65);
  transition: color 0.3s;
}
.stream-btn:hover .live-text {
  color: rgba(255, 71, 87, 1);
}

.donate-btn {
  background: linear-gradient(135deg, #2a0a0a, #130000);
  border: 1px solid rgba(255, 80, 80, 0.12);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.donate-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #3a1010, #1c0000);
  border-color: rgba(255, 80, 80, 0.28);
  box-shadow: 0 8px 24px rgba(180, 0, 0, 0.25);
}

.donate-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: rgba(255, 80, 80, 0.08);
  border: 1px solid rgba(255, 80, 80, 0.18);
  flex-shrink: 0;
  z-index: 1;
  transition:
    background 0.3s,
    transform 0.3s;
}
.donate-btn:hover .donate-icon {
  background: rgba(255, 80, 80, 0.16);
  transform: scale(1.12);
}
.donate-icon svg {
  width: 12px;
  height: auto;
  stroke: rgba(255, 110, 110, 0.85);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.donate-label {
  font-family: "DM Sans", sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 140, 140, 0.55);
  letter-spacing: 0.05em;
  z-index: 1;
  transition: color 0.3s;
}
.donate-btn:hover .donate-label {
  color: rgba(255, 150, 150, 0.95);
}

.donate-tag {
  font-size: 0.62rem;
  z-index: 1;
  transition: transform 0.3s;
}
.donate-btn:hover .donate-tag {
  transform: scale(1.2);
}

/* .dl-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  padding: 2px 7px;
  z-index: 1;
  transition:
    color 0.3s,
    background 0.3s;
}
.stream-btn:hover .dl-badge {
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.09);
}
.donate-btn:hover .dl-badge {
  color: rgba(255, 130, 130, 0.7);
  background: rgba(255, 80, 80, 0.08);
} */

/* ══════════════════════════════════════
   SHARED SHINE SWEEP
══════════════════════════════════════ */
.stream-btn .shine,
.donate-btn .shine {
  position: absolute;
  top: 0;
  left: -60%;
  width: 45%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255, 255, 255, 0.05) 50%,
    transparent 70%
  );
  transform: skewX(-15deg);
  z-index: 0;
  pointer-events: none;
}
.stream-btn:hover .shine,
.donate-btn:hover .shine {
  left: 130%;
  transition: left 0.5s ease;
}



/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE OVERRIDES - Download Section
   Base styles target 350px–570px
   ═══════════════════════════════════════════════════════════════════ */

/* ───────────────────────────────────────────────────────────────────
   Very Small Devices (< 350px)
   ─────────────────────────────────────────────────────────────────── */

@media (max-width: 299px) {
  .download-section {
    gap: 10px;
    margin: 35px 6px;
  }

  .download-btn {
    width: 100%;
    max-width: 260px;
    padding: 14px 14px;
    border-radius: 12px;
  }

  .dl-icon-wrap {
    width: 38px;
    height: 38px;
    border-radius: 8px;
  }

  .dl-icon-wrap svg {
    width: 24px;
  }

  .dl-text {
    gap: 2px;
  }

  .dl-label {
    font-size: 1.25rem;
  }

  .dl-sub {
    font-size: 0.75rem;
  }

  .dl-badge {
    font-size: 0.6rem;
    padding: 2px 6px;
    top: -6px;
    right: -3px;
  }

  .stream-donate-wrapper {
    gap: 8px;
    flex-direction: column;
  }

  .stream-btn,
  .donate-btn {
    width: 100%;
    max-width: 260px;
    padding: 3px 12px;
    gap: 10px;
  }

  .play-pill,
  .donate-icon {
    width: 28px;
    height: 28px;
  }

  .play-pill svg,
  .donate-icon svg {
    width: 10px;
  }

  .stream-label {
    font-size: 0.85rem;
  }

  .live-dot {
    width: 4px;
    height: 4px;
  }

  .live-text {
    font-size: 0.5rem;
  }

  .donate-label {
    font-size: 0.7rem;
  }

  .donate-tag {
    font-size: 0.55rem;
  }
}

@media (max-width: 350px) {
  .download-section {
    gap: 12px;
    margin: 40px 8px;
  }

  .download-btn {
    width: 100%;
    max-width: 280px;
    padding: 16px 16px;
    border-radius: 13px;
  }

  .dl-icon-wrap {
    width: 42px;
    height: 42px;
    border-radius: 9px;
  }

  .dl-icon-wrap svg {
    width: 28px;
  }

  .dl-text {
    gap: 2px;
  }

  .dl-label {
    font-size: 1.4rem;
  }

  .dl-sub {
    font-size: 0.82rem;
  }

  .dl-badge {
    font-size: 0.65rem;
    padding: 2px 6px;
    top: -7px;
    right: -4px;
  }

  .stream-donate-wrapper {
    gap: 8px;
  }

  .stream-btn,
  .donate-btn {
    padding: 3px 13px;
    gap: 12px;
  }

  .play-pill,
  .donate-icon {
    width: 32px;
    height: 32px;
  }

  .play-pill svg,
  .donate-icon svg {
    width: 11px;
  }

  .stream-label {
    font-size: 0.92rem;
  }

  .live-dot {
    width: 4.5px;
    height: 4.5px;
  }

  .live-text {
    font-size: 0.54rem;
  }

  .donate-label {
    font-size: 0.76rem;
  }

  .donate-tag {
    font-size: 0.58rem;
  }
}

/* ───────────────────────────────────────────────────────────────────
   Larger Devices (> 570px)
   ─────────────────────────────────────────────────────────────────── */

@media (min-width: 570px) {
  .download-section {
    gap: 16px;
    margin: 55px 15px;
  }

  .download-btn {
    width: 340px;
    padding: 20px 22px;
    border-radius: 15px;
  }

  .dl-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 11px;
  }

  .dl-icon-wrap svg {
    width: 34px;
  }

  .dl-text {
    gap: 4px;
  }

  .dl-label {
    font-size: 1.75rem;
  }

  .dl-sub {
    font-size: 0.96rem;
  }

  .dl-badge {
    font-size: 0.74rem;
    padding: 2px 8px;
    top: -9px;
    right: -6px;
  }

  .stream-donate-wrapper {
    gap: 12px;
  }

  .stream-btn,
  .donate-btn {
    padding: 4px 17px;
    gap: 16px;
  }

  .play-pill,
  .donate-icon {
    width: 38px;
    height: 38px;
  }

  .play-pill svg,
  .donate-icon svg {
    width: 13px;
  }

  .stream-label {
    font-size: 1.06rem;
  }

  .live-dot {
    width: 5.5px;
    height: 5.5px;
  }

  .live-text {
    font-size: 0.6rem;
  }

  .donate-label {
    font-size: 0.86rem;
  }

  .donate-tag {
    font-size: 0.64rem;
  }
}

@media (min-width: 760px) {
  .download-section {
    gap: 18px;
    margin: 60px 20px;
  }

  .download-btn {
    width: 380px;
    padding: 22px 24px;
    border-radius: 16px;
  }

  .dl-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 12px;
  }

  .dl-icon-wrap svg {
    width: 36px;
  }

  .dl-text {
    gap: 4px;
  }

  .dl-label {
    font-size: 1.9rem;
  }

  .dl-sub {
    font-size: 1.02rem;
  }

  .dl-badge {
    font-size: 0.76rem;
    padding: 3px 9px;
    top: -10px;
    right: -7px;
  }

  .stream-donate-wrapper {
    gap: 14px;
  }

  .stream-btn,
  .donate-btn {
    padding: 5px 19px;
    gap: 18px;
  }

  .play-pill,
  .donate-icon {
    width: 40px;
    height: 40px;
  }

  .play-pill svg,
  .donate-icon svg {
    width: 14px;
  }

  .stream-label {
    font-size: 1.12rem;
  }

  .live-dot {
    width: 6px;
    height: 6px;
  }

  .live-text {
    font-size: 0.62rem;
  }

  .donate-label {
    font-size: 0.9rem;
  }

  .donate-tag {
    font-size: 0.66rem;
  }
}

@media (min-width: 990px) {
  .download-section {
    gap: 20px;
    margin: 65px 25px;
  }

  .download-btn {
    width: 420px;
    padding: 24px 26px;
    border-radius: 17px;
  }

  .dl-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 12px;
  }

  .dl-icon-wrap svg {
    width: 38px;
  }

  .dl-text {
    gap: 5px;
  }

  .dl-label {
    font-size: 2rem;
  }

  .dl-sub {
    font-size: 1.06rem;
  }

  .dl-badge {
    font-size: 0.78rem;
    padding: 3px 10px;
    top: -11px;
    right: -8px;
  }

  .stream-donate-wrapper {
    gap: 16px;
  }

  .stream-btn,
  .donate-btn {
    padding: 6px 21px;
    gap: 20px;
  }

  .play-pill,
  .donate-icon {
    width: 42px;
    height: 42px;
  }

  .play-pill svg,
  .donate-icon svg {
    width: 14px;
  }

  .stream-label {
    font-size: 1.16rem;
  }

  .live-dot {
    width: 6px;
    height: 6px;
  }

  .live-text {
    font-size: 0.64rem;
  }

  .donate-label {
    font-size: 0.94rem;
  }

  .donate-tag {
    font-size: 0.68rem;
  }
}

@media (min-width: 1200px) {
  .download-section {
    gap: 22px;
    margin: 70px 30px;
  }

  .download-btn {
    width: 460px;
    padding: 26px 28px;
    border-radius: 18px;
  }

  .dl-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 13px;
  }

  .dl-icon-wrap svg {
    width: 40px;
  }

  .dl-text {
    gap: 5px;
  }

  .dl-label {
    font-size: 2.1rem;
  }

  .dl-sub {
    font-size: 1.1rem;
  }

  .dl-badge {
    font-size: 0.8rem;
    padding: 3px 11px;
    top: -12px;
    right: -9px;
  }

  .stream-donate-wrapper {
    gap: 18px;
  }

  .stream-btn,
  .donate-btn {
    padding: 7px 23px;
    gap: 22px;
  }

  .play-pill,
  .donate-icon {
    width: 44px;
    height: 44px;
  }

  .play-pill svg,
  .donate-icon svg {
    width: 15px;
  }

  .stream-label {
    font-size: 1.2rem;
  }

  .live-dot {
    width: 6.5px;
    height: 6.5px;
  }

  .live-text {
    font-size: 0.66rem;
  }

  .donate-label {
    font-size: 0.98rem;
  }

  .donate-tag {
    font-size: 0.7rem;
  }
}

@media (min-width: 1400px) {
  .download-section {
    gap: 24px;
    margin: 75px 35px;
  }

  .download-btn {
    width: 500px;
    padding: 28px 30px;
    border-radius: 19px;
  }

  .dl-icon-wrap {
    width: 68px;
    height: 68px;
    border-radius: 14px;
  }

  .dl-icon-wrap svg {
    width: 42px;
  }

  .dl-text {
    gap: 6px;
  }

  .dl-label {
    font-size: 2.2rem;
  }

  .dl-sub {
    font-size: 1.14rem;
  }

  .dl-badge {
    font-size: 0.82rem;
    padding: 3px 12px;
    top: -13px;
    right: -10px;
  }

  .stream-donate-wrapper {
    gap: 20px;
  }

  .stream-btn,
  .donate-btn {
    padding: 8px 25px;
    gap: 24px;
  }

  .play-pill,
  .donate-icon {
    width: 46px;
    height: 46px;
  }

  .play-pill svg,
  .donate-icon svg {
    width: 15px;
  }

  .stream-label {
    font-size: 1.24rem;
  }

  .live-dot {
    width: 7px;
    height: 7px;
  }

  .live-text {
    font-size: 0.68rem;
  }

  .donate-label {
    font-size: 1.02rem;
  }

  .donate-tag {
    font-size: 0.72rem;
  }
}

@media (min-width: 1600px) {
  .download-section {
    gap: 26px;
    margin: 80px 40px;
  }

  .download-btn {
    width: 540px;
    padding: 30px 32px;
    border-radius: 20px;
  }

  .dl-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 14px;
  }

  .dl-icon-wrap svg {
    width: 44px;
  }

  .dl-text {
    gap: 6px;
  }

  .dl-label {
    font-size: 2.3rem;
  }

  .dl-sub {
    font-size: 1.18rem;
  }

  .dl-badge {
    font-size: 0.84rem;
    padding: 4px 13px;
    top: -14px;
    right: -11px;
  }

  .stream-donate-wrapper {
    gap: 22px;
  }

  .stream-btn,
  .donate-btn {
    padding: 8px 27px;
    gap: 26px;
  }

  .play-pill,
  .donate-icon {
    width: 48px;
    height: 48px;
  }

  .play-pill svg,
  .donate-icon svg {
    width: 16px;
  }

  .stream-label {
    font-size: 1.28rem;
  }

  .live-dot {
    width: 7.5px;
    height: 7.5px;
  }

  .live-text {
    font-size: 0.7rem;
  }

  .donate-label {
    font-size: 1.06rem;
  }

  .donate-tag {
    font-size: 0.74rem;
  }
}

@media (min-width: 1900px) {
  .download-section {
    gap: 28px;
    margin: 85px 45px;
  }

  .download-btn {
    width: 580px;
    padding: 32px 34px;
    border-radius: 21px;
  }

  .dl-icon-wrap {
    width: 76px;
    height: 76px;
    border-radius: 15px;
  }

  .dl-icon-wrap svg {
    width: 46px;
  }

  .dl-text {
    gap: 7px;
  }

  .dl-label {
    font-size: 2.4rem;
  }

  .dl-sub {
    font-size: 1.22rem;
  }

  .dl-badge {
    font-size: 0.86rem;
    padding: 4px 14px;
    top: -15px;
    right: -12px;
  }

  .stream-donate-wrapper {
    gap: 24px;
  }

  .stream-btn,
  .donate-btn {
    padding: 9px 29px;
    gap: 28px;
  }

  .play-pill,
  .donate-icon {
    width: 50px;
    height: 50px;
  }

  .play-pill svg,
  .donate-icon svg {
    width: 16px;
  }

  .stream-label {
    font-size: 1.32rem;
  }

  .live-dot {
    width: 8px;
    height: 8px;
  }

  .live-text {
    font-size: 0.72rem;
  }

  .donate-label {
    font-size: 1.1rem;
  }

  .donate-tag {
    font-size: 0.76rem;
  }
}

@media (min-width: 2500px) {
  .download-section {
    gap: 32px;
    margin: 95px 55px;
  }

  .download-btn {
    width: 660px;
    padding: 36px 40px;
    border-radius: 23px;
  }

  .dl-icon-wrap {
    width: 84px;
    height: 84px;
    border-radius: 16px;
  }

  .dl-icon-wrap svg {
    width: 50px;
  }

  .dl-text {
    gap: 8px;
  }

  .dl-label {
    font-size: 2.6rem;
  }

  .dl-sub {
    font-size: 1.3rem;
  }

  .dl-badge {
    font-size: 0.9rem;
    padding: 4px 16px;
    top: -17px;
    right: -14px;
  }

  .stream-donate-wrapper {
    gap: 28px;
  }

  .stream-btn,
  .donate-btn {
    padding: 10px 33px;
    gap: 32px;
  }

  .play-pill,
  .donate-icon {
    width: 54px;
    height: 54px;
  }

  .play-pill svg,
  .donate-icon svg {
    width: 17px;
  }

  .stream-label {
    font-size: 1.4rem;
  }

  .live-dot {
    width: 9px;
    height: 9px;
  }

  .live-text {
    font-size: 0.76rem;
  }

  .donate-label {
    font-size: 1.18rem;
  }

  .donate-tag {
    font-size: 0.8rem;
  }
}

@media (min-width: 3800px) {
  .download-section {
    gap: 38px;
    margin: 110px 70px;
  }

  .download-btn {
    width: 780px;
    padding: 42px 48px;
    border-radius: 26px;
  }

  .dl-icon-wrap {
    width: 96px;
    height: 96px;
    border-radius: 18px;
  }

  .dl-icon-wrap svg {
    width: 56px;
  }

  .dl-text {
    gap: 10px;
  }

  .dl-label {
    font-size: 2.9rem;
  }

  .dl-sub {
    font-size: 1.42rem;
  }

  .dl-badge {
    font-size: 0.96rem;
    padding: 5px 18px;
    top: -20px;
    right: -16px;
  }

  .stream-donate-wrapper {
    gap: 34px;
  }

  .stream-btn,
  .donate-btn {
    padding: 10px 39px;
    gap: 38px;
  }

  .play-pill,
  .donate-icon {
    width: 60px;
    height: 60px;
  }

  .play-pill svg,
  .donate-icon svg {
    width: 19px;
  }

  .stream-label {
    font-size: 1.52rem;
  }

  .live-dot {
    width: 10px;
    height: 10px;
  }

  .live-text {
    font-size: 0.82rem;
  }

  .donate-label {
    font-size: 1.3rem;
  }

  .donate-tag {
    font-size: 0.86rem;
  }
}
