:root {
  --igp-player-space: 0px;
}

body.igp-player-open {
  padding-bottom: var(--igp-player-space) !important;
}

.igp,
.igp * {
  box-sizing: border-box;
}

.igp {
  --igp-accent: #e03058;
  --igp-accent-rgb: 224, 48, 88;
  --igp-artwork-rgb: 224, 48, 88;
  position: fixed;
  z-index: 999999;
  right: max(14px, env(safe-area-inset-right));
  bottom: max(14px, env(safe-area-inset-bottom));
  left: max(14px, env(safe-area-inset-left));
  width: min(1120px, calc(100% - 28px));
  min-width: 0;
  margin-inline: auto;
  color: #fff;
  font-family: "century-gothic-bold", "Impac Century Gothic", "century-gothic", "Century Gothic", CenturyGothic, "Apple Gothic", "URW Gothic L", Futura, "Trebuchet MS", Arial, sans-serif;
  font-weight: 700;
  isolation: isolate;
  animation: igp-arrive .38s cubic-bezier(.2, .78, .2, 1) both;
}

.igp[hidden] {
  display: none !important;
}

.igp .screen-reader-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  white-space: nowrap !important;
}

.igp__ambient {
  position: absolute;
  z-index: -2;
  inset: -18px 7% -10px;
  border-radius: 42px;
  background:
    radial-gradient(circle at 18% 70%, rgba(var(--igp-accent-rgb), .3), transparent 34%),
    radial-gradient(circle at 74% 10%, rgba(154, 139, 255, .18), transparent 38%);
  filter: blur(26px);
  opacity: .58;
  pointer-events: none;
}

.igp__panel-backdrop {
  position: fixed;
  z-index: 5;
  inset: 0;
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: default;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.igp__panel-backdrop[hidden] {
  display: none !important;
}

.igp__glass {
  position: relative;
  z-index: 6;
  overflow: visible;
  min-height: 92px;
  display: grid;
  grid-template-columns: minmax(230px, 1fr) minmax(330px, 1.45fr) minmax(220px, .9fr);
  align-items: center;
  gap: 20px;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 22px;
  background:
    linear-gradient(115deg, rgba(43, 31, 51, .88), rgba(16, 13, 21, .94) 54%, rgba(31, 22, 38, .9));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .12),
    inset 0 -1px 0 rgba(255, 255, 255, .035),
    0 22px 62px rgba(0, 0, 0, .58),
    0 0 30px rgba(var(--igp-accent-rgb), .14);
  -webkit-backdrop-filter: blur(30px) saturate(155%);
  backdrop-filter: blur(30px) saturate(155%);
}

.igp__glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(100deg, rgba(255, 255, 255, .045), transparent 22%),
    radial-gradient(circle at 8% 50%, rgba(var(--igp-accent-rgb), .09), transparent 25%);
  pointer-events: none;
}

.igp__glass::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 9% 52%, rgba(var(--igp-artwork-rgb), .25), transparent 34%),
    linear-gradient(110deg, rgba(var(--igp-artwork-rgb), .12), transparent 50%, rgba(var(--igp-artwork-rgb), .07));
  opacity: .48;
  pointer-events: none;
  transition: background .45s ease, opacity .35s ease;
}

.igp[data-state="playing"] .igp__glass::after {
  opacity: .82;
}

.igp__now,
.igp__transport,
.igp__utility {
  position: relative;
  z-index: 1;
}

.igp__now {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 13px;
}

.igp__artwork-wrap {
  position: relative;
  width: 68px;
  height: 68px;
  flex: 0 0 68px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 15px;
  background: linear-gradient(145deg, #2b1c36, #0c0910);
  box-shadow: 0 10px 25px rgba(0, 0, 0, .35);
}

.igp__artwork {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  opacity: 0;
  transition: opacity .25s ease;
}

.igp__artwork[src]:not([src=""]) {
  opacity: 1;
}

.igp__copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.igp__source {
  display: block;
  overflow: hidden;
  color: #f2edf4;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .115em;
  text-transform: uppercase;
}

.igp__eyebrow {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.igp__eyebrow .igp__source {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.igp__title,
.igp__artist {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.igp__source-text,
.igp__title-text,
.igp__artist-text {
  width: max-content;
  min-width: 100%;
  display: inline-block;
  transform: translateX(0);
  white-space: nowrap;
}

.igp__source.is-marquee .igp__source-text,
.igp__title.is-marquee .igp__title-text,
.igp__artist.is-marquee .igp__artist-text {
  animation: igp-marquee var(--igp-marquee-duration, 14s) linear infinite;
}

.igp__source-text[data-marquee-text]::after,
.igp__title-text[data-marquee-text]::after,
.igp__artist-text[data-marquee-text]::after {
  content: attr(data-marquee-text);
  padding-left: 34px;
}

.igp__title {
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
}

.igp__artist {
  color: #aaa2af;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.3;
}

.igp__kofi {
  width: fit-content;
  max-width: 100%;
  min-height: 21px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 1px;
  padding: 3px 8px 3px 6px;
  border: 1px solid rgba(var(--igp-accent-rgb), .38);
  border-radius: 999px;
  background: rgba(var(--igp-accent-rgb), .11);
  color: #eee9f1;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .07);
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.igp__kofi[hidden] {
  display: none !important;
}

.igp__kofi:hover {
  border-color: rgba(var(--igp-accent-rgb), .68);
  background: rgba(var(--igp-accent-rgb), .2);
  color: #fff;
  transform: translateY(-1px);
}

.igp__kofi svg {
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--igp-accent);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.igp__kofi span {
  min-width: 0;
  overflow: hidden;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .055em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.igp__kofi strong {
  color: #fff;
}

.igp__transport {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.igp__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.igp__button {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .075);
  border-radius: 11px;
  outline: none;
  background: rgba(255, 255, 255, .035);
  color: #cfcad3;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, transform .2s ease, opacity .2s ease;
}

.igp__button:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, .15);
  background: rgba(255, 255, 255, .085);
}

.igp__button:active {
  transform: scale(.94);
}

.igp__button:focus-visible,
.igp__open:focus-visible,
.igp__download:focus-visible,
.igp input:focus-visible {
  outline: 2px solid rgba(var(--igp-accent-rgb), .7);
  outline-offset: 2px;
}

.igp__button svg,
.igp__open svg,
.igp__download svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.igp__button--play {
  width: 42px;
  height: 42px;
  color: #fff;
  border-color: rgba(255, 255, 255, .18);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--igp-accent), #a83bcb);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .28),
    0 7px 18px rgba(var(--igp-accent-rgb), .3),
    0 0 18px rgba(var(--igp-accent-rgb), .16);
}

.igp__button--play:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--igp-accent), #b24bd3);
  transform: translateY(-1px);
}

.igp__button--play svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
}

.igp__button--play .igp__play-symbol,
.igp__button--play .igp__pause-symbol,
.igp__button--play .igp__stop-symbol {
  fill: currentColor;
  stroke: none;
}

.igp[data-state="playing"] .igp__button--play .igp__pause-symbol,
.igp[data-state="playing"] .igp__button--play .igp__stop-symbol,
.igp[data-state="playing"] .igp__button--play .igp__pause-symbol rect,
.igp[data-state="playing"] .igp__button--play .igp__stop-symbol rect {
  fill: currentColor;
  stroke: none;
}

.igp__timeline {
  min-width: 0;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 40px;
  align-items: center;
  gap: 8px;
}

.igp__time {
  color: #908896;
  font-size: 9px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.igp__time--current {
  text-align: right;
}

.igp__waveform {
  position: relative;
  width: 100%;
  height: 34px;
  min-width: 0;
  display: flex;
  align-items: center;
}

.igp__waveform-bars {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  gap: 2px;
  overflow: hidden;
  pointer-events: none;
}

.igp__waveform-bars i {
  width: 3px;
  height: var(--igp-wave-height, 14px);
  flex: 1 1 3px;
  display: block;
  border-radius: 999px;
  background: rgba(255, 255, 255, .14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
  transform-origin: center;
  transition: height .18s ease, background .18s ease, box-shadow .18s ease, opacity .18s ease;
}

.igp__waveform-bars i.is-played {
  background: var(--igp-accent);
  box-shadow: 0 0 7px rgba(var(--igp-accent-rgb), .28);
}

.igp[data-mode="radio"] .igp__waveform-bars i {
  background: rgba(var(--igp-accent-rgb), .36);
}

.igp[data-mode="radio"][data-state="playing"] .igp__waveform-bars i {
  background: var(--igp-accent);
  animation: igp-wave-live .85s ease-in-out infinite alternate;
  animation-delay: var(--igp-wave-delay, 0s);
}

.igp__progress {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  border: 0;
  outline: 0;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background: transparent;
  opacity: 0;
}

.igp__progress::-webkit-slider-runnable-track {
  height: 34px;
  background: transparent;
}

.igp__progress::-webkit-slider-thumb {
  width: 1px;
  height: 34px;
  border: 0;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
}

.igp__progress::-moz-range-track {
  height: 34px;
  border: 0;
  background: transparent;
}

.igp__progress::-moz-range-thumb {
  width: 1px;
  height: 34px;
  border: 0;
  background: transparent;
}

.igp__volume {
  --igp-range-value: 0%;
  width: 100%;
  height: 4px;
  margin: 0;
  border: 0;
  border-radius: 999px;
  outline: 0;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background: linear-gradient(90deg, var(--igp-accent) 0 var(--igp-range-value), rgba(255, 255, 255, .14) var(--igp-range-value) 100%);
}

.igp__volume::-webkit-slider-thumb {
  width: 11px;
  height: 11px;
  border: 2px solid var(--igp-accent);
  border-radius: 50%;
  appearance: none;
  -webkit-appearance: none;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(var(--igp-accent-rgb), .14), 0 0 10px rgba(var(--igp-accent-rgb), .42);
}

.igp__volume::-moz-range-thumb {
  width: 9px;
  height: 9px;
  border: 2px solid var(--igp-accent);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(var(--igp-accent-rgb), .14), 0 0 10px rgba(var(--igp-accent-rgb), .42);
}

.igp[data-mode="radio"] .igp__progress {
  cursor: default;
}

.igp__utility {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
}

.igp__live {
  min-height: 22px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border: 0;
  border-radius: 999px;
  background: #e6e2e8;
  color: #1b1820;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .78), 0 3px 10px rgba(0, 0, 0, .18);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .075em;
}

.igp__live[hidden] {
  display: none;
}

.igp__button--volume {
  position: relative;
  width: 31px;
  height: 31px;
}

.igp__button--volume svg {
  width: 18px;
  height: 18px;
}

.igp__button--volume.is-muted {
  border-color: rgba(255, 52, 91, .55);
  background: rgba(255, 31, 78, .14);
  color: #ff4268;
}

.igp__button--volume.is-muted::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #ff315d;
  box-shadow: 0 0 7px rgba(255, 49, 93, .38);
  transform: rotate(-45deg);
}

.igp__volume-control {
  position: relative;
  flex: 0 0 auto;
}

.igp__volume-popover {
  position: absolute;
  z-index: 12;
  right: 0;
  bottom: calc(100% + 10px);
  width: 220px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(38, 29, 45, .97), rgba(15, 13, 19, .985));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .09), 0 18px 45px rgba(0, 0, 0, .52), 0 0 22px rgba(var(--igp-accent-rgb), .12);
  -webkit-backdrop-filter: blur(24px) saturate(145%);
  backdrop-filter: blur(24px) saturate(145%);
}

.igp__volume-popover[hidden] {
  display: none;
}

.igp__volume-popover > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
  color: #9d95a2;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .09em;
}

.igp__volume-value {
  color: var(--igp-accent);
  font: inherit;
}

.igp__volume {
  --igp-range-value: 85%;
  width: 100%;
}

.igp__volume-mute {
  width: 100%;
  min-height: 29px;
  margin: 11px 0 0;
  padding: 0 10px;
  border: 1px solid rgba(255, 55, 92, .48);
  border-radius: 9px;
  background: rgba(255, 35, 77, .16);
  color: #ff9aac;
  font: inherit;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .07em;
  cursor: pointer;
}

.igp__volume-mute.is-muted {
  border-color: rgba(52, 211, 153, .48);
  background: rgba(30, 190, 132, .15);
  color: #79e7bc;
}

.igp__open,
.igp__download {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 10px;
  background: rgba(255, 255, 255, .045);
  color: #d7d1dc;
  text-decoration: none;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.igp__download {
  width: 32px;
  min-width: 32px;
  padding: 0;
  border-color: rgba(var(--igp-accent-rgb), .26);
  background: rgba(var(--igp-accent-rgb), .08);
}

.igp__open:hover,
.igp__download:hover {
  border-color: rgba(var(--igp-accent-rgb), .38);
  background: rgba(var(--igp-accent-rgb), .1);
  color: #fff;
}

.igp__open[hidden],
.igp__download[hidden] {
  display: none;
}

.igp__button--close {
  width: 34px;
  height: 34px;
  border-color: rgba(255, 255, 255, .15);
  border-radius: 50%;
  background: #ff004d;
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .28), 0 7px 17px rgba(255, 0, 77, .26);
}

.igp__button--close:hover {
  border-color: rgba(255, 255, 255, .3);
  background: #ff195e;
}

.igp__button--queue {
  width: 34px;
  height: 34px;
}

.igp__chat {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 9px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 10px;
  background: rgba(255, 255, 255, .045);
  color: #d8d3dc;
  font: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}

.igp__chat[hidden] {
  display: none !important;
}

.igp__chat:hover {
  border-color: rgba(var(--igp-accent-rgb), .4);
  background: rgba(var(--igp-accent-rgb), .12);
  color: #fff;
}

.igp__chat svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.igp__chat span {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .08em;
}

.igp--library-open .igp__button--queue {
  border-color: rgba(var(--igp-accent-rgb), .5);
  background: rgba(var(--igp-accent-rgb), .15);
  color: #fff;
}

.igp.igp--chat-open .igp__chat {
  border-color: rgba(var(--igp-accent-rgb), .52);
  background: rgba(var(--igp-accent-rgb), .16);
  color: #fff;
}

/* Aislamiento frente a los estilos globales de botones del tema. */
.igp button.igp__button {
  width: 36px !important;
  min-width: 36px !important;
  max-width: 36px !important;
  height: 36px !important;
  min-height: 36px !important;
  max-height: 36px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 1px solid rgba(255, 255, 255, .075) !important;
  border-radius: 11px !important;
  background: rgba(255, 255, 255, .035) !important;
  box-shadow: none !important;
  color: #cfcad3 !important;
  line-height: 1 !important;
}

.igp button.igp__button:hover {
  border-color: rgba(255, 255, 255, .15) !important;
  background: rgba(255, 255, 255, .085) !important;
  color: #fff !important;
}

.igp button.igp__button--play {
  width: 42px !important;
  min-width: 42px !important;
  max-width: 42px !important;
  height: 42px !important;
  min-height: 42px !important;
  max-height: 42px !important;
  border-color: rgba(255, 255, 255, .2) !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, var(--igp-accent), #a83bcb) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .28), 0 7px 18px rgba(var(--igp-accent-rgb), .3) !important;
  color: #fff !important;
}

.igp button.igp__button--close {
  width: 34px !important;
  min-width: 34px !important;
  max-width: 34px !important;
  height: 34px !important;
  min-height: 34px !important;
  max-height: 34px !important;
  border-color: rgba(255, 255, 255, .17) !important;
  border-radius: 50% !important;
  background: #ff004d !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .28), 0 7px 17px rgba(255, 0, 77, .26) !important;
  color: #fff !important;
}

.igp button.igp__button--queue {
  width: 34px !important;
  min-width: 34px !important;
  max-width: 34px !important;
  height: 34px !important;
  min-height: 34px !important;
  max-height: 34px !important;
}

.igp button.igp__chat {
  min-height: 32px !important;
  margin: 0 !important;
  padding: 0 9px !important;
  border: 1px solid rgba(255, 255, 255, .1) !important;
  border-radius: 10px !important;
  background: rgba(255, 255, 255, .045) !important;
  box-shadow: none !important;
  color: #d8d3dc !important;
  font: inherit !important;
  line-height: 1 !important;
}

.igp.igp--chat-open button.igp__chat,
.igp button.igp__chat:hover {
  border-color: rgba(var(--igp-accent-rgb), .5) !important;
  background: rgba(var(--igp-accent-rgb), .15) !important;
  color: #fff !important;
}

.igp button.igp__chat-close,
.igp button.igp__history-toggle,
.igp button.igp__radio-history-toggle {
  margin: 0 !important;
  font-family: inherit !important;
  cursor: pointer;
}

.igp button.igp__chat-close {
  width: 34px !important;
  min-width: 34px !important;
  height: 34px !important;
  min-height: 34px !important;
  padding: 0 !important;
  border: 1px solid rgba(255, 255, 255, .17) !important;
  border-radius: 50% !important;
  background: #ff004d !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .26), 0 7px 17px rgba(255, 0, 77, .24) !important;
  color: #fff !important;
}

.igp button.igp__history-toggle,
.igp button.igp__radio-history-toggle {
  min-height: 25px !important;
  padding: 4px 9px !important;
  border: 1px solid rgba(var(--igp-accent-rgb), .22) !important;
  border-radius: 8px !important;
  background: rgba(var(--igp-accent-rgb), .07) !important;
  box-shadow: none !important;
  color: #c8c0ca !important;
  font-size: 7.5px !important;
  font-weight: 700 !important;
  letter-spacing: .055em !important;
}

.igp button.igp__history-toggle[aria-expanded="true"],
.igp button.igp__radio-history-toggle[aria-expanded="true"] {
  border-color: rgba(var(--igp-accent-rgb), .42) !important;
  background: rgba(var(--igp-accent-rgb), .14) !important;
  color: #fff !important;
}

.igp.igp--library-open button.igp__button--queue {
  border-color: rgba(var(--igp-accent-rgb), .5) !important;
  background: rgba(var(--igp-accent-rgb), .15) !important;
  color: #fff !important;
}

.igp button.igp__preset,
.igp button.igp__history-item,
.igp button.igp__search-item,
.igp button.igp__up-next-item {
  width: 100% !important;
  height: auto !important;
  min-height: 58px !important;
  margin: 0 !important;
  padding: 8px !important;
  border: 1px solid rgba(255, 255, 255, .075) !important;
  border-radius: 12px !important;
  background: rgba(255, 255, 255, .035) !important;
  box-shadow: none !important;
  color: #fff !important;
  line-height: 1.2 !important;
}

.igp button.igp__preset:hover,
.igp button.igp__history-item:hover,
.igp button.igp__search-item:hover,
.igp button.igp__up-next-item:hover {
  border-color: rgba(var(--igp-accent-rgb), .38) !important;
  background: rgba(var(--igp-accent-rgb), .08) !important;
}

.igp button.igp__library-close,
.igp button.igp__history-clear,
.igp button.igp__radio-history-clear {
  margin: 0 !important;
  box-shadow: none !important;
}

.igp button.igp__library-close {
  width: 32px !important;
  min-width: 32px !important;
  height: 32px !important;
  min-height: 32px !important;
  padding: 0 !important;
  border: 1px solid rgba(255, 255, 255, .1) !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, .055) !important;
  color: #fff !important;
}

.igp button.igp__history-clear,
.igp button.igp__radio-history-clear {
  min-height: 24px !important;
  padding: 3px 8px !important;
  border: 1px solid rgba(255, 255, 255, .07) !important;
  border-radius: 7px !important;
  background: rgba(255, 255, 255, .055) !important;
  color: #aaa3ae !important;
}

.igp form.igp__sound-search {
  margin: 0 0 8px !important;
  padding: 0 !important;
}

.igp input.igp__sound-search-input {
  width: 100% !important;
  height: 38px !important;
  min-height: 38px !important;
  margin: 0 !important;
  padding: 0 42px 0 12px !important;
  border: 1px solid rgba(255, 255, 255, .1) !important;
  border-radius: 11px !important;
  background: rgba(255, 255, 255, .045) !important;
  box-shadow: none !important;
  color: #fff !important;
  font-family: inherit !important;
  font-size: 11px !important;
  font-weight: 800 !important;
}

.igp .igp__sound-search button.igp__sound-search-submit {
  width: 38px !important;
  min-width: 38px !important;
  max-width: 38px !important;
  height: 38px !important;
  min-height: 38px !important;
  max-height: 38px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 1px solid rgba(var(--igp-accent-rgb), .28) !important;
  border-radius: 11px !important;
  background: rgba(var(--igp-accent-rgb), .1) !important;
  box-shadow: none !important;
  color: #fff !important;
}

.igp .igp__sound-search button.igp__sound-search-clear {
  position: absolute !important;
  z-index: 2 !important;
  top: 6px !important;
  right: 6px !important;
  width: 26px !important;
  min-width: 26px !important;
  max-width: 26px !important;
  height: 26px !important;
  min-height: 26px !important;
  max-height: 26px !important;
  margin: 0 !important;
  padding: 0 !important;
  display: grid !important;
  place-items: center !important;
  border: 0 !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, .075) !important;
  color: #ded7e1 !important;
}

.igp .igp__sound-search button.igp__sound-search-clear[hidden] {
  display: none !important;
}

.igp button.igp__volume-mute {
  width: 100% !important;
  min-height: 29px !important;
  margin: 11px 0 0 !important;
  padding: 0 10px !important;
  border: 1px solid rgba(255, 55, 92, .48) !important;
  border-radius: 9px !important;
  background: rgba(255, 35, 77, .16) !important;
  box-shadow: none !important;
  color: #ff9aac !important;
  font-family: inherit !important;
  font-size: 8px !important;
  font-weight: 700 !important;
  letter-spacing: .07em !important;
}

.igp button.igp__volume-mute.is-muted {
  border-color: rgba(52, 211, 153, .48) !important;
  background: rgba(30, 190, 132, .15) !important;
  color: #79e7bc !important;
}

.igp button.igp__button--volume.is-muted {
  border-color: rgba(255, 52, 91, .55) !important;
  background: rgba(255, 31, 78, .14) !important;
  color: #ff4268 !important;
}

.igp button.igp__panel-backdrop {
  position: fixed !important;
  z-index: 5 !important;
  inset: 0 !important;
  width: 100vw !important;
  max-width: none !important;
  height: 100vh !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}

.igp button.igp__launcher {
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  min-height: 50px !important;
  margin: 0 !important;
  padding: 7px 16px 7px 8px !important;
  border: 1px solid rgba(255, 255, 255, .15) !important;
  border-radius: 999px !important;
  background: linear-gradient(145deg, rgba(38, 29, 45, .9), rgba(15, 13, 19, .94)) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .11), 0 14px 38px rgba(0, 0, 0, .5), 0 0 22px rgba(var(--igp-accent-rgb), .12) !important;
  color: #fff !important;
  line-height: 1 !important;
  display: none !important;
}

.igp__chat-modal,
.igp__library {
  position: absolute;
  z-index: 8;
  right: 0;
  bottom: calc(100% + 11px);
  width: min(470px, 100%);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 20px;
  background: linear-gradient(145deg, #211a27, #121016 64%, #19131e);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .09), 0 24px 70px rgba(0, 0, 0, .62);
  color: #fff;
}

.igp__chat-modal {
  z-index: 9;
  width: min(440px, 100%);
  background: linear-gradient(145deg, rgba(36, 28, 43, .97), rgba(15, 13, 19, .985) 64%, rgba(28, 20, 34, .98));
  -webkit-backdrop-filter: blur(28px) saturate(145%);
  backdrop-filter: blur(28px) saturate(145%);
}

.igp__chat-modal[hidden],
.igp__library[hidden] {
  display: none;
}

.igp__chat-head {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px 12px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .075);
  background: linear-gradient(90deg, rgba(var(--igp-accent-rgb), .11), rgba(255, 255, 255, .02));
}

.igp__chat-head > div {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.igp__chat-head span {
  color: var(--igp-accent);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .13em;
}

.igp__chat-title {
  overflow: hidden;
  font-size: 13px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.igp__chat-close {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
}

.igp__chat-close svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.igp__chat-frame-wrap {
  position: relative;
  height: min(60vh, 520px);
  min-height: 330px;
  overflow: hidden;
  background: #0e0c12;
}

.igp__chat-frame {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  background: #0e0c12;
  opacity: 0;
  transition: opacity .25s ease;
}

.igp__chat-frame.is-ready {
  opacity: 1;
}

.igp__chat-loading {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 50% 38%, rgba(var(--igp-accent-rgb), .13), transparent 34%), #0e0c12;
  color: #a89fac;
  font-size: 9px;
  letter-spacing: .08em;
}

.igp__chat-loading[hidden] {
  display: none;
}

.igp__library[hidden] {
  display: none;
}

.igp__library-head {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 14px 13px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .075);
  background: rgba(255, 255, 255, .025);
}

.igp__library-head > div {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.igp__library-head span,
.igp__library-label > span {
  color: var(--igp-accent);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: .12em;
}

.igp__library-head strong {
  overflow: hidden;
  font-size: 14.5px;
  font-weight: 900;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.igp__library-close {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
  background: rgba(255, 255, 255, .055);
  color: #fff;
  cursor: pointer;
}

.igp__library-close svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.igp__library-scroll {
  max-height: min(56vh, 470px);
  overflow: auto;
  padding: 16px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, .18) transparent;
}

.igp__library-section + .igp__library-section {
  margin-top: 19px;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, .07);
}

.igp__library-label {
  min-height: 23px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 9px;
}

.igp__library-label small {
  color: #89818e;
  font-size: 10px;
  font-weight: 700;
}

.igp__sound-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 38px;
  align-items: center;
  gap: 7px;
  margin: 0 0 8px;
}

.igp__sound-search-field {
  position: relative;
  min-width: 0;
  display: block;
}

.igp__sound-search-input {
  width: 100%;
  height: 38px;
  min-width: 0;
  margin: 0;
  padding: 0 42px 0 12px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 11px;
  outline: none;
  background: rgba(255, 255, 255, .045);
  color: #fff;
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  -webkit-appearance: none;
  appearance: none;
}

.igp__sound-search-input::placeholder {
  color: #817987;
  opacity: 1;
}

.igp__sound-search-submit {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(var(--igp-accent-rgb), .28);
  border-radius: 11px;
  background: rgba(var(--igp-accent-rgb), .1);
  color: #fff;
  cursor: pointer;
}

.igp__sound-search button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.igp__sound-search-status {
  margin: 7px 2px 0;
  color: #857d8a;
  font-size: 9.5px;
  font-weight: 700;
  line-height: 1.45;
}

.igp__sound-search-status[hidden],
.igp__sound-search-results[hidden] {
  display: none;
}

.igp__sound-search-results {
  display: grid;
  gap: 7px;
  margin-top: 10px;
}

.igp__subsection-label {
  min-height: 29px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 13px;
  padding-top: 11px;
  border-top: 1px solid rgba(255, 255, 255, .065);
}

.igp__subsection-label > span {
  color: #aaa2af;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .09em;
}

.igp__radio-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.igp__preset,
.igp__history-item,
.igp__search-item,
.igp__up-next-item,
.igp__radio-log-item {
  min-width: 0;
  display: grid;
  align-items: center;
  gap: 9px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, .075);
  border-radius: 12px;
  background: rgba(255, 255, 255, .035);
  color: #fff;
  font: inherit;
  text-align: left;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.igp__preset,
.igp__history-item,
.igp__search-item,
.igp__up-next-item {
  cursor: pointer;
}

.igp__preset {
  grid-template-columns: 44px minmax(0, 1fr) 28px;
}

.igp__history-item,
.igp__search-item,
.igp__up-next-item,
.igp__radio-log-item {
  width: 100%;
  grid-template-columns: 42px minmax(0, 1fr) 29px;
}

.igp__radio-log-item {
  grid-template-columns: 42px minmax(0, 1fr) auto;
}

.igp__preset:hover,
.igp__history-item:hover,
.igp__search-item:hover,
.igp__up-next-item:hover {
  transform: translateY(-1px);
  border-color: rgba(var(--igp-accent-rgb), .38);
  background: rgba(var(--igp-accent-rgb), .08);
}

.igp button.igp__preset.is-active,
.igp button.igp__history-item.is-active,
.igp button.igp__search-item.is-active,
.igp button.igp__up-next-item.is-active {
  border-color: rgba(var(--igp-item-accent-rgb, 224, 48, 88), .52) !important;
  background: linear-gradient(105deg, rgba(var(--igp-item-accent-rgb, 224, 48, 88), .19), rgba(255, 255, 255, .045) 68%) !important;
  box-shadow:
    inset 3px 0 0 var(--igp-item-accent, #e03058),
    inset 0 1px 0 rgba(255, 255, 255, .08),
    0 7px 24px rgba(var(--igp-item-accent-rgb, 224, 48, 88), .09) !important;
}

.igp button.igp__preset.is-active .igp__preset-copy span,
.igp button.igp__history-item.is-active .igp__history-copy span,
.igp button.igp__search-item.is-active .igp__history-copy span,
.igp button.igp__up-next-item.is-active .igp__history-copy span {
  color: var(--igp-item-accent, #e03058) !important;
  font-weight: 700;
  letter-spacing: .045em;
}

.igp button.igp__preset.is-active .igp__preset-play,
.igp button.igp__history-item.is-active .igp__history-play,
.igp button.igp__search-item.is-active .igp__history-play,
.igp button.igp__up-next-item.is-active .igp__history-play {
  background: var(--igp-item-accent, #e03058) !important;
  box-shadow: 0 5px 15px rgba(var(--igp-item-accent-rgb, 224, 48, 88), .28);
}

.igp__preset img,
.igp__history-item img,
.igp__search-item img,
.igp__up-next-item img,
.igp__radio-log-item img,
.igp__history-art {
  width: 42px;
  height: 42px;
  display: block;
  border-radius: 9px;
  object-fit: cover;
  background: #2a222f;
}

.igp__preset img {
  width: 44px;
  height: 44px;
}

.igp__preset-copy,
.igp__history-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.igp__preset-copy strong,
.igp__history-copy strong {
  overflow: hidden;
  font-size: 11.5px;
  font-weight: 900;
  line-height: 1.28;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.igp__preset-copy span,
.igp__history-copy span {
  overflow: hidden;
  color: #928a98;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.igp__preset-play,
.igp__history-play {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .075);
  color: #fff;
}

.igp__preset-play svg,
.igp__history-play svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

.igp__history-play svg path:not([d*="Z"]) {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.igp__radio-log-station {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .12);
  border: 1px solid color-mix(in srgb, var(--igp-item-accent) 52%, transparent);
  border-radius: 10px;
  background: #2b222f;
  background: color-mix(in srgb, var(--igp-item-accent) 16%, #211b25);
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .05em;
}

.igp__history-list {
  display: grid;
  gap: 7px;
}

.igp__up-next-list {
  display: grid;
  gap: 7px;
  max-height: 260px;
  overflow: auto;
  padding-right: 2px;
  scrollbar-width: thin;
}

.igp__up-next[hidden] {
  display: none;
}

.igp__up-next .igp__subsection-label small {
  color: #92899a;
  font-size: 8.5px;
  font-weight: 800;
}

.igp__radio-history-list {
  display: grid;
  gap: 7px;
}

.igp__radio-log-item time {
  align-self: center;
  color: #a69daa;
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: .04em;
  white-space: nowrap;
}

.igp__history-content[hidden],
.igp__radio-history-content[hidden] {
  display: none;
}

.igp__history-tools {
  min-height: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.igp__history-tools small {
  color: #7f7783;
  font-size: 9px;
  font-weight: 700;
}

.igp__history-clear {
  padding: 3px 7px;
  border: 0;
  border-radius: 7px;
  background: rgba(255, 255, 255, .055);
  color: #aaa3ae;
  font: inherit;
  font-size: 8px;
  cursor: pointer;
}

.igp__history-empty,
.igp__radio-history-empty {
  margin: 8px 0 0;
  padding: 16px 12px;
  border: 1px dashed rgba(255, 255, 255, .1);
  border-radius: 11px;
  color: #817986;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.igp__launcher {
  position: relative;
  overflow: hidden;
  display: none;
  align-items: center;
  gap: 8px;
  min-height: 50px;
  padding: 7px 16px 7px 8px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(38, 29, 45, .9), rgba(15, 13, 19, .94));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .11), 0 14px 38px rgba(0, 0, 0, .5), 0 0 22px rgba(var(--igp-accent-rgb), .12);
  color: #fff;
  cursor: pointer;
  -webkit-backdrop-filter: blur(22px) saturate(145%);
  backdrop-filter: blur(22px) saturate(145%);
}

.igp__launcher::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 5px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: inherit;
  background: linear-gradient(100deg, #ff2f7c, #ff004d 60%, #c52cb8);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .22), 0 7px 18px rgba(var(--igp-accent-rgb), .26);
}

.igp__launcher span {
  position: relative;
  z-index: 1;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .13);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .16);
}

.igp__launcher svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.igp__launcher strong {
  position: relative;
  z-index: 1;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.igp.igp--minimized {
  right: auto;
  left: 50%;
  width: auto;
  margin: 0;
  transform: translateX(-50%);
  animation: none;
}

.igp--minimized .igp__ambient,
.igp--minimized .igp__glass,
.igp--minimized .igp__chat-modal,
.igp--minimized .igp__library,
.igp--minimized .igp__notice {
  display: none !important;
}

.igp--minimized .igp__launcher,
.igp.igp--minimized button.igp__launcher {
  display: flex !important;
}

.igp__notice {
  position: absolute;
  right: 18px;
  bottom: calc(100% + 10px);
  max-width: min(360px, calc(100vw - 36px));
  padding: 10px 13px;
  border: 1px solid rgba(255, 96, 136, .32);
  border-radius: 11px;
  background: rgba(18, 13, 22, .94);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .4);
  color: #fff;
  font-size: 11px;
}

.igp__soundcloud-widget {
  position: fixed;
  left: -9999px;
  bottom: 0;
  width: 2px;
  height: 2px;
  border: 0;
  opacity: .001;
  pointer-events: none;
}

@keyframes igp-arrive {
  from { opacity: 0; transform: translateY(22px) scale(.985); }
  to { opacity: 1; transform: none; }
}

@keyframes igp-live {
  50% { opacity: .35; transform: scale(.8); }
}

@keyframes igp-marquee {
  0%, 12% { transform: translateX(0); }
  100% { transform: translateX(var(--igp-marquee-distance, 0px)); }
}

@keyframes igp-wave-live {
  from { transform: scaleY(.45); opacity: .55; }
  to { transform: scaleY(1); opacity: 1; }
}

@media (min-width: 901px) {
  .igp {
    bottom: max(8px, env(safe-area-inset-bottom));
    width: min(1380px, calc(100% - 20px));
  }

  .igp__glass {
    min-height: 84px;
    grid-template-columns: minmax(300px, 1.1fr) minmax(360px, 1.3fr) minmax(215px, auto);
    gap: 17px;
    padding: 10px 13px;
    border-radius: 20px;
  }

  .igp__artwork-wrap {
    width: 60px;
    height: 60px;
    flex-basis: 60px;
    border-radius: 13px;
  }

  .igp__source {
    font-size: 10.5px;
  }

  .igp__title {
    font-size: 16px;
    line-height: 1.22;
  }

  .igp__artist {
    font-size: 11.5px;
  }

  .igp__transport {
    display: grid;
    grid-template-columns: auto minmax(230px, 1fr);
    align-items: center;
    gap: 13px;
  }

  .igp__buttons {
    gap: 5px;
  }

  .igp__timeline {
    grid-template-columns: 34px minmax(0, 1fr) 34px;
    gap: 7px;
  }

  .igp__utility {
    gap: 6px;
  }

  .igp__download {
    min-height: 32px;
  }
}

@media (min-width: 1200px) {
  .igp__glass {
    grid-template-columns: minmax(360px, 1.15fr) minmax(430px, 1.35fr) minmax(225px, auto);
  }
}

@media (max-width: 900px) {
  .igp__glass {
    grid-template-columns: minmax(210px, 1fr) minmax(270px, 1.3fr) auto;
    gap: 14px;
  }

  .igp__open {
    display: none;
  }
}

@media (max-width: 650px) {
  body.igp-player-open {
    padding-bottom: var(--igp-player-space) !important;
  }

  .igp {
    right: max(8px, env(safe-area-inset-right));
    bottom: max(8px, env(safe-area-inset-bottom));
    left: max(8px, env(safe-area-inset-left));
    width: calc(100% - 16px);
  }

  .igp.igp--minimized {
    right: auto;
    left: 50%;
    width: auto;
    transform: translateX(-50%);
  }

  .igp__chat-modal,
  .igp__library {
    right: 0;
    left: 0;
    width: 100%;
    border-radius: 18px;
  }

  .igp__library-scroll {
    max-height: min(48vh, 420px);
    padding: 13px;
  }

  .igp__chat-frame-wrap {
    height: min(52vh, 430px);
    min-height: 300px;
  }

  .igp__radio-list {
    grid-template-columns: 1fr;
  }

  .igp__ambient {
    inset: -10px 8% -4px;
  }

  .igp__glass {
    min-height: 130px;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "now close"
      "transport transport";
    gap: 9px 11px;
    padding: 10px 11px 11px;
    border-radius: 20px;
  }

  .igp__now {
    grid-area: now;
  }

  .igp__transport {
    grid-area: transport;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 10px;
  }

  .igp__utility {
    grid-area: close;
    display: flex;
  }

  .igp__utility > :not(.igp__button--close):not(.igp__button--queue):not(.igp__volume-control):not(.igp__chat):not(.igp__download) {
    display: none !important;
  }

  .igp__utility {
    gap: 5px;
  }

  .igp__button--queue,
  .igp__button--volume,
  .igp__button--close {
    width: 32px;
    height: 32px;
  }

  .igp__chat {
    width: 32px;
    min-width: 32px;
    height: 32px;
    min-height: 32px;
    padding: 0;
    border-radius: 10px;
  }

  .igp button.igp__chat {
    width: 32px !important;
    min-width: 32px !important;
    max-width: 32px !important;
    height: 32px !important;
    min-height: 32px !important;
    max-height: 32px !important;
    padding: 0 !important;
  }

  .igp__chat span {
    display: none;
  }

  .igp__download {
    width: 32px;
    min-width: 32px;
    height: 32px;
    padding: 0;
  }

  .igp__volume-popover {
    right: -40px;
    width: min(220px, calc(100vw - 34px));
  }

  .igp__artwork-wrap {
    width: 54px;
    height: 54px;
    flex-basis: 54px;
    border-radius: 13px;
  }

  .igp__copy {
    gap: 3px;
  }

  .igp__kofi {
    min-height: 19px;
    max-width: 132px;
    padding: 2px 7px 2px 5px;
  }

  .igp__kofi svg {
    width: 12px;
    height: 12px;
  }

  .igp__title {
    max-width: calc(100vw - 145px);
    font-size: 12px;
  }

  .igp__artist {
    max-width: calc(100vw - 145px);
    font-size: 9px;
  }

  .igp__buttons {
    gap: 3px;
  }

  .igp__button--play {
    width: 38px;
    height: 38px;
  }

  .igp__timeline {
    grid-template-columns: 32px minmax(0, 1fr) 32px;
    gap: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .igp {
    animation: none;
  }

  .igp *,
  .igp *::before,
  .igp *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
