.v3-wide-media.vip-reel-shell {
  --reel-yellow: #ffde5a;
  --reel-purple: #904fc9;
  --reel-lilac: #ae7adc;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: stretch;
  width: min(980px, 100%);
  height: 620px !important;
  min-height: 620px;
  border: 9px solid #fff;
  border-radius: 18px;
  background: #542474;
  box-shadow: 0 24px 60px rgba(51, 18, 67, .34);
  isolation: isolate;
  overflow: hidden;
}

.v3-wide-media.vip-reel-shell::after {
  content: none;
}

.vip-reel-side {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 0;
  padding: 34px 24px;
  overflow: hidden;
}

.vip-reel-side::before,
.vip-reel-side::after {
  content: "";
  position: absolute;
  border: 2px solid rgba(255, 255, 255, .15);
  border-radius: 50%;
}

.vip-reel-side::before {
  width: 190px;
  height: 190px;
  top: -72px;
  left: -68px;
}

.vip-reel-side::after {
  width: 116px;
  height: 116px;
  right: -42px;
  bottom: -34px;
}

.vip-reel-side--left {
  background:
    radial-gradient(circle at 24% 72%, rgba(255, 222, 90, .28), transparent 34%),
    linear-gradient(145deg, #7135a4, #9b59d1);
}

.vip-reel-side--right {
  background:
    radial-gradient(circle at 76% 25%, rgba(255, 222, 90, .25), transparent 33%),
    linear-gradient(215deg, #7135a4, #a666d6);
}

.vip-reel-side-content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 12px;
  color: #fff;
  text-align: center;
}

.vip-reel-side-content img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(43, 14, 57, .22));
}

.vip-reel-side-content small {
  color: rgba(255, 255, 255, .72);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 900;
}

.vip-reel-side-content strong {
  max-width: 190px;
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", sans-serif;
  font-size: clamp(20px, 2vw, 29px);
  line-height: 1.08;
}

.vip-reel-player {
  position: relative;
  z-index: 2;
  width: 349px;
  height: 100%;
  aspect-ratio: 9 / 16;
  background: #170a1d;
  box-shadow: 0 0 42px rgba(29, 7, 38, .48);
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
}

.vip-reel-player video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #170a1d;
}

.vip-reel-player::before {
  content: "REEL";
  position: absolute;
  z-index: 3;
  top: 14px;
  right: 14px;
  color: #fff;
  background: rgba(30, 10, 39, .62);
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 999px;
  padding: 7px 9px;
  letter-spacing: .12em;
  font-size: 8px;
  font-weight: 900;
  -webkit-backdrop-filter: blur(9px);
  backdrop-filter: blur(9px);
}

.vip-reel-play {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  color: var(--reel-purple);
  background: var(--reel-yellow);
  border: 4px solid rgba(255, 255, 255, .82);
  border-radius: 50%;
  font-size: 22px;
  box-shadow: 0 14px 36px rgba(35, 10, 45, .35);
  transform: translate(-50%, -50%);
  transition: opacity .22s ease, transform .22s ease;
}

.vip-reel-player.is-playing .vip-reel-play {
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(.82);
}

.vip-reel-controls {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 44px 13px 13px;
  background: linear-gradient(to bottom, transparent, rgba(17, 5, 22, .82));
}

.vip-reel-sound,
.vip-reel-official {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 999px;
  color: #fff;
  background: rgba(30, 10, 39, .58);
  padding: 0 12px;
  font-size: 10px;
  font-weight: 850;
  -webkit-backdrop-filter: blur(9px);
  backdrop-filter: blur(9px);
}

.vip-reel-sound:hover,
.vip-reel-official:hover {
  color: #34233d;
  background: var(--reel-yellow);
}

.vip-reel-progress {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: rgba(255, 255, 255, .24);
}

.vip-reel-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--reel-yellow), #fff, var(--reel-lilac));
  transform-origin: left center;
}

.vip-reel-player:focus-visible,
.vip-reel-play:focus-visible,
.vip-reel-sound:focus-visible,
.vip-reel-official:focus-visible {
  outline: 3px solid var(--reel-yellow);
  outline-offset: 3px;
}

@media (max-width: 1020px) {
  .v3-wide-media.vip-reel-shell {
    height: 590px !important;
    min-height: 590px;
  }

  .vip-reel-player {
    width: 332px;
  }

  .vip-reel-side {
    padding-inline: 17px;
  }
}

@media (max-width: 820px) {
  .v3-wide-media.vip-reel-shell {
    display: block !important;
    width: min(100%, 430px);
    height: auto !important;
    min-height: 0;
    border-width: 6px;
    border-radius: 24px;
  }

  .vip-reel-side {
    display: none;
  }

  .vip-reel-player {
    width: 100%;
    height: auto;
    aspect-ratio: 9 / 16;
    box-shadow: none;
  }
}

@media (max-width: 560px) {
  .v3-media-top {
    padding-bottom: 112px;
  }

  .v3-wide-media.vip-reel-shell {
    width: 100%;
    border-width: 5px;
    border-radius: 21px;
  }

  .vip-reel-play {
    width: 62px;
    height: 62px;
  }

  .vip-reel-controls {
    padding-inline: 10px;
    padding-bottom: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .vip-reel-play,
  .vip-reel-sound,
  .vip-reel-official {
    transition: none !important;
  }
}
