.vipbw {
  --vipbw-yellow: #ffd800;
  --vipbw-bg-a: #1a1b20;
  --vipbw-bg-b: #111218;
  --vipbw-text: #ffffff;
  --vipbw-muted: rgba(255, 255, 255, 0.86);
  --vipbw-border: rgba(255, 216, 0, 0.28);
  --vipbw-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
  --vipbw-wheel-glow: 0.18;
  --vipbw-wheel-shadow: 0.10;
  --vipbw-sector-brightness: 1.12;
  --vipbw-sector-glow: 0.18;
  --vipbw-dim-opacity: 0.50;
  --vipbw-active-fill: 0.11;
  --vipbw-active-brightness: 1.32;
  --vipbw-active-glow: 0.54;
  --vipbw-center-text-weight: 800;
  --vipbw-center-text-color: #ffffff;
  --vipbw-pill-hover-text: #fffdf0;
  --vipbw-pill-min-height: 86px;
  --vipbw-pill-font-size: 24px;
  --vipbw-pill-font-weight: 700;
  --vipbw-mobile-pill-min-height: 72px;
  --vipbw-mobile-pill-font-size: 18px;
  --vipbw-mobile-center-max: 22px;
  --vipbw-mobile-center-min: 15px;
  position: relative;
  max-width: 1680px;
  margin: 0 auto;
  padding: 28px 18px 34px;
  border-radius: 28px;
  overflow: hidden;
  color: var(--vipbw-text);
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 216, 0, 0.055) 0%, rgba(255, 216, 0, 0.015) 18%, rgba(255, 216, 0, 0) 42%),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.035) 0%, rgba(255, 255, 255, 0) 56%),
    linear-gradient(180deg, var(--vipbw-bg-a) 0%, var(--vipbw-bg-b) 100%);
  box-shadow: var(--vipbw-shadow);
}

.vipbw * {
  box-sizing: border-box;
}

.vipbw__header {
  text-align: center;
  max-width: 980px;
  margin: 0 auto 28px;
}

.vipbw__title {
  margin: 0 0 16px;
  color: var(--vipbw-yellow);
  font-size: clamp(42px, 5.5vw, 84px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.vipbw__subtitle {
  margin: 0 auto;
  max-width: 940px;
  color: var(--vipbw-muted);
  font-size: clamp(16px, 1.9vw, 22px);
  line-height: 1.55;
}

.vipbw__layout {
  display: grid;
  grid-template-columns: minmax(250px, 360px) minmax(420px, 780px) minmax(250px, 360px);
  gap: clamp(14px, 2vw, 34px);
  align-items: center;
}

.vipbw__layout > * {
  min-width: 0;
}

.vipbw__side {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.vipbw__pill-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.vipbw__pill {
  appearance: none;
  width: 100%;
  min-height: var(--vipbw-pill-min-height);
  display: grid;
  grid-template-columns: 10px 1fr;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid var(--vipbw-border);
  background: linear-gradient(180deg, rgba(48, 49, 55, 0.95), rgba(31, 32, 38, 0.96));
  color: #ffffff;
  text-align: left;
  cursor: pointer;
  opacity: 1;
  box-shadow: inset 0 0 0 1px rgba(255, 216, 0, 0.04), 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.vipbw__pill:hover,
.vipbw__pill:focus-visible,
.vipbw__pill.is-active {
  transform: translateY(-2px);
  border-color: rgba(255, 216, 0, 0.78);
  box-shadow: 0 0 0 1px rgba(255, 216, 0, 0.18), 0 0 30px rgba(255, 216, 0, 0.14), inset 0 0 0 1px rgba(255, 216, 0, 0.08);
  background: linear-gradient(180deg, rgba(66, 68, 76, 0.99), rgba(38, 40, 47, 0.99));
  color: var(--vipbw-pill-hover-text);
  opacity: 1;
}

.vipbw__pill:focus-visible {
  outline: none;
}

.vipbw__dot {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--vipbw-yellow);
  box-shadow: 0 0 12px rgba(255, 216, 0, 0.95);
}

.vipbw__pill-text {
  display: block;
  overflow: hidden;
  font-size: clamp(18px, 1.8vw, var(--vipbw-pill-font-size));
  line-height: 1.18;
  font-weight: var(--vipbw-pill-font-weight);
  color: #ffffff;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.vipbw__pill:hover,
.vipbw__pill:hover .vipbw__pill-text,
.vipbw__pill:focus-visible,
.vipbw__pill:focus-visible .vipbw__pill-text,
.vipbw__pill.is-active,
.vipbw__pill.is-active .vipbw__pill-text {
  color: var(--vipbw-pill-hover-text) !important;
  opacity: 1 !important;
}

.vipbw__pill-item {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.vipbw__pill-description {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  margin: 0 8px;
  padding: 0 16px;
  border-radius: 0 0 18px 18px;
  border: 1px solid transparent;
  border-top: 0;
  background: linear-gradient(180deg, rgba(41, 43, 50, 0.94), rgba(24, 26, 33, 0.98));
  transition: max-height 0.3s ease, opacity 0.24s ease, transform 0.24s ease, padding 0.24s ease, margin 0.24s ease, border-color 0.24s ease;
}

.vipbw__pill-description.is-visible {
  max-height: 120px;
  opacity: 1;
  transform: translateY(0);
  margin-top: -10px;
  padding: 14px 16px 12px;
  border-color: rgba(255, 216, 0, 0.22);
}

.vipbw__pill-description-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.42;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.vipbw__wheel-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
}

.vipbw__wheel-shell {
  position: relative;
  width: min(100%, 760px);
  max-width: 760px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  filter: drop-shadow(0 0 26px rgba(255, 216, 0, var(--vipbw-wheel-glow))) drop-shadow(0 0 64px rgba(255, 216, 0, var(--vipbw-wheel-shadow)));
}

.vipbw__svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.vipbw__svg-rotor {
  transform-origin: center;
  transform-box: fill-box;
}

.vipbw__wheel-shell.is-rotating .vipbw__svg-rotor {
  animation: vipbw-spin var(--vipbw-rotation-speed, 30s) linear infinite;
}

.vipbw__wheel-shell.is-paused .vipbw__svg-rotor,
.vipbw__wheel-shell:hover .vipbw__svg-rotor {
  animation-play-state: paused;
}

.vipbw-sector {
  cursor: pointer;
  transform-box: fill-box;
  transform-origin: center;
  transition: transform 0.24s ease, opacity 0.24s ease, filter 0.24s ease;
}

.vipbw-sector:focus-visible {
  outline: none;
}

.vipbw-sector__fill {
  fill: rgba(255, 216, 0, 0.001);
  stroke: none;
  pointer-events: all;
  transition: fill 0.24s ease, filter 0.24s ease;
}

.vipbw-sector__outline,
.vipbw-sector__icon {
  pointer-events: none;
  transition: filter 0.24s ease, opacity 0.24s ease;
}

.vipbw-sector__outline {
  opacity: 0.96;
  filter: brightness(var(--vipbw-sector-brightness)) drop-shadow(0 0 6px rgba(255, 216, 0, var(--vipbw-sector-glow)));
}

.vipbw__svg.is-dim .vipbw-sector {
  opacity: var(--vipbw-dim-opacity);
}

.vipbw__svg.is-dim .vipbw-sector:not(.is-active) .vipbw-sector__outline {
  filter: brightness(0.98) drop-shadow(0 0 8px rgba(255, 216, 0, 0.14));
}

.vipbw__svg.is-dim .vipbw-sector:not(.is-active) .vipbw-sector__icon {
  opacity: 0.84;
  filter: saturate(0.88) brightness(0.96);
}

.vipbw-sector.is-active {
  opacity: 1 !important;
  transform: scale(1.036);
}

.vipbw-sector.is-active .vipbw-sector__fill {
  fill: rgba(255, 216, 0, var(--vipbw-active-fill));
  filter: drop-shadow(0 0 40px rgba(255, 216, 0, var(--vipbw-active-glow))) drop-shadow(0 0 74px rgba(255, 216, 0, var(--vipbw-active-glow)));
}

.vipbw-sector.is-active .vipbw-sector__outline {
  opacity: 1;
  filter: brightness(var(--vipbw-active-brightness)) drop-shadow(0 0 18px rgba(255, 216, 0, var(--vipbw-active-glow))) drop-shadow(0 0 34px rgba(255, 216, 0, var(--vipbw-active-glow)));
}

.vipbw-sector.is-active .vipbw-sector__icon {
  opacity: 1;
  filter: brightness(1.24) saturate(1.08) drop-shadow(0 0 14px rgba(255, 216, 0, 0.20));
}

.vipbw__wheel-center {
  position: absolute;
  inset: 33.7%;
  z-index: 3;
  display: grid;
  place-items: center;
  padding: 18px;
  border-radius: 50%;
  text-align: center;
  background:
    radial-gradient(circle at 42% 34%, #12161d 0%, #0b0d12 44%, #000000 100%);
  border: 2px solid rgba(255, 216, 0, 0.26);
  box-shadow:
    inset 0 0 34px rgba(255, 216, 0, 0.10),
    0 0 0 10px rgba(255, 216, 0, 0.05),
    0 0 44px rgba(255, 216, 0, 0.22);
}

.vipbw__center-text {
  display: block;
  width: 80%;
  max-width: 80%;
  color: var(--vipbw-center-text-color);
  font-size: clamp(14px, 1.28vw, 22px);
  line-height: 1.1;
  font-weight: var(--vipbw-center-text-weight);
  letter-spacing: -0.02em;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
  white-space: normal;
  text-wrap: pretty;
}

.vipbw__modal[hidden] {
  display: none;
}

.vipbw__modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
}

.vipbw__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(4px);
}

.vipbw__dialog {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(1180px, calc(100vw - 32px));
  max-height: min(86vh, 940px);
  overflow: auto;
  border-radius: 26px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(33, 35, 42, 0.98), rgba(18, 19, 24, 0.98));
  border: 1px solid rgba(255, 216, 0, 0.18);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.54), 0 0 40px rgba(255, 216, 0, 0.08);
}

.vipbw__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 44px;
  height: 44px;
  padding: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-family: Arial, sans-serif;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.vipbw__modal-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 0 0 18px;
  padding-right: 90px;
}

.vipbw__modal-title {
  margin: 0;
  color: var(--vipbw-yellow);
  font-size: clamp(24px, 4vw, 40px);
  line-height: 1.1;
}

.vipbw__archive-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--vipbw-yellow);
  color: #111111;
  text-decoration: none;
  font-weight: 700;
}

.vipbw__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(250px, 320px));
  justify-content: center;
  gap: 18px;
  align-items: start;
}

.vipbw__card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 216, 0, 0.14);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
}

.vipbw__card-media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 216, 0, 0.2), rgba(255, 92, 56, 0.2));
}

.vipbw__card-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vipbw__card-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 16px;
}

.vipbw__card-title {
  margin: 0 0 8px;
  min-height: calc(1.22em * 2);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: clamp(18px, 1.25vw, 22px);
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
  line-height: 1.18;
}

.vipbw__card-title a {
  color: #ffffff;
  text-decoration: none;
}

.vipbw__card-excerpt {
  margin: 0 0 12px;
  min-height: calc(1.46em * 2);
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.46;
  font-size: 15px;
}

.vipbw__card-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 13px;
  border-radius: 999px;
  background: var(--vipbw-yellow);
  color: #111111;
  text-decoration: none;
  font-weight: 700;
  align-self: flex-start;
}

.vipbw__empty {
  grid-column: 1 / -1;
  padding: 28px 18px;
  border-radius: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 216, 0, 0.1);
}

@keyframes vipbw-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1280px) {
  .vipbw__layout {
    grid-template-columns: minmax(220px, 320px) minmax(340px, 640px) minmax(220px, 320px);
  }

  .vipbw__wheel-shell {
    max-width: 640px;
  }
}

@media (max-width: 1120px) {
  .vipbw__layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .vipbw__wheel-wrap {
    order: 1;
  }

  .vipbw__pill-stack {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .vipbw__side--right {
    order: 2;
  }

  .vipbw__side--left {
    order: 3;
  }
}

@media (max-width: 767px) {
  .vipbw {
    padding: 22px 12px 22px;
    border-radius: 22px;
  }

  .vipbw__header {
    margin-bottom: 18px;
  }

  .vipbw__title {
    font-size: clamp(34px, 10vw, 52px);
  }

  .vipbw__subtitle {
    font-size: 15px;
    line-height: 1.55;
  }

  .vipbw__pill-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .vipbw__pill {
    min-height: var(--vipbw-mobile-pill-min-height);
    padding: 16px 16px;
    border-radius: 18px;
  }

  .vipbw__pill-text {
    font-size: var(--vipbw-mobile-pill-font-size);
  }

  .vipbw__pill-description.is-visible {
    max-height: 180px;
    margin-top: -6px;
    padding: 12px 14px 10px;
  }

  .vipbw__pill-description-text {
    font-size: 15px;
  }

  .vipbw__wheel-shell {
    max-width: 100%;
  }

  .vipbw__wheel-center {
    inset: 34.4%;
    padding: 10px;
  }

  .vipbw__center-text {
    width: 82%;
    max-width: 82%;
    font-size: clamp(var(--vipbw-mobile-center-min), 3.9vw, var(--vipbw-mobile-center-max));
  }

  .vipbw__dialog {
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    width: 100%;
    max-height: 88vh;
    transform: none;
    padding: 18px 14px 20px;
    border-radius: 24px 24px 0 0;
  }

  .vipbw__close {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    font-size: 28px;
  }

  .vipbw__modal-head {
    padding-right: 66px;
  }

  .vipbw__cards {
    grid-template-columns: 1fr;
    justify-content: stretch;
  }

  .vipbw__card-title,
  .vipbw__card-excerpt {
    min-height: 0;
  }
}
