/* ── Premium page extra styles ────────────────────────────── */

/* Gold gradient text */
.gradient-text-gold {
  background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 30%, #a78bfa 70%, #7c3aed 100%);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

/* Hero tweaks for premium */
.prem-hero { padding-top: 130px; }
.prem-glow {
  background: radial-gradient(circle, rgba(245,158,11,0.18) 0%, rgba(124,58,237,0.12) 50%, transparent 70%) !important;
}

/* Crown emoji float */
.prem-crown {
  font-size: 3.5rem;
  display: block;
  margin-bottom: 8px;
  animation: crownFloat 4s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(251,191,36,0.5));
}
@keyframes crownFloat {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-10px) rotate(4deg); }
}

/* Premium badge */
.prem-badge {
  background: rgba(245,158,11,0.15) !important;
  border: 1px solid rgba(245,158,11,0.35) !important;
  color: #fcd34d !important;
}

/* Note below CTA */
.prem-note {
  margin-top: 20px;
  color: #64748b;
  font-size: 0.875rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Gold button */
.btn-gold {
  background: linear-gradient(135deg, #d97706 0%, #f59e0b 50%, #fbbf24 100%);
  color: #1c0a00;
  font-weight: 700;
  box-shadow: 0 4px 24px rgba(245,158,11,0.4), 0 0 0 1px rgba(245,158,11,0.3);
}
.btn-gold:hover {
  box-shadow: 0 8px 36px rgba(245,158,11,0.6), 0 0 0 1px rgba(245,158,11,0.5);
  transform: translateY(-2px);
}
.btn-gold svg { flex-shrink: 0; }

/* Active nav link */
.active-page {
  background: rgba(245,158,11,0.15) !important;
  border-color: rgba(245,158,11,0.35) !important;
  color: #fcd34d !important;
}

/* ── Perks grid ─────────────────────────────────────────────── */
.perks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 12px;
}
.perk-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(245,158,11,0.15);
  border-radius: 16px;
  padding: 28px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
}
.perk-card.visible {
  animation: fadeUp 0.5s ease forwards;
}
.perk-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245,158,11,0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.perk-card:hover::before { opacity: 1; }
.perk-card:hover {
  border-color: rgba(245,158,11,0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(245,158,11,0.1);
}
.perk-icon.gold {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(245,158,11,0.2), rgba(124,58,237,0.15));
  border: 1px solid rgba(245,158,11,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #fcd34d;
}
.perk-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #f1f5f9;
}
.perk-card p {
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 14px;
}
.perk-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 6px;
  background: rgba(245,158,11,0.12);
  border: 1px solid rgba(245,158,11,0.25);
  color: #fbbf24;
}

/* ── Premium command grid ───────────────────────────────────── */
.prem-commands-section {
  background: linear-gradient(to bottom, transparent, rgba(245,158,11,0.03), transparent);
}
.prem-cmd-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
}
.prem-cmd-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(245,158,11,0.15);
  border-radius: 10px;
  padding: 18px 20px;
  transition: all 0.2s;
}
.prem-cmd-card:hover {
  border-color: rgba(245,158,11,0.4);
  background: rgba(245,158,11,0.05);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,158,11,0.08);
}
.prem-cmd-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.prem-cmd-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #f1f5f9;
  font-family: 'Courier New', monospace;
  background: rgba(245,158,11,0.1);
  padding: 3px 10px;
  border-radius: 6px;
  border: 1px solid rgba(245,158,11,0.2);
}
.prem-star {
  font-size: 1rem;
  filter: drop-shadow(0 0 6px rgba(251,191,36,0.6));
}

/* ── Steps ──────────────────────────────────────────────────── */
.steps-grid {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.step-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(245,158,11,0.15);
  border-radius: 16px;
  padding: 28px 24px;
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: border-color 0.2s;
}
.step-card.visible { animation: fadeUp 0.5s ease forwards; }
.step-card:hover { border-color: rgba(245,158,11,0.35); }
.step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d97706, #f59e0b);
  color: #1c0a00;
  font-weight: 900;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(245,158,11,0.4);
}
.step-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #f1f5f9;
}
.step-card p {
  color: #94a3b8;
  font-size: 0.875rem;
  line-height: 1.6;
}
.step-card code {
  background: rgba(255,255,255,0.08);
  padding: 2px 6px;
  border-radius: 4px;
  color: #fcd34d;
  font-family: 'Courier New', monospace;
  font-size: 0.85rem;
}
.step-arrow {
  font-size: 1.8rem;
  color: #475569;
  flex-shrink: 0;
}

/* Nav premium link */
.nav-premium {
  color: #fcd34d !important;
  background: rgba(245,158,11,0.1);
  padding: 6px 14px;
  border-radius: 8px;
  border: 1px solid rgba(245,158,11,0.25);
  transition: background 0.2s, border-color 0.2s !important;
}
.nav-premium:hover {
  background: rgba(245,158,11,0.2) !important;
  border-color: rgba(245,158,11,0.45) !important;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 700px) {
  .perks-grid { grid-template-columns: 1fr; }
  .prem-cmd-grid { grid-template-columns: 1fr; }
  .step-arrow { transform: rotate(90deg); }
  .steps-grid { flex-direction: column; align-items: center; }
  .step-card { max-width: 100%; }
}
