/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-primary: #0a0a1a;
  --bg-secondary: #111128;
  --bg-tertiary: #1a0a3e;
  --bg-card: #151530;
  --accent-gold: #ffbf00;
  --accent-gold-bright: #ffe44d;
  --accent-warm: #ff8c00;
  --accent-red: #e53935;
  --accent-purple: #7c4dff;
  --accent-cyan: #00e5ff;
  --text-primary: #f0f0ff;
  --text-muted: #9898b8;
  --success: #00e676;
  --danger: #ff5252;
  --max-width: 1200px;
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.3s ease;
  --glow-gold: 0 0 20px rgba(255, 191, 0, 0.3), 0 0 60px rgba(255, 191, 0, 0.1);
  --glow-gold-strong: 0 0 30px rgba(255, 191, 0, 0.5), 0 0 80px rgba(255, 191, 0, 0.2);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-primary);
  background-image:
    radial-gradient(ellipse at 20% 0%, rgba(124, 77, 255, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(255, 191, 0, 0.05) 0%, transparent 50%);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  padding-bottom: 70px;
}

@media (min-width: 769px) {
  body {
    padding-bottom: 0;
  }
}

a {
  color: var(--accent-gold);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent-gold-bright);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== STICKY HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(10, 10, 26, 0.98) 0%, rgba(17, 17, 40, 0.95) 100%);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 191, 0, 0.2);
  transition: transform var(--transition);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.site-header.header-hidden {
  transform: translateY(-100%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 20px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-gold);
  letter-spacing: -0.5px;
  text-shadow: 0 0 20px rgba(255, 191, 0, 0.3);
}

.logo span {
  color: var(--text-primary);
  text-shadow: none;
}

.nav-desktop {
  display: none;
  gap: 28px;
  list-style: none;
}

.nav-desktop a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition);
  position: relative;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: width var(--transition);
  box-shadow: 0 0 8px rgba(255, 191, 0, 0.5);
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
  width: 100%;
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--accent-gold);
}

@media (min-width: 769px) {
  .nav-desktop {
    display: flex;
  }
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-warm) 100%);
  color: #0a0a1a;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
  box-shadow: var(--glow-gold);
}

.header-cta:hover {
  background: linear-gradient(135deg, var(--accent-gold-bright) 0%, var(--accent-gold) 100%);
  color: #0a0a1a;
  box-shadow: var(--glow-gold-strong);
  transform: translateY(-2px);
}

/* Spacer for fixed header */
.header-spacer {
  height: 68px;
}

/* ===== MOBILE BOTTOM TAB BAR ===== */
.bottom-tabs {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(17, 17, 40, 0.98) 0%, rgba(10, 10, 26, 0.99) 100%);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 191, 0, 0.2);
  justify-content: space-around;
  padding: 8px 0 12px;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5);
}

@media (min-width: 769px) {
  .bottom-tabs {
    display: none;
  }
}

.tab-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: var(--text-muted);
  font-size: 0.65rem;
  font-weight: 600;
  text-decoration: none;
  padding: 4px 8px;
  transition: all var(--transition);
}

.tab-item svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.tab-item.active,
.tab-item:hover {
  color: var(--accent-gold);
  filter: drop-shadow(0 0 6px rgba(255, 191, 0, 0.4));
}

/* ===== HERO SECTION ===== */
.hero {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(124, 77, 255, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(255, 191, 0, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 100%, rgba(229, 57, 53, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg-tertiary) 0%, var(--bg-primary) 100%);
  padding: 80px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(circle at 30% 40%, rgba(255, 191, 0, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 70% 60%, rgba(124, 77, 255, 0.06) 0%, transparent 40%);
  animation: heroGlow 10s ease-in-out infinite alternate;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 191, 0, 0.4), transparent);
}

@keyframes heroGlow {
  0% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(3%, 2%) rotate(1deg); }
  100% { transform: translate(-2%, 3%) rotate(-1deg); }
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

@media (min-width: 769px) {
  .hero h1 {
    font-size: 3.2rem;
  }
}

.hero h1 .gold {
  color: var(--accent-gold);
  text-shadow: 0 0 30px rgba(255, 191, 0, 0.3);
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== RATING BADGE ===== */
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(255, 191, 0, 0.15) 0%, rgba(255, 140, 0, 0.1) 100%);
  border: 1px solid rgba(255, 191, 0, 0.35);
  padding: 10px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
  box-shadow: 0 0 20px rgba(255, 191, 0, 0.1);
}

.rating-stars {
  color: var(--accent-gold);
  font-size: 1.2rem;
  letter-spacing: 3px;
  text-shadow: 0 0 10px rgba(255, 191, 0, 0.5);
}

.rating-score {
  font-weight: 800;
  font-size: 1.1rem;
}

.rating-score span {
  color: var(--text-muted);
  font-weight: 400;
}

/* ===== CTA BUTTON (LARGE) ===== */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-warm) 100%);
  color: #0a0a1a;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
  box-shadow: var(--glow-gold);
  position: relative;
  overflow: hidden;
}

.btn-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-cta:hover::before {
  left: 100%;
}

.btn-cta:hover {
  background: linear-gradient(135deg, var(--accent-gold-bright) 0%, var(--accent-gold) 100%);
  color: #0a0a1a;
  box-shadow: var(--glow-gold-strong);
  transform: translateY(-3px);
}

.btn-cta-outline {
  background: transparent;
  border: 2px solid var(--accent-gold);
  color: var(--accent-gold);
  box-shadow: none;
}

.btn-cta-outline:hover {
  background: var(--accent-gold);
  color: #0a0a1a;
  box-shadow: var(--glow-gold);
}

/* ===== SECTION ===== */
.section {
  padding: 70px 0;
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
  text-align: center;
  letter-spacing: -0.3px;
}

.section-subtitle {
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 48px;
  font-size: 1.05rem;
}

/* ===== BONUS CARDS ===== */
.bonus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 769px) {
  .bonus-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.bonus-card {
  background: linear-gradient(160deg, var(--bg-card) 0%, rgba(26, 10, 62, 0.6) 100%);
  border: 1px solid rgba(255, 191, 0, 0.15);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
  overflow: hidden;
}

.bonus-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-warm), var(--accent-gold));
  opacity: 0;
  transition: opacity var(--transition);
}

.bonus-card:hover::before {
  opacity: 1;
}

.bonus-card:hover {
  border-color: rgba(255, 191, 0, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(255, 191, 0, 0.15), 0 0 30px rgba(124, 77, 255, 0.05);
}

.bonus-card .bonus-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 10px rgba(255, 191, 0, 0.3));
}

.bonus-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--accent-gold);
  text-shadow: 0 0 15px rgba(255, 191, 0, 0.2);
}

.bonus-card .bonus-value {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bonus-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.bonus-card .btn-cta {
  width: 100%;
  justify-content: center;
}

/* ===== PROS & CONS ===== */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 769px) {
  .pros-cons {
    grid-template-columns: 1fr 1fr;
  }
}

.pros-list, .cons-list {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.pros-list {
  border-left: 3px solid var(--success);
}

.cons-list {
  border-left: 3px solid var(--danger);
}

.pros-list h3 {
  color: var(--success);
  margin-bottom: 16px;
  font-size: 1.2rem;
  text-shadow: 0 0 15px rgba(0, 230, 118, 0.3);
}

.cons-list h3 {
  color: var(--danger);
  margin-bottom: 16px;
  font-size: 1.2rem;
  text-shadow: 0 0 15px rgba(255, 82, 82, 0.3);
}

.pros-list ul, .cons-list ul {
  list-style: none;
}

.pros-list li, .cons-list li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.pros-list li:last-child, .cons-list li:last-child {
  border-bottom: none;
}

.pros-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
  text-shadow: 0 0 8px rgba(0, 230, 118, 0.4);
}

.cons-list li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: var(--danger);
  font-weight: 700;
  text-shadow: 0 0 8px rgba(255, 82, 82, 0.4);
}

/* ===== GAME / INFO CARDS ===== */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 769px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1025px) {
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card-grid.grid-4 {
  grid-template-columns: 1fr;
}

@media (min-width: 769px) {
  .card-grid.grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1025px) {
  .card-grid.grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.info-card {
  background: linear-gradient(160deg, var(--bg-card) 0%, rgba(26, 10, 62, 0.4) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
  overflow: hidden;
}

.info-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-gold), var(--accent-cyan));
  opacity: 0;
  transition: opacity var(--transition);
}

.info-card:hover::after {
  opacity: 1;
}

.info-card:hover {
  border-color: rgba(255, 191, 0, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.info-card .card-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  filter: drop-shadow(0 0 8px rgba(255, 191, 0, 0.2));
}

.info-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.info-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.info-card .card-meta {
  color: var(--accent-gold);
  font-size: 0.85rem;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(255, 191, 0, 0.2);
}

/* ===== IMAGE PLACEHOLDER ===== */
.img-placeholder {
  background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-card));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  min-height: 200px;
  border: 1px dashed rgba(255, 191, 0, 0.15);
  cursor: pointer;
  transition: all var(--transition);
}

.img-placeholder:hover {
  border-color: var(--accent-gold);
  box-shadow: 0 0 20px rgba(255, 191, 0, 0.1);
}

/* ===== STEPS ===== */
.steps {
  max-width: 800px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: 20px;
  margin-bottom: 36px;
  align-items: flex-start;
}

.step-number {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-warm));
  color: var(--bg-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.3rem;
  box-shadow: var(--glow-gold);
}

.step-content h3 {
  margin-bottom: 6px;
  font-size: 1.15rem;
  font-weight: 700;
}

.step-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ===== PAYMENT GRID ===== */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 769px) {
  .payment-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.payment-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  padding: 24px;
  text-align: center;
  transition: all var(--transition);
}

.payment-card:hover {
  border-color: rgba(255, 191, 0, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.payment-card .payment-icon {
  font-size: 2.2rem;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 6px rgba(255, 191, 0, 0.2));
}

.payment-card h4 {
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.payment-card p {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ===== VIP TIERS ===== */
.tier-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 769px) {
  .tier-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1025px) {
  .tier-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.tier-card {
  background: linear-gradient(160deg, var(--bg-card) 0%, rgba(26, 10, 62, 0.4) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  transition: all var(--transition);
}

.tier-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.tier-card.featured {
  border-color: var(--accent-gold);
  position: relative;
  box-shadow: var(--glow-gold);
  background: linear-gradient(160deg, rgba(255, 191, 0, 0.08) 0%, var(--bg-card) 100%);
}

.tier-card.featured::after {
  content: 'BEST';
  position: absolute;
  top: -10px;
  right: 16px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-warm));
  color: var(--bg-primary);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: 50px;
  box-shadow: 0 0 10px rgba(255, 191, 0, 0.3);
}

.tier-card .tier-icon {
  font-size: 2.8rem;
  margin-bottom: 14px;
  filter: drop-shadow(0 0 10px rgba(255, 191, 0, 0.2));
}

.tier-card h3 {
  font-size: 1.2rem;
  margin-bottom: 14px;
  color: var(--accent-gold);
  text-shadow: 0 0 12px rgba(255, 191, 0, 0.2);
}

.tier-card ul {
  list-style: none;
  text-align: left;
  margin-bottom: 16px;
}

.tier-card li {
  padding: 7px 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
}

.tier-card li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  text-shadow: 0 0 6px rgba(255, 191, 0, 0.4);
}

/* ===== FAQ ACCORDION ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-primary);
  padding: 22px 0;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--accent-gold);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--accent-gold);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
  text-shadow: 0 0 10px rgba(255, 191, 0, 0.3);
}

.faq-item.active .faq-question {
  color: var(--accent-gold);
}

.faq-item.active .faq-question::after {
  content: '−';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding-bottom: 22px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== NEWS CARDS ===== */
.news-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition);
}

.news-card:hover {
  border-color: rgba(255, 191, 0, 0.2);
  transform: translateY(-2px);
}

.news-card .news-date {
  color: var(--accent-gold);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 8px;
  text-shadow: 0 0 8px rgba(255, 191, 0, 0.2);
}

.news-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.news-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ===== TRUST INDICATORS ===== */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 36px;
  padding: 28px 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.trust-item .trust-icon {
  font-size: 1.4rem;
  filter: drop-shadow(0 0 6px rgba(255, 191, 0, 0.2));
}

/* ===== REVIEW SECTIONS ===== */
.review-section {
  background: linear-gradient(160deg, var(--bg-card) 0%, rgba(26, 10, 62, 0.3) 100%);
  border-radius: var(--radius);
  padding: 36px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.review-section h3 {
  font-size: 1.3rem;
  margin-bottom: 16px;
  color: var(--accent-gold);
  text-shadow: 0 0 15px rgba(255, 191, 0, 0.2);
}

.review-section p {
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background:
    radial-gradient(ellipse at 30% 50%, rgba(124, 77, 255, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(255, 191, 0, 0.08) 0%, transparent 50%),
    linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-card) 100%);
  border: 1px solid rgba(255, 191, 0, 0.2);
  border-radius: var(--radius);
  padding: 48px 40px;
  text-align: center;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.cta-banner h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
  font-weight: 800;
}

.cta-banner p {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 1.05rem;
}

/* ===== FOOTER ===== */
.site-footer {
  background: linear-gradient(180deg, var(--bg-secondary) 0%, #080818 100%);
  border-top: 1px solid rgba(255, 191, 0, 0.1);
  padding: 56px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 36px;
}

@media (min-width: 769px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-col h4 {
  color: var(--accent-gold);
  margin-bottom: 18px;
  font-size: 1rem;
  text-shadow: 0 0 12px rgba(255, 191, 0, 0.2);
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: all var(--transition);
}

.footer-col a:hover {
  color: var(--accent-gold);
  padding-left: 4px;
}

.footer-col p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  text-align: center;
}

.footer-disclaimer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.badge-18 {
  background: linear-gradient(135deg, var(--accent-red), #c62828);
  color: white;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 5px 10px;
  border-radius: 6px;
  box-shadow: 0 0 12px rgba(229, 57, 53, 0.3);
}

.footer-disclaimer p {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.footer-copyright {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ===== AGE POPUP ===== */
.age-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.age-overlay.hidden {
  display: none;
}

.age-modal {
  background: linear-gradient(160deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
  border: 1px solid rgba(255, 191, 0, 0.3);
  border-radius: var(--radius);
  padding: 48px 40px;
  text-align: center;
  max-width: 460px;
  width: 100%;
  box-shadow: 0 0 60px rgba(255, 191, 0, 0.1), 0 0 120px rgba(124, 77, 255, 0.05);
}

.age-modal .age-badge {
  font-size: 3.5rem;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 15px rgba(255, 191, 0, 0.3));
}

.age-modal h2 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  font-weight: 800;
}

.age-modal p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 28px;
  line-height: 1.6;
}

.age-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
}

.age-buttons .btn-confirm {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-warm));
  color: var(--bg-primary);
  border: none;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: var(--glow-gold);
}

.age-buttons .btn-confirm:hover {
  background: linear-gradient(135deg, var(--accent-gold-bright), var(--accent-gold));
  box-shadow: var(--glow-gold-strong);
  transform: translateY(-2px);
}

.age-buttons .btn-exit {
  background: transparent;
  border: 1px solid var(--text-muted);
  color: var(--text-muted);
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition);
}

.age-buttons .btn-exit:hover {
  border-color: var(--danger);
  color: var(--danger);
  box-shadow: 0 0 15px rgba(255, 82, 82, 0.2);
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  padding: 16px 0;
  font-size: 0.85rem;
}

.breadcrumb a {
  color: var(--text-muted);
}

.breadcrumb span {
  color: var(--text-muted);
  margin: 0 8px;
}

.breadcrumb .current {
  color: var(--accent-gold);
}

/* ===== PAGE HEADER ===== */
.page-header {
  background:
    radial-gradient(ellipse at 50% 100%, rgba(124, 77, 255, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  padding: 48px 0;
  text-align: center;
  border-bottom: 1px solid rgba(255, 191, 0, 0.1);
  position: relative;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 191, 0, 0.3), transparent);
}

.page-header h1 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.page-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ===== TEXT CONTENT (TERMS, PRIVACY) ===== */
.text-content {
  max-width: 800px;
  margin: 0 auto;
}

.text-content h2 {
  font-size: 1.4rem;
  margin-top: 36px;
  margin-bottom: 14px;
  color: var(--accent-gold);
  text-shadow: 0 0 12px rgba(255, 191, 0, 0.15);
}

.text-content h3 {
  font-size: 1.1rem;
  margin-top: 24px;
  margin-bottom: 8px;
}

.text-content p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.7;
}

.text-content ul {
  margin-bottom: 16px;
  padding-left: 20px;
}

.text-content li {
  color: var(--text-muted);
  margin-bottom: 8px;
  line-height: 1.6;
}

/* ===== RESPONSIBLE GAMING ===== */
.helpline-box {
  background: linear-gradient(160deg, var(--bg-tertiary) 0%, var(--bg-card) 100%);
  border: 1px solid rgba(255, 191, 0, 0.25);
  border-radius: var(--radius);
  padding: 36px;
  text-align: center;
  margin: 28px 0;
  box-shadow: 0 0 30px rgba(255, 191, 0, 0.05);
}

.helpline-box .helpline-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-gold);
  margin: 14px 0;
  text-shadow: 0 0 20px rgba(255, 191, 0, 0.3);
}

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.text-gold { color: var(--accent-gold); }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }

/* ===== SCROLLBAR STYLING ===== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 191, 0, 0.2);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 191, 0, 0.4);
}

/* ===== SELECTION ===== */
::selection {
  background: rgba(255, 191, 0, 0.3);
  color: var(--text-primary);
}

/* ===== FLASHY ANIMATIONS ===== */

/* Shimmer sweep on bonus cards */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.bonus-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    110deg,
    transparent 20%,
    rgba(255, 191, 0, 0.06) 40%,
    rgba(255, 191, 0, 0.12) 50%,
    rgba(255, 191, 0, 0.06) 60%,
    transparent 80%
  );
  background-size: 200% 100%;
  animation: shimmer 4s ease-in-out infinite;
  pointer-events: none;
  border-radius: inherit;
}

/* Pulsing glow on CTA buttons */
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(255, 191, 0, 0.3), 0 0 60px rgba(255, 191, 0, 0.1); }
  50% { box-shadow: 0 0 30px rgba(255, 191, 0, 0.5), 0 0 80px rgba(255, 191, 0, 0.25), 0 0 120px rgba(255, 191, 0, 0.1); }
}

.btn-cta {
  animation: pulseGlow 2.5s ease-in-out infinite;
}

.btn-cta:hover {
  animation: none;
}

/* Floating particle dots in hero */
@keyframes floatUp {
  0% { transform: translateY(0) scale(1); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-400px) scale(0.5); opacity: 0; }
}

.hero .hero-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent-gold);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 0 6px rgba(255, 191, 0, 0.6);
}

.hero .hero-particle:nth-child(1) { left: 10%; bottom: 0; animation: floatUp 6s 0s infinite; }
.hero .hero-particle:nth-child(2) { left: 25%; bottom: 0; animation: floatUp 8s 1s infinite; }
.hero .hero-particle:nth-child(3) { left: 45%; bottom: 0; animation: floatUp 7s 2s infinite; }
.hero .hero-particle:nth-child(4) { left: 65%; bottom: 0; animation: floatUp 9s 0.5s infinite; }
.hero .hero-particle:nth-child(5) { left: 80%; bottom: 0; animation: floatUp 6.5s 3s infinite; }
.hero .hero-particle:nth-child(6) { left: 90%; bottom: 0; animation: floatUp 7.5s 1.5s infinite; }

/* Gradient text animation for hero headline */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero h1 .gold {
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-bright), var(--accent-warm), var(--accent-gold));
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
}

/* Entrance animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

.hero-content {
  animation: fadeInUp 0.8s ease-out;
}

.bonus-card, .info-card, .tier-card, .news-card, .payment-card {
  animation: fadeInScale 0.5s ease-out backwards;
}

.bonus-card:nth-child(1), .info-card:nth-child(1), .tier-card:nth-child(1) { animation-delay: 0.1s; }
.bonus-card:nth-child(2), .info-card:nth-child(2), .tier-card:nth-child(2) { animation-delay: 0.2s; }
.bonus-card:nth-child(3), .info-card:nth-child(3), .tier-card:nth-child(3) { animation-delay: 0.3s; }
.bonus-card:nth-child(4), .info-card:nth-child(4), .tier-card:nth-child(4) { animation-delay: 0.4s; }

/* Glowing border animation for featured cards */
@keyframes borderGlow {
  0%, 100% { border-color: rgba(255, 191, 0, 0.3); }
  50% { border-color: rgba(255, 191, 0, 0.7); }
}

.bonus-card-featured, .tier-card.featured {
  animation: borderGlow 3s ease-in-out infinite, fadeInScale 0.5s ease-out backwards;
}

/* Rating stars twinkle */
@keyframes twinkle {
  0%, 100% { text-shadow: 0 0 10px rgba(255, 191, 0, 0.5); }
  50% { text-shadow: 0 0 20px rgba(255, 191, 0, 1), 0 0 40px rgba(255, 191, 0, 0.5); }
}

.rating-stars {
  animation: twinkle 2s ease-in-out infinite;
}

/* CTA banner background glow pulse */
@keyframes bannerPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.cta-banner::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60%;
  height: 60%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(255, 191, 0, 0.06) 0%, transparent 70%);
  animation: bannerPulse 4s ease-in-out infinite;
  pointer-events: none;
}

/* ===== FLOATING REGISTER NOW BUTTON ===== */
.floating-cta {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-warm) 100%);
  color: #0a0a1a;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  animation: pulseGlow 2.5s ease-in-out infinite, floatBounce 3s ease-in-out infinite;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(255, 191, 0, 0.4);
}

@keyframes floatBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.floating-cta:hover {
  background: linear-gradient(135deg, var(--accent-gold-bright) 0%, var(--accent-gold) 100%);
  color: #0a0a1a;
  animation: none;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 30px rgba(255, 191, 0, 0.6);
}

.floating-cta svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

@media (min-width: 769px) {
  .floating-cta {
    bottom: 30px;
    right: 30px;
    padding: 16px 32px;
    font-size: 1rem;
  }
}

/* Hide floating CTA when bottom tabs are covering it on very small screens */
@media (max-width: 768px) {
  .floating-cta {
    bottom: 75px;
  }
}

/* ===== REGISTER NAV HIGHLIGHT ===== */
.nav-desktop a.nav-register {
  color: var(--accent-gold);
  font-weight: 700;
  position: relative;
}

.nav-desktop a.nav-register::before {
  content: '';
  position: absolute;
  inset: -4px -12px;
  border: 1px solid rgba(255, 191, 0, 0.3);
  border-radius: 50px;
  animation: borderGlow 3s ease-in-out infinite;
}

/* ===== WHY SKYCROWN SECTION (replaces pros/cons) ===== */
.highlights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 769px) {
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1025px) {
  .highlights-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.highlight-card {
  background: linear-gradient(160deg, var(--bg-card) 0%, rgba(26, 10, 62, 0.4) 100%);
  border: 1px solid rgba(0, 230, 118, 0.15);
  border-left: 3px solid var(--success);
  border-radius: var(--radius);
  padding: 24px;
  transition: all var(--transition);
  animation: fadeInScale 0.5s ease-out backwards;
}

.highlight-card:nth-child(1) { animation-delay: 0.1s; }
.highlight-card:nth-child(2) { animation-delay: 0.15s; }
.highlight-card:nth-child(3) { animation-delay: 0.2s; }
.highlight-card:nth-child(4) { animation-delay: 0.25s; }
.highlight-card:nth-child(5) { animation-delay: 0.3s; }
.highlight-card:nth-child(6) { animation-delay: 0.35s; }

.highlight-card:hover {
  border-color: rgba(0, 230, 118, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.highlight-card .highlight-icon {
  font-size: 1.5rem;
  margin-bottom: 10px;
  display: inline-block;
}

.highlight-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.highlight-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== SCREENSHOT GRID (games page) ===== */
.screenshot-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 769px) {
  .screenshot-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1025px) {
  .screenshot-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.screenshot-placeholder {
  background: linear-gradient(160deg, var(--bg-card) 0%, rgba(26, 10, 62, 0.4) 100%);
  border: 1px dashed rgba(255, 191, 0, 0.15);
  border-radius: var(--radius);
  padding: 36px 20px;
  text-align: center;
  transition: all var(--transition);
}

.screenshot-placeholder:hover {
  border-color: rgba(255, 191, 0, 0.4);
  transform: translateY(-3px);
}

.screenshot-inner .screenshot-icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
  display: block;
}

.screenshot-inner p {
  font-weight: 700;
  margin-bottom: 6px;
}

.screenshot-inner .screenshot-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.screenshot-cta {
  text-align: center;
  margin-top: 32px;
}

/* ===== BONUS PAGE EXTRAS ===== */
.bonus-grid-large .bonus-card {
  text-align: left;
}

.bonus-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-warm));
  color: #0a0a1a;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.bonus-highlights {
  list-style: none;
  margin-bottom: 24px;
}

.bonus-highlights li {
  padding: 6px 0 6px 24px;
  position: relative;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.bonus-highlights li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

/* Terms grid */
.terms-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 769px) {
  .terms-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1025px) {
  .terms-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.terms-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--transition);
}

.terms-card:hover {
  border-color: rgba(255, 191, 0, 0.2);
  transform: translateY(-2px);
}

.terms-card .terms-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

.terms-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--accent-gold);
}

.terms-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

.terms-disclaimer {
  background: rgba(255, 191, 0, 0.05);
  border: 1px solid rgba(255, 191, 0, 0.15);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-top: 32px;
  text-align: center;
}

.terms-disclaimer p {
  color: var(--text-muted);
  font-size: 0.88rem;
}

/* Steps grid */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 769px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  transition: all var(--transition);
}

.step-card:hover {
  border-color: rgba(255, 191, 0, 0.2);
  transform: translateY(-2px);
}

.step-card .step-number {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-warm));
  color: var(--bg-primary);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 14px;
  box-shadow: var(--glow-gold);
}

.step-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.step-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* Info grid and block for VIP page */
.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 769px) {
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.info-grid .info-card .info-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

.info-block {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 32px;
}

.info-block h3 {
  font-size: 1.1rem;
  color: var(--accent-gold);
  margin-bottom: 10px;
}

.info-block p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* Payment page extras */
.payment-details {
  margin: 16px 0;
}

.payment-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.payment-label {
  color: var(--text-muted);
}

.payment-value {
  font-weight: 600;
  color: var(--text-primary);
}

.payment-value.good {
  color: var(--success);
}

.payment-value.neutral {
  color: var(--text-muted);
}

.payment-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 8px 0 14px;
  line-height: 1.5;
}

.payment-cta {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-warm) 100%);
  color: #0a0a1a;
  padding: 10px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  text-decoration: none;
  transition: all var(--transition);
  box-shadow: 0 0 10px rgba(255, 191, 0, 0.2);
}

.payment-cta:hover {
  color: #0a0a1a;
  box-shadow: 0 0 20px rgba(255, 191, 0, 0.4);
  transform: translateY(-2px);
}

/* Card features list */
.card-features {
  list-style: none;
  margin-bottom: 16px;
}

.card-features li {
  padding: 3px 0 3px 18px;
  position: relative;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.card-features li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
}

/* Tier label */
.tier-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.tier-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-warm));
  color: #0a0a1a;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
}

/* Page title/subtitle aliases */
.page-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.page-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.page-header-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Provider card */
.provider-card {
  pointer-events: auto;
}

/* Breadcrumb bar */
.breadcrumb-bar {
  background: var(--bg-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.breadcrumb ol li::before {
  content: '›';
  margin-right: 8px;
  color: var(--text-muted);
}

.breadcrumb ol li:first-child::before {
  content: '';
  margin: 0;
}

.breadcrumb-sep {
  color: var(--text-muted);
}

.breadcrumb-current {
  color: var(--accent-gold);
}
