.vip-channel-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  overflow: hidden;
  min-height: 94px;
  border: 1px solid rgba(246, 199, 68, .58);
  border-radius: 8px;
  background:
    radial-gradient(circle at 94% 0%, rgba(246, 199, 68, .22), transparent 44%),
    linear-gradient(135deg, #291b20 0%, #150e11 56%, #110b0d 100%);
  color: var(--text-main);
  padding: 14px;
  text-decoration: none;
  box-shadow: inset 0 0 0 1px rgba(232, 144, 48, .06), 0 16px 38px rgba(0, 0, 0, .34);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.vip-channel-card::after {
  content: "";
  position: absolute;
  right: -42px;
  top: -52px;
  width: 132px;
  height: 132px;
  border: 18px solid rgba(246, 199, 68, .08);
  border-radius: 50%;
}
.vip-channel-card:hover {
  border-color: rgba(255, 224, 130, .92);
  box-shadow: inset 0 0 0 1px rgba(232, 144, 48, .1), 0 20px 44px rgba(246, 199, 68, .12);
  transform: translateY(-1px);
}
.vip-channel-card:active {
  transform: translateY(0);
}
.vip-channel-icon,
.vip-channel-copy,
.vip-channel-action {
  position: relative;
  z-index: 1;
}
.vip-channel-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 224, 130, .72);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--button-text);
  font-size: 14px;
  font-weight: 950;
  letter-spacing: .08em;
  box-shadow: 0 10px 24px rgba(246, 199, 68, .2);
}
.vip-channel-copy {
  min-width: 0;
  display: grid;
  gap: 5px;
}
.vip-channel-copy strong {
  color: var(--text-main);
  font-size: 17px;
  line-height: 1.15;
}
.vip-channel-copy small {
  color: var(--text-secondary);
  font-size: 12px;
  line-height: 1.35;
}
.vip-channel-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border: 1px solid rgba(246, 199, 68, .45);
  border-radius: 999px;
  background: rgba(246, 199, 68, .14);
  color: var(--accent-hover);
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 860;
  white-space: nowrap;
}
@media (max-width: 370px) {
  .vip-channel-card {
    grid-template-columns: auto minmax(0, 1fr);
  }
  .vip-channel-action {
    grid-column: 1 / -1;
    width: 100%;
  }
}

/* Golden Gate profile VIP card v2 */
.vip-channel-card {
  min-height: 100px;
  border-color: rgba(255, 193, 47, .62);
  border-radius: 15px;
  background:
    linear-gradient(112deg, rgba(89, 27, 0, .98), rgba(36, 9, 0, .99) 60%, rgba(18, 4, 0, .99));
  box-shadow: inset 0 1px 0 rgba(255, 236, 166, .07), 0 16px 38px rgba(0, 0, 0, .42);
}
.vip-channel-card::after {
  content: "VIP";
  top: 50%;
  right: 16px;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  color: rgba(255, 207, 72, .08);
  font-size: 64px;
  font-weight: 950;
  letter-spacing: -.08em;
  transform: translateY(-53%);
}
.vip-channel-icon {
  border-radius: 13px;
  background: linear-gradient(145deg, #ffe36a, #ff9b00 60%, #ff6500);
}
.vip-channel-action {
  border-radius: 8px;
}
