:root{
  --p-bg0:#050806;
  --p-bg1:#070d08;
  --p-gold:#ffcf45;
  --p-gold2:#fff1b3;
  --p-gold3:#b87300;
  --p-ink:#1b1200;
  --p-line:rgba(255, 206, 72, .92);
  --p-line-soft:rgba(255, 206, 72, .62);
  --p-shadow:rgba(0,0,0,.55);
}

.premium-frame{
  border-radius:34px;
  border:3px solid var(--p-line);
  box-shadow:
    inset 0 0 0 1px rgba(255, 245, 190, .28),
    inset 0 2px 0 rgba(255,255,255,.16),
    0 0 0 1px rgba(0,0,0,.70),
    0 0 26px rgba(255, 200, 40, .22),
    0 0 0 8px rgba(35, 18, 0, .30),
    0 0 0 10px rgba(255, 246, 205, .55),
    0 22px 70px rgba(0,0,0,.45);
}

.premium-card{
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 3px solid var(--p-line);
  background:
    radial-gradient(280px 140px at 50% 0%, rgba(255, 220, 90, .14), rgba(255, 220, 90, 0) 62%),
    linear-gradient(180deg, rgba(0,0,0,.86), rgba(0,0,0,.56));
  box-shadow:
    inset 0 0 0 1px rgba(0,0,0,.62),
    inset 0 2px 0 rgba(255,255,255,.10),
    0 22px 70px rgba(0,0,0,.45),
    0 0 26px rgba(255, 200, 40, .14);
}
.premium-card::before{
  content:"";
  position:absolute;
  inset:-40%;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.28) 48%, rgba(255,255,255,0) 100%);
  transform: rotate(-14deg);
  opacity:.35;
  mix-blend-mode: screen;
  pointer-events:none;
}
.premium-card > *{ position: relative; z-index: 1; }

.premium-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 2px solid var(--p-line-soft);
  background: rgba(0,0,0,.35);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.62), 0 12px 24px rgba(0,0,0,.45);
  color: rgba(255,255,255,.92);
  font-weight: 900;
}

.premium-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:56px;
  border-radius:16px;
  border:2px solid rgba(88, 54, 0, .70);
  background: linear-gradient(180deg, #fff7b8 0%, #ffd35a 45%, #e2a10b 100%);
  color: var(--p-ink);
  font-size:18px;
  font-weight:1000;
  text-decoration:none;
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,.55),
    0 14px 26px rgba(0,0,0,.35);
}
.premium-btn--ghost{
  border:2px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.96);
}

.premium-text{
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

