.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(166, 255, 0, .58);
  border-radius: 8px;
  background:
    radial-gradient(circle at 94% 0%, rgba(166, 255, 0, .22), transparent 44%),
    linear-gradient(135deg, #17270d 0%, #0b1408 56%, #071006 100%);
  color: var(--text-main);
  padding: 14px;
  text-decoration: none;
  box-shadow: inset 0 0 0 1px rgba(57, 255, 20, .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(166, 255, 0, .08);
  border-radius: 50%;
}
.vip-channel-card:hover {
  border-color: rgba(200, 255, 61, .92);
  box-shadow: inset 0 0 0 1px rgba(57, 255, 20, .1), 0 20px 44px rgba(166, 255, 0, .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(200, 255, 61, .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(166, 255, 0, .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(166, 255, 0, .45);
  border-radius: 999px;
  background: rgba(166, 255, 0, .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%;
  }
}
