:root {
  --bg-deep: #05070d;
  --bg-surface: #0a0e19;
  --bg-card: #0f1526;
  --bg-card-hover: #141c33;
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(245, 158, 11, 0.4);
  --border-gold-glow: 0 0 20px rgba(245, 158, 11, 0.25);
  --gold-300: #fef08a;
  --gold-400: #fbbf24;
  --gold-500: #f59e0b;
  --gold-600: #d97706;
  --cyan-400: #38bdf8;
  --emerald-400: #34d399;
  --emerald-500: #10b981;
  --text-pure: #ffffff;
  --text-main: #f1f5f9;
  --text-muted: #94a3b8;
  --text-dark: #64748b;
  --radius-xl: 18px;
  --radius-lg: 14px;
  --radius-md: 10px;
  --radius-sm: 6px;
  --shadow-vip: 0 14px 40px -10px rgba(0, 0, 0, 0.7), 0 0 25px rgba(245, 158, 11, 0.06);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-tap-highlight-color: transparent;
}

body {
  background-color: var(--bg-deep);
  color: var(--text-main);
  line-height: 1.6;
  padding-bottom: 95px;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(245, 158, 11, 0.08) 0%, transparent 55%),
    radial-gradient(circle at 100% 25%, rgba(16, 185, 129, 0.04) 0%, transparent 45%);
}

.vip-container {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Header */
.vip-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(5, 7, 13, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-glass);
  padding: 12px 0;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vip-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.vip-badge {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #1e1b4b, #0f172a);
  border: 1px solid var(--gold-500);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 18px rgba(245, 158, 11, 0.3);
  position: relative;
}

.vip-badge-crown {
  font-size: 1.3rem;
  line-height: 1;
}

.vip-brand-text h1 {
  font-size: 1.15rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.3px;
  line-height: 1.2;
}

.vip-brand-text span {
  font-size: 0.72rem;
  color: var(--gold-400);
  font-weight: 700;
  letter-spacing: 0.5px;
  display: block;
}

.btn-vip-sponsor {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: #000;
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 800;
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.35);
}

.btn-vip-sponsor:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 25px rgba(245, 158, 11, 0.55);
}

/* Live Ticker Bar */
.vip-ticker {
  background: #020409;
  border-bottom: 1px solid var(--border-glass);
  padding: 8px 0;
  font-size: 0.76rem;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 24px;
  animation: tickerSlide 26s linear infinite;
}

@keyframes tickerSlide {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

.ticker-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
}

.ticker-gold {
  background: rgba(245, 158, 11, 0.15);
  color: var(--gold-400);
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 800;
  font-size: 0.68rem;
}

/* Hero */
.hero-wrapper {
  padding: 24px 0 18px;
  text-align: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245, 158, 11, 0.1);
  color: var(--gold-400);
  border: 1px solid var(--border-gold);
  padding: 5px 14px;
  border-radius: 30px;
  font-size: 0.76rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.hero-h1 {
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #ffffff 40%, var(--gold-300) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
}

.hero-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 660px;
  margin: 0 auto 22px;
}

/* Search Bar */
.search-block {
  position: relative;
  margin-bottom: 16px;
}

.search-input {
  width: 100%;
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 14px 44px;
  color: #fff;
  font-size: 0.92rem;
  outline: none;
  transition: all 0.25s ease;
}

.search-input:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.2);
  background: #0f1524;
}

.search-ico {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

.search-clear {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  display: none;
}

/* Category Filter Tabs */
.filter-belt {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 0 16px;
  scrollbar-width: none;
}

.filter-belt::-webkit-scrollbar {
  display: none;
}

.filter-tab {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
  padding: 8px 16px;
  border-radius: 24px;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.filter-tab:hover {
  border-color: var(--gold-500);
  color: #fff;
}

.filter-tab.active {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(217, 119, 6, 0.15));
  border-color: var(--gold-500);
  color: var(--gold-300);
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.25);
}

/* Results Bar */
.results-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  font-size: 0.82rem;
  color: var(--text-dark);
}

.results-strip b {
  color: var(--gold-400);
}

/* VIP Comparison Table */
.matrix-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 16px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-vip);
  overflow-x: auto;
}

.matrix-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.matrix-title {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
}

.vip-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.84rem;
}

.vip-table th {
  background: #060913;
  color: var(--text-muted);
  text-align: left;
  padding: 10px 12px;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--border-glass);
}

.vip-table td {
  padding: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--text-main);
  vertical-align: middle;
}

.vip-table tr:hover td {
  background: rgba(245, 158, 11, 0.03);
}

.table-brand-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.table-logo {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.9rem;
  color: #fff;
}

.table-brand-name {
  font-weight: 800;
  color: #fff;
  font-size: 0.88rem;
}

.table-badge-cond {
  background: rgba(16, 185, 129, 0.12);
  color: var(--emerald-400);
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 700;
}

.table-bonus-val {
  font-weight: 900;
  color: var(--gold-400);
  font-size: 0.95rem;
}

/* Cards Grid */
.cards-feed {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.vip-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 18px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-vip);
  position: relative;
  overflow: hidden;
}

.vip-card:hover {
  transform: translateY(-2px);
  border-color: var(--border-gold);
  background: var(--bg-card-hover);
  box-shadow: 0 16px 40px -8px rgba(245, 158, 11, 0.2);
}

.card-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.card-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.card-logo {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.15rem;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.card-meta h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
}

.verified-vip-tag {
  background: rgba(245, 158, 11, 0.12);
  color: var(--gold-400);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid var(--border-gold);
}

.card-rating {
  font-size: 0.78rem;
  color: var(--gold-400);
  font-weight: 600;
  margin-top: 2px;
}

.card-highlight-tag {
  background: rgba(16, 185, 129, 0.15);
  color: var(--emerald-400);
  border: 1px solid rgba(16, 185, 129, 0.35);
  padding: 5px 12px;
  border-radius: 14px;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-amount-box {
  background: #060913;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.amount-label {
  font-size: 0.74rem;
  color: var(--text-dark);
  text-transform: uppercase;
  font-weight: 700;
  display: block;
}

.amount-sum {
  font-size: 1.45rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.5px;
}

.amount-sum span {
  color: var(--gold-400);
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.spec-cell {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.76rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.card-foot {
  display: flex;
  align-items: center;
  gap: 10px;
}

.code-pill {
  flex: 1;
  background: #060913;
  border: 1px dashed var(--border-gold);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.2s ease;
}

.code-pill:hover {
  background: #0c1224;
}

.code-str {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--gold-400);
  letter-spacing: 1px;
}

.code-desc {
  font-size: 0.68rem;
  color: var(--text-dark);
}

.btn-claim-vip {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: #000;
  border: none;
  border-radius: var(--radius-sm);
  padding: 11px 18px;
  font-size: 0.85rem;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.btn-claim-vip:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
}

/* SEO Content Section */
.seo-knowledge-box {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 26px;
  margin-bottom: 24px;
}

.seo-knowledge-box h2 {
  font-size: 1.35rem;
  font-weight: 900;
  color: #fff;
  margin: 24px 0 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.seo-knowledge-box h2:first-of-type {
  margin-top: 0;
}

.seo-knowledge-box h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold-400);
  margin: 16px 0 8px;
}

.seo-knowledge-box p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 12px;
}

.seo-knowledge-box ul {
  padding-left: 20px;
  margin-bottom: 14px;
}

.seo-knowledge-box li {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 6px;
}

.seo-knowledge-box strong {
  color: #fff;
}

/* FAQ */
.faq-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.faq-row {
  background: #060913;
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-head {
  width: 100%;
  background: none;
  border: none;
  padding: 14px 16px;
  text-align: left;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-body {
  padding: 0 16px 14px;
  color: var(--text-muted);
  font-size: 0.85rem;
  display: none;
  line-height: 1.6;
}

.faq-row.active .faq-body {
  display: block;
}

.faq-row.active .faq-caret {
  transform: rotate(180deg);
}

.faq-caret {
  transition: transform 0.2s ease;
  color: var(--gold-400);
}

/* Legal Notice */
.legal-box {
  background: rgba(6, 9, 19, 0.7);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-size: 0.74rem;
  color: #64748b;
  text-align: center;
  margin-bottom: 24px;
}

.vip-footer {
  text-align: center;
  padding: 18px 0;
  font-size: 0.78rem;
  color: #475569;
  border-top: 1px solid var(--border-glass);
}

/* Sticky Bottom Mobile Bar */
.bottom-sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 14, 25, 0.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-glass);
  padding: 10px 16px;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sticky-label {
  font-size: 0.8rem;
  font-weight: 800;
  color: #fff;
}

.sticky-sublabel {
  font-size: 0.68rem;
  color: var(--gold-400);
}

.btn-sticky-vip {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: #000;
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.35);
}

/* Toast */
.vip-toast {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--gold-500);
  color: #000;
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 800;
  z-index: 100;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.vip-toast.active {
  transform: translateX(-50%) translateY(0);
}

/* Brand Search Callout Banner */
.brand-search-box {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.12), rgba(15, 21, 38, 0.95));
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  margin: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), var(--border-gold-glow);
  flex-wrap: wrap;
}

.brand-search-content {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 260px;
}

.brand-search-icon {
  font-size: 1.8rem;
  line-height: 1;
  background: rgba(245, 158, 11, 0.15);
  padding: 10px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.brand-search-text h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 2px;
}

.brand-search-text p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.35;
}

.brand-search-keyword {
  color: var(--gold-400);
  background: rgba(245, 158, 11, 0.15);
  padding: 2px 7px;
  border-radius: 4px;
  font-weight: 800;
  letter-spacing: 0.3px;
}

.brand-search-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-brand-google {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  color: #1f2937;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
}

.btn-brand-google:hover {
  background: #f3f4f6;
  transform: translateY(-1px);
}

.btn-brand-copy {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-glass);
  color: var(--text-main);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-brand-copy:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

/* Interactive Wheel of Fortune (Bonus Çarkı) */
.wheel-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 24px 20px;
  margin: 2rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(245, 158, 11, 0.1);
}

.wheel-card::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.wheel-badge {
  display: inline-block;
  background: rgba(245, 158, 11, 0.15);
  color: var(--gold-400);
  border: 1px solid var(--border-gold);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.wheel-card h3 {
  font-size: 1.35rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 6px;
}

.wheel-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 20px auto;
}

.wheel-stage {
  position: relative;
  width: 320px;
  height: 320px;
  margin: 0 auto 20px auto;
}

@media (max-width: 480px) {
  .wheel-stage {
    width: 280px;
    height: 280px;
  }
}

.wheel-canvas {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 0 0 6px #1e1b4b, 0 0 0 10px rgba(245, 158, 11, 0.6), 0 10px 30px rgba(0, 0, 0, 0.8);
  transition: transform 4s cubic-bezier(0.15, 0.9, 0.25, 1);
}

.wheel-pointer {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 28px solid #fbbf24;
  z-index: 10;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.6));
}

.wheel-center-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: radial-gradient(circle, #f59e0b, #b45309);
  border: 3px solid #fef08a;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  z-index: 8;
  cursor: pointer;
  user-select: none;
}

.btn-spin-wheel {
  background: linear-gradient(135deg, #fbbf24, #d97706);
  color: #000;
  border: none;
  font-size: 1rem;
  font-weight: 900;
  padding: 13px 36px;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.45);
  transition: all 0.25s ease;
  letter-spacing: 0.3px;
}

.btn-spin-wheel:hover:not(:disabled) {
  transform: scale(1.04);
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.7);
}

.btn-spin-wheel:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Wheel Result Modal */
.wheel-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.wheel-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.wheel-modal {
  background: var(--bg-card);
  border: 2px solid var(--gold-500);
  border-radius: var(--radius-xl);
  max-width: 440px;
  width: 100%;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 40px rgba(245, 158, 11, 0.4);
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.wheel-modal-overlay.active .wheel-modal {
  transform: scale(1);
}

.wheel-modal-icon {
  font-size: 3rem;
  margin-bottom: 8px;
  animation: bounce 1s infinite alternate;
}

@keyframes bounce {
  from { transform: translateY(0); }
  to { transform: translateY(-8px); }
}

.wheel-modal h3 {
  font-size: 1.45rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 6px;
}

.wheel-modal-prize {
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--gold-400);
  margin: 10px 0;
  text-shadow: 0 0 20px rgba(245, 158, 11, 0.5);
}

.wheel-modal-codebox {
  background: rgba(0, 0, 0, 0.4);
  border: 1px dashed var(--border-gold);
  border-radius: var(--radius-md);
  padding: 12px;
  margin: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wheel-modal-code {
  font-family: monospace;
  font-size: 1.15rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 2px;
}

.wheel-modal-cta {
  display: block;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: #000;
  font-size: 0.92rem;
  font-weight: 800;
  padding: 12px 20px;
  border-radius: 25px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
  margin-bottom: 10px;
}

.wheel-modal-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.8rem;
  cursor: pointer;
  text-decoration: underline;
}

/* Cluster Subpages Category Belt */
.cluster-belt {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 12px 0;
  margin: 1rem 0;
  scrollbar-width: none;
}

.cluster-belt::-webkit-scrollbar {
  display: none;
}

.cluster-pill {
  white-space: nowrap;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cluster-pill:hover,
.cluster-pill.active {
  background: rgba(245, 158, 11, 0.15);
  border-color: var(--gold-500);
  color: var(--gold-300);
  box-shadow: 0 0 14px rgba(245, 158, 11, 0.2);
}

