/* 7era Club — neon brand system */
:root {
  --bg: #0a0a0f;
  --card: #1a1a2e;
  --primary: #8b5cf6;
  --gold: #d4a843;
  --blue: #3b82ff;
  --text: #e8e6df;
  --muted: #aaa59c;
  --border: #2a2a3e;

  --neon-yellow: #ffd600;
  --neon-orange: #ff6d00;
  --neon-blue: #0052ff;
  --neon-red: #ff1744;
  --neon-purple: #c792ea;
  --deep-blue: #1e0064;
  --deep-purple: #4a00e0;

  --surface: #11111b;
  --card-raised: #20203a;
  --gold-light: #f3d98b;
  --max-width: 1200px;
  --nav-height: 72px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --shadow-card: 0 12px 30px rgba(0, 0, 0, .34);
  --shadow-card-hover: 0 28px 55px rgba(0, 0, 0, .5), 0 0 28px rgba(139, 92, 246, .16);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 20px);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(74, 0, 224, .13), transparent 27rem),
    radial-gradient(circle at 88% 42%, rgba(0, 82, 255, .08), transparent 25rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

::selection {
  background: rgba(139, 92, 246, .72);
  color: #fff;
}

:focus-visible {
  outline: 3px solid var(--neon-yellow);
  outline-offset: 4px;
}

/* Layout and type */
.container {
  width: min(calc(100% - 32px), var(--max-width));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: clamp(64px, 9vw, 112px);
}

.section + .section {
  border-top: 1px solid rgba(42, 42, 62, .48);
}

.section-title,
.content > h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.8rem, 5vw, 3.15rem);
  font-weight: 850;
  letter-spacing: -.045em;
  line-height: 1.08;
  text-wrap: balance;
}

.section-title {
  text-align: center;
}

.section-title::after {
  display: block;
  width: 64px;
  height: 3px;
  margin: 18px auto 0;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--neon-yellow), var(--neon-orange), var(--primary), var(--blue));
  box-shadow: 0 0 18px rgba(139, 92, 246, .65);
  content: "";
}

.section-subtitle,
.lead {
  max-width: 680px;
  margin: 18px auto 42px;
  color: var(--muted);
  font-size: clamp(.98rem, 2vw, 1.1rem);
  text-align: center;
  text-wrap: pretty;
}

.text-center { text-align: center; }
.text-yellow,
.gold { color: var(--neon-yellow); }
.text-blue { color: var(--blue); }
.text-gold { color: var(--gold); }
.purple,
.purple-text { color: var(--neon-purple); }

.neon-text {
  color: #fff;
  text-shadow:
    0 0 5px rgba(255, 255, 255, .8),
    0 0 14px var(--primary),
    0 0 30px var(--deep-purple);
}

.glow-border {
  border: 1px solid transparent;
  background:
    linear-gradient(var(--card), var(--card)) padding-box,
    linear-gradient(120deg, var(--neon-yellow), var(--neon-orange), var(--blue), var(--neon-red), var(--neon-purple)) border-box;
  box-shadow: 0 0 28px rgba(139, 92, 246, .18);
}

/* Sticky blurred navigation */
.navbar {
  position: sticky;
  z-index: 1000;
  top: 0;
  width: 100%;
  height: var(--nav-height);
  border-bottom: 1px solid rgba(199, 146, 234, .14);
  background: rgba(10, 10, 15, .74);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .2);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
}

.navbar::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-yellow), var(--neon-orange), var(--blue), var(--neon-red), transparent);
  opacity: .34;
  content: "";
}

.navbar-inner {
  display: flex;
  align-items: center;
  width: min(calc(100% - 24px), var(--max-width));
  height: 100%;
  margin-inline: auto;
  gap: 10px;
}

.navbar-logo {
  flex: 0 0 auto;
  border-radius: 8px;
}

.navbar-logo img {
  width: auto;
  height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(139, 92, 246, .25));
}

.navbar-links {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  gap: 2px;
  min-width: 0;
  margin-inline: auto;
  overflow-x: auto;
  scrollbar-width: none;
}

.navbar-links::-webkit-scrollbar { display: none; }

.navbar-links a {
  flex: 0 0 auto;
  padding: 8px 10px;
  border-radius: var(--radius-pill);
  color: var(--muted);
  font-size: .76rem;
  font-weight: 700;
  white-space: nowrap;
  transition: color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.navbar-links a:hover,
.navbar-links a.active,
.navbar-links a[aria-current="page"] {
  background: rgba(139, 92, 246, .12);
  box-shadow: inset 0 0 0 1px rgba(199, 146, 234, .18);
  color: #fff;
}

.navbar-cta {
  display: none;
  flex: 0 0 auto;
  padding: 10px 18px;
  font-size: .82rem;
}

/* Buttons */
.cta-btn,
.cta {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 236, 174, .54);
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #f1d477 0%, var(--gold) 48%, #a9771d 100%);
  box-shadow: 0 8px 24px rgba(212, 168, 67, .22), inset 0 1px rgba(255, 255, 255, .38);
  color: #171207;
  font-weight: 850;
  letter-spacing: .01em;
  line-height: 1;
  text-align: center;
  text-shadow: 0 1px rgba(255, 255, 255, .28);
  transition: transform .25s var(--ease-out), box-shadow .25s ease, filter .25s ease;
}

.cta-btn::before,
.cta::before {
  position: absolute;
  z-index: -1;
  top: -50%;
  left: -35%;
  width: 28%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .7), transparent);
  transform: rotate(18deg);
  transition: left .55s var(--ease-out);
  content: "";
}

.cta-btn:hover,
.cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(212, 168, 67, .36), 0 0 24px rgba(255, 214, 0, .2), inset 0 1px rgba(255, 255, 255, .42);
  filter: brightness(1.08);
}

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

.cta-btn:active,
.cta:active { transform: translateY(-1px) scale(.985); }

.cta-btn--lg {
  min-height: 56px;
  padding: 17px 34px;
  font-size: 1.02rem;
}

.cta-btn--outline {
  border-color: rgba(139, 92, 246, .65);
  background: rgba(20, 16, 39, .66);
  box-shadow: inset 0 0 0 1px rgba(59, 130, 255, .12), 0 8px 24px rgba(0, 0, 0, .22);
  color: var(--text);
  text-shadow: none;
  backdrop-filter: blur(8px);
}

.cta-btn--outline:hover {
  background: rgba(74, 0, 224, .2);
  box-shadow: 0 12px 32px rgba(74, 0, 224, .28), 0 0 22px rgba(59, 130, 255, .17);
}

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-height: calc(100svh - var(--nav-height));
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 22%, rgba(199, 146, 234, .28) 0, rgba(74, 0, 224, .22) 22%, transparent 52%),
    radial-gradient(circle at 10% 80%, rgba(0, 82, 255, .22), transparent 33%),
    radial-gradient(circle at 92% 70%, rgba(255, 23, 68, .1), transparent 30%),
    linear-gradient(145deg, var(--deep-blue) 0%, #190044 48%, var(--deep-purple) 135%);
  text-align: center;
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .74), transparent 88%);
  content: "";
}

.hero::after {
  position: absolute;
  z-index: -1;
  bottom: -210px;
  left: 50%;
  width: min(900px, 130vw);
  aspect-ratio: 1;
  border: 1px solid rgba(199, 146, 234, .15);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(139, 92, 246, .035),
    0 0 0 140px rgba(59, 130, 255, .025);
  transform: translateX(-50%) rotateX(70deg);
  content: "";
}

.hero-content {
  position: relative;
  z-index: 1;
  min-width: 0;
  width: min(calc(100% - 32px), 920px);
  max-width: 920px;
  padding-block: 54px 64px;
}

.hero-logo {
  width: clamp(142px, 25vw, 206px);
  margin: 0 auto 26px;
  border-radius: 24%;
  filter: drop-shadow(0 16px 35px rgba(0, 0, 0, .42)) drop-shadow(0 0 24px rgba(199, 146, 234, .28));
  animation: logo-float 5s ease-in-out infinite;
}

.hero h1 {
  max-width: 900px;
  margin: 0 auto 20px;
  color: #fff;
  font-size: clamp(2.05rem, 8vw, 5rem);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: 1.02;
  text-shadow: 0 8px 34px rgba(0, 0, 0, .54);
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.hero h1 .text-yellow {
  color: var(--neon-yellow);
  text-shadow: 0 0 12px rgba(255, 214, 0, .68), 0 0 34px rgba(255, 109, 0, .25);
}

.hero p {
  max-width: 720px;
  margin: 0 auto 32px;
  color: rgba(232, 230, 223, .82);
  font-size: clamp(1rem, 2.4vw, 1.18rem);
  text-wrap: pretty;
  overflow-wrap: anywhere;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 12px;
  width: min(100%, 360px);
  margin-inline: auto;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 640px;
  margin: 44px auto 0;
  padding: 16px 8px;
  border: 1px solid rgba(199, 146, 234, .16);
  border-radius: var(--radius-lg);
  background: rgba(10, 10, 15, .28);
  box-shadow: inset 0 1px rgba(255, 255, 255, .04);
  backdrop-filter: blur(12px);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding-inline: 6px;
}

.hero-stat + .hero-stat { border-left: 1px solid rgba(232, 230, 223, .13); }

.hero-stat strong,
.hero-stat .num {
  color: var(--neon-yellow);
  font-size: clamp(1.25rem, 5vw, 2rem);
  font-weight: 900;
  line-height: 1.1;
  text-shadow: 0 0 14px rgba(255, 214, 0, .28);
}

.hero-stat span,
.hero-stat .label {
  margin-top: 5px;
  overflow: hidden;
  color: rgba(232, 230, 223, .68);
  font-size: clamp(.64rem, 2vw, .78rem);
  text-overflow: ellipsis;
  white-space: nowrap;
}

@keyframes logo-float {
  0%, 100% { transform: translateY(0) rotate(-.4deg); }
  50% { transform: translateY(-10px) rotate(.4deg); }
}

/* Shared 3D card language */
.card-grid,
.slot-grid,
.promo-grid,
.provider-grid,
.vip-tiers,
.affiliate-features,
.payment-grid,
.trust-grid,
.testimonial-grid,
.blog-grid,
.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  perspective: 1100px;
}

:is(.game-card, .slot-card, .promo-card, .provider-card, .vip-tier, .affiliate-feature, .payment-card, .trust-item, .testimonial-card, .blog-card, .card, .step-card) {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(32, 32, 58, .96), rgba(20, 20, 38, .98));
  box-shadow: var(--shadow-card), inset 0 1px rgba(255, 255, 255, .035);
  transform: perspective(1000px) translateZ(0);
  transform-style: preserve-3d;
  transition:
    transform .45s var(--ease-out),
    border-color .35s ease,
    box-shadow .45s ease,
    background-color .35s ease;
}

:is(.game-card, .slot-card, .promo-card, .provider-card, .vip-tier, .affiliate-feature, .payment-card, .trust-item, .testimonial-card, .blog-card, .card, .step-card):hover {
  z-index: 2;
  border-color: rgba(139, 92, 246, .62);
  box-shadow: var(--shadow-card-hover), inset 0 1px rgba(255, 255, 255, .07);
  transform: perspective(1000px) translateY(-9px) rotateX(2.5deg) rotateY(-1.5deg) scale(1.012);
}

.game-card {
  min-height: 190px;
  padding: 30px 26px 26px;
  overflow: hidden;
}

/* Purple neon rule is the identifying detail for game cards. */
.game-card::before {
  position: absolute;
  top: 0;
  right: 22px;
  left: 22px;
  height: 3px;
  border-radius: 0 0 6px 6px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--neon-purple), var(--blue), transparent);
  box-shadow: 0 0 16px rgba(139, 92, 246, .75);
  content: "";
}

.game-card::after {
  position: absolute;
  right: -45px;
  bottom: -55px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(139, 92, 246, .16);
  border-radius: 50%;
  box-shadow: 0 0 0 24px rgba(139, 92, 246, .025);
  content: "";
  transition: transform .5s var(--ease-out), border-color .3s ease;
}

.game-card:hover::after {
  border-color: rgba(199, 146, 234, .32);
  transform: translate(-8px, -8px) scale(1.06);
}

.game-card strong,
.game-card h3 {
  position: relative;
  z-index: 1;
  display: block;
  margin: 0 0 10px;
  color: #fff;
  font-size: 1.24rem;
  font-weight: 820;
}

.game-card p,
.slot-card p,
.promo-card p,
.provider-card p,
.vip-tier p,
.affiliate-feature p,
.payment-card p,
.trust-item p,
.blog-card p,
.card p,
.step-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
  text-wrap: pretty;
}

.card-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  place-items: center;
  border: 1px solid rgba(139, 92, 246, .3);
  border-radius: 14px;
  background: rgba(139, 92, 246, .11);
  color: var(--neon-purple);
  font-size: 1.4rem;
  box-shadow: 0 0 18px rgba(139, 92, 246, .12);
}

/* Slots and compact tags */
.slot-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.slot-card {
  display: flex;
  min-width: 0;
  min-height: 220px;
  padding: 20px 16px;
  overflow: hidden;
  flex-direction: column;
  align-items: flex-start;
}

.slot-card::after {
  position: absolute;
  right: -36px;
  bottom: -36px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 255, .18), transparent 68%);
  content: "";
}

.slot-card h3 {
  margin: 14px 0 8px;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.25;
}

.slot-card p { font-size: .8rem; }

.card-provider {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  padding: 5px 10px;
  overflow: hidden;
  border: 1px solid rgba(199, 146, 234, .28);
  border-radius: var(--radius-pill);
  background: rgba(139, 92, 246, .12);
  color: var(--neon-purple);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .045em;
  line-height: 1;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.card-tag {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  padding: 5px 9px;
  border-radius: var(--radius-pill);
  background: rgba(59, 130, 255, .11);
  color: #91baff;
  font-size: .66rem;
  font-weight: 750;
}

/* Promotion cards */
.promo-grid { counter-reset: promos; }

.promo-card {
  min-height: 205px;
  overflow: hidden;
  counter-increment: promos;
}

.promo-card::before {
  position: absolute;
  top: -12px;
  right: 14px;
  color: rgba(199, 146, 234, .06);
  font-size: 6.8rem;
  font-weight: 900;
  line-height: 1;
  content: counter(promos, decimal-leading-zero);
}

.promo-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-orange), var(--neon-yellow), transparent 76%);
  content: "";
}

.promo-card-body {
  position: relative;
  z-index: 1;
  padding: 28px 24px;
}

.promo-card h3 {
  max-width: 85%;
  margin: 0 0 12px;
  color: var(--gold-light);
  font-size: 1.24rem;
  line-height: 1.25;
}

.promo-value {
  display: block;
  margin-block: 10px;
  background: linear-gradient(135deg, var(--neon-yellow), var(--neon-orange));
  background-clip: text;
  color: transparent;
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  font-weight: 900;
  line-height: 1;
}

/* Providers */
.provider-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.provider-card {
  display: grid;
  min-height: 88px;
  padding: 16px 10px;
  place-items: center;
  color: var(--text);
  font-size: .85rem;
  font-weight: 800;
  text-align: center;
}

.provider-card:hover {
  color: #fff;
  text-shadow: 0 0 14px rgba(199, 146, 234, .4);
}

.provider-card img {
  width: auto;
  max-width: 100%;
  max-height: 52px;
  object-fit: contain;
  filter: brightness(1.2) contrast(1.05) drop-shadow(0 2px 8px rgba(0,0,0,.4));
}

/* Logos that need to be bigger */
.provider-card img.logo-lg {
  max-height: 72px;
}

/* Logos with light background - no brightness boost needed */
.provider-card img.logo-bg {
  filter: none;
  border-radius: 8px;
}

/* VIP */
.vip-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0, rgba(139, 92, 246, .2), transparent 36rem),
    linear-gradient(180deg, rgba(30, 0, 100, .2), rgba(10, 10, 15, .2));
}

.vip-tiers { align-items: stretch; }

.vip-tier {
  min-height: 175px;
  padding: 28px 20px;
  text-align: center;
}

.vip-tier strong,
.vip-tier .tier-name {
  display: block;
  margin-bottom: 12px;
  color: var(--text);
  font-size: 1.28rem;
  font-weight: 900;
}

.vip-tier:nth-child(1) strong { color: #cd7f32; }
.vip-tier:nth-child(2) strong { color: #d6d8df; }
.vip-tier:nth-child(3) strong { color: var(--neon-yellow); }
.vip-tier:nth-child(4) strong { color: #88bcff; }

/* The featured/Gold level stays visibly selected without requiring extra markup. */
.vip-tier:nth-child(3),
.vip-tier.is-active,
.vip-tier.active,
.vip-tier[aria-current="true"] {
  border-color: rgba(255, 214, 0, .64);
  background: linear-gradient(145deg, rgba(64, 50, 21, .82), rgba(28, 24, 37, .98));
  box-shadow: 0 18px 42px rgba(0, 0, 0, .42), 0 0 28px rgba(255, 214, 0, .13), inset 0 1px rgba(255, 236, 174, .14);
  transform: perspective(1000px) translateY(-6px);
}

.vip-tier:nth-child(3)::before,
.vip-tier.is-active::before,
.vip-tier.active::before,
.vip-tier[aria-current="true"]::before {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon-yellow);
  box-shadow: 0 0 12px var(--neon-yellow);
  content: "";
}

/* Affiliate, payments and trust */
.affiliate-section {
  background:
    linear-gradient(120deg, rgba(30, 0, 100, .22), rgba(74, 0, 224, .08)),
    var(--surface);
}

.affiliate-feature {
  min-height: 154px;
  padding: 24px;
}

.affiliate-feature strong,
.affiliate-feature h4,
.payment-card strong,
.trust-item strong,
.trust-item h3 {
  display: block;
  margin: 0 0 8px;
  color: var(--text);
  font-size: 1.04rem;
  font-weight: 820;
}

.payment-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.payment-card {
  min-height: 160px;
  padding: 22px 16px;
  text-align: center;
}

.payment-card img {
  display: block;
  width: auto;
  max-width: 120px;
  height: 48px;
  margin: 0 auto 14px;
  object-fit: contain;
  filter: brightness(1.2) contrast(1.05) drop-shadow(0 2px 8px rgba(0,0,0,.4));
}

/* Payment logos that need to be bigger */
.payment-card img.logo-lg {
  max-width: 140px;
  height: 60px;
}

/* Payment logos with light background */
.payment-card img.logo-bg {
  filter: none;
  border-radius: 8px;
}

.payment-card::before {
  display: block;
  width: 28px;
  height: 3px;
  margin: 0 auto 18px;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--blue), var(--neon-purple));
  box-shadow: 0 0 12px rgba(59, 130, 255, .46);
  content: "";
}

.trust-item {
  min-height: 190px;
  padding: 28px 22px;
  text-align: center;
}

.trust-number {
  display: block;
  margin-bottom: 8px;
  color: var(--neon-yellow);
  font-size: clamp(2rem, 6vw, 3.25rem);
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 0 18px rgba(255, 214, 0, .22);
}

/* Testimonials */
.testimonial-card {
  padding: 10px;
  overflow: hidden;
}

.testimonial-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: calc(var(--radius-md) - 7px);
  object-fit: cover;
}

/* FAQ details / summary */
.faq-section {
  width: min(100%, 920px);
  margin-inline: auto;
}

.faq-item,
.faq-section > details {
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(26, 26, 46, .82);
  box-shadow: 0 8px 22px rgba(0, 0, 0, .2);
  transition: border-color .25s ease, box-shadow .25s ease, background-color .25s ease;
}

.faq-item details {
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.faq-item:hover,
.faq-section > details:hover,
.faq-item:has(details[open]),
.faq-section > details[open] {
  border-color: rgba(139, 92, 246, .52);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .3), 0 0 20px rgba(139, 92, 246, .08);
}

.faq-item summary,
.faq-section summary {
  position: relative;
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 54px 18px 20px;
  color: var(--text);
  font-weight: 760;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
  transition: color .2s ease, background-color .2s ease;
}

.faq-item summary::-webkit-details-marker,
.faq-section summary::-webkit-details-marker { display: none; }

.faq-item summary::after,
.faq-section summary::after {
  position: absolute;
  top: 50%;
  right: 20px;
  display: grid;
  width: 25px;
  height: 25px;
  border: 1px solid rgba(199, 146, 234, .28);
  border-radius: 50%;
  background: rgba(139, 92, 246, .09);
  color: var(--neon-purple);
  font-size: 1rem;
  line-height: 1;
  place-items: center;
  transform: translateY(-50%);
  transition: transform .3s var(--ease-out), background-color .2s ease;
  content: "+";
}

.faq-item details[open] summary,
.faq-section details[open] summary {
  background: rgba(139, 92, 246, .08);
  color: #fff;
}

.faq-item details[open] summary::after,
.faq-section details[open] summary::after {
  background: rgba(139, 92, 246, .2);
  transform: translateY(-50%) rotate(45deg);
}

.faq-item summary h3 {
  margin: 0;
  font: inherit;
}

.faq-item details > p,
.faq-answer {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
  font-size: .94rem;
}

.faq-answer a,
.faq-item details > p a { text-decoration: underline; text-underline-offset: 3px; }

/* Blog */
.blog-card {
  min-height: 180px;
  padding: 28px 24px;
  overflow: hidden;
}

.blog-card::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: linear-gradient(var(--neon-red), var(--neon-orange), var(--neon-yellow));
  box-shadow: 0 0 14px rgba(255, 109, 0, .4);
  content: "";
}

.blog-card h3 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 1.22rem;
  line-height: 1.25;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  width: min(calc(100% - 32px), var(--max-width));
  margin-inline: auto;
  padding-block: 22px 8px;
  color: var(--muted);
  font-size: .82rem;
}

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

.breadcrumb a {
  color: var(--neon-purple);
  transition: color .2s ease;
}

.breadcrumb a:hover { color: #fff; }

.breadcrumb li:not(:last-child)::after {
  margin-left: 8px;
  color: #686477;
  content: "/";
}

/* Footer */
.footer {
  position: relative;
  padding: 68px 0 26px;
  border-top: 1px solid var(--border);
  background:
    radial-gradient(circle at 20% 0, rgba(74, 0, 224, .14), transparent 25rem),
    #08080d;
}

.footer::before {
  position: absolute;
  top: -1px;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--blue), transparent);
  opacity: .5;
  content: "";
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-col h4 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: .9rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.footer-col p,
.footer-col a,
.footer-contact {
  margin: 0;
  color: var(--muted);
  font-size: .84rem;
}

.footer-col a:hover { color: var(--neon-purple); }

.footer-logo {
  width: auto;
  height: 48px;
  margin-bottom: 8px;
}

.footer-warn {
  margin-top: 38px;
  padding: 16px 18px;
  border: 1px solid rgba(212, 168, 67, .25);
  border-radius: var(--radius-sm);
  background: rgba(212, 168, 67, .055);
  color: #bcb5a4;
  font-size: .78rem;
}

.footer-warn p,
.footer-copyright p { margin: 0; }

.footer-copyright {
  margin-top: 22px;
  color: #716e78;
  font-size: .76rem;
  text-align: center;
}

/* Scroll progress and reveal animation */
.scroll-progress {
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  border-radius: 0 4px 4px 0;
  background: linear-gradient(90deg, var(--neon-yellow), var(--neon-orange), var(--neon-red), var(--primary), var(--blue));
  box-shadow: 0 0 12px rgba(139, 92, 246, .85);
  pointer-events: none;
}

.fade-in {
  animation: fade-in-up .75s var(--ease-out) both;
  animation-delay: var(--fade-delay, 0ms);
}

@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Content-page system used by about, contact, registration and standalone FAQ. */
.site {
  width: min(100%, var(--max-width));
  min-height: 100vh;
  margin-inline: auto;
  background: rgba(10, 10, 15, .58);
  box-shadow: 0 0 80px rgba(0, 0, 0, .26);
}

.top {
  position: sticky;
  z-index: 900;
  top: 0;
  display: flex;
  height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-inline: 16px;
  border-bottom: 1px solid rgba(199, 146, 234, .14);
  background: rgba(10, 10, 15, .78);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.brand img {
  width: auto;
  height: 40px;
}

.top nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.top nav a {
  padding: 7px 8px;
  border-radius: var(--radius-pill);
  color: var(--muted);
  font-size: .76rem;
  font-weight: 700;
}

.top nav a:hover {
  background: rgba(139, 92, 246, .12);
  color: #fff;
}

.site .breadcrumb { width: min(calc(100% - 32px), 1000px); }

.site .hero {
  min-height: 0;
  margin-top: 8px;
  padding: clamp(54px, 9vw, 92px) 20px;
  border-block: 1px solid rgba(199, 146, 234, .12);
  border-radius: 0;
}

.site .hero h1 {
  font-size: clamp(2.1rem, 7vw, 4.25rem);
}

.site .hero p { margin-bottom: 0; }

.eyebrow {
  display: inline-flex;
  max-width: 100%;
  margin-bottom: 12px;
  padding: 6px 11px;
  border: 1px solid rgba(199, 146, 234, .28);
  border-radius: var(--radius-pill);
  background: rgba(139, 92, 246, .1);
  color: var(--neon-purple);
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: normal;
}

.content {
  width: min(calc(100% - 32px), 900px);
  margin-inline: auto;
}

.content > h2 {
  margin-top: 1.8em;
  font-size: clamp(1.55rem, 4vw, 2.25rem);
}

.content > h2:first-child { margin-top: 0; }

.prose > p,
.prose > ul,
.content > p:not(.lead) {
  color: #c3bfc2;
  text-wrap: pretty;
}

.prose > ul {
  padding-left: 1.2rem;
}

.prose li + li { margin-top: 8px; }

.highlight {
  margin-block: 28px;
  padding: 18px 20px;
  border: 1px solid rgba(212, 168, 67, .32);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  background: linear-gradient(90deg, rgba(212, 168, 67, .1), rgba(26, 26, 46, .65));
  color: #c9c4b9;
}

.highlight strong { color: var(--gold-light); }

.content .grid {
  margin-top: 26px;
}

.game-shot {
  margin: 28px 0 34px;
  padding: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(26, 26, 46, .72);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .32);
}

.game-shot img {
  display: block;
  width: 100%;
  max-height: 520px;
  border-radius: calc(var(--radius-lg) - 9px);
  object-fit: cover;
}

.game-shot figcaption {
  padding: 10px 8px 2px;
  color: #88838c;
  font-size: .75rem;
  text-align: center;
}

.card {
  padding: 24px;
}

.card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 1.04rem;
}

.card.wide { grid-column: 1 / -1; }
.site-note { color: #817d87; font-size: .8rem; }

.step-list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
  counter-reset: steps;
}

.step-card {
  min-height: 150px;
  padding: 24px 22px 24px 76px;
  counter-increment: steps;
}

.step-card::before {
  position: absolute;
  top: 24px;
  left: 20px;
  display: grid;
  width: 40px;
  height: 40px;
  border-radius: 13px;
  background: linear-gradient(145deg, var(--primary), var(--deep-purple));
  box-shadow: 0 8px 20px rgba(74, 0, 224, .28);
  color: #fff;
  font-weight: 900;
  place-items: center;
  content: counter(steps, decimal-leading-zero);
}

.step-card h3 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.3;
}

.data-table {
  width: 100%;
  margin-block: 24px 30px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-collapse: separate;
  border-radius: var(--radius-sm);
  border-spacing: 0;
  background: rgba(26, 26, 46, .72);
  font-size: .82rem;
}

.data-table th,
.data-table td {
  padding: 12px 10px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

.data-table th:last-child,
.data-table td:last-child { border-right: 0; }
.data-table tbody tr:last-child td { border-bottom: 0; }

.data-table th {
  background: rgba(139, 92, 246, .1);
  color: var(--neon-purple);
  font-weight: 800;
}

.data-table td { color: #c1bdc2; }

.cta-panel {
  width: min(calc(100% - 32px), 900px);
  margin: 20px auto 60px;
  padding: clamp(28px, 6vw, 48px) 20px;
  border: 1px solid rgba(212, 168, 67, .33);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 50% 0, rgba(255, 214, 0, .12), transparent 60%),
    linear-gradient(145deg, rgba(42, 35, 17, .9), rgba(26, 26, 46, .92));
  box-shadow: 0 20px 45px rgba(0, 0, 0, .32);
  text-align: center;
}

.cta-panel h2 {
  margin: 0;
  font-size: clamp(1.45rem, 4vw, 2.2rem);
  line-height: 1.2;
}

.cta-panel p {
  max-width: 620px;
  margin: 12px auto 22px;
  color: var(--muted);
}

.micro {
  display: block;
  margin-top: 15px;
  color: #88838c;
  font-size: .72rem;
}

.related-links {
  width: min(calc(100% - 32px), 900px);
  margin: 0 auto 46px;
  padding: 22px;
  border-top: 1px solid var(--border);
}

.related-links h3 {
  margin: 0 0 12px;
  font-size: .92rem;
}

.related-links ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.related-links a {
  display: block;
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  color: var(--muted);
  font-size: .78rem;
}

.related-links a:hover {
  border-color: rgba(139, 92, 246, .5);
  color: var(--neon-purple);
}

.site > footer {
  padding: 34px 16px;
  border-top: 1px solid var(--border);
  background: #08080d;
  color: #75717a;
  font-size: .76rem;
  text-align: center;
}

.footnav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-bottom: 20px;
}

.footnav a { color: var(--muted); }
.footnav a:hover { color: var(--neon-purple); }
.warning { color: #8f8775; }

/* 480px → 1200px responsive progression */
@media (min-width: 480px) {
  .container { width: min(calc(100% - 40px), var(--max-width)); }
  .navbar-inner { width: min(calc(100% - 32px), var(--max-width)); }
  .navbar-cta { display: inline-flex; }
  .hero-cta-group { flex-direction: row; width: auto; }
  .slot-card { padding: 22px 20px; }
  .provider-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 640px) {
  .card-grid,
  .promo-grid,
  .affiliate-features,
  .trust-grid,
  .blog-grid,
  .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .slot-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .vip-tiers { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .testimonial-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .navbar-links a { padding-inline: 12px; font-size: .8rem; }
}

@media (min-width: 768px) {
  .navbar-inner { gap: 22px; }
  .navbar-links { justify-content: center; }
  .hero-content { padding-block: 72px 82px; }
  .provider-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .payment-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .testimonial-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1.35fr repeat(3, 1fr); }
  .site .breadcrumb { width: min(calc(100% - 64px), 1000px); }
  .content { width: min(calc(100% - 64px), 900px); }
  .top { padding-inline: 32px; }
  .top nav a { padding-inline: 12px; font-size: .8rem; }
  .data-table { font-size: .9rem; }
  .data-table th,
  .data-table td { padding: 15px 14px; }
}

@media (min-width: 1024px) {
  .card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .slot-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .promo-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .vip-tiers { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .affiliate-features { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .trust-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .navbar-links a { padding-inline: 15px; }
}

@media (min-width: 1200px) {
  .container { width: min(calc(100% - 64px), var(--max-width)); }
  .game-card { min-height: 210px; padding: 34px 30px; }
  .promo-card-body { padding: 32px 28px; }
  .footer { padding-top: 80px; }
}

@media (max-width: 479px) {
  .hero h1 { font-size: clamp(1.72rem, 7.2vw, 2rem); }
  .navbar-links a:nth-child(n + 5) { display: none; }
  .navbar-logo img { height: 34px; }
  .slot-card:hover,
  .payment-card:hover { transform: perspective(1000px) translateY(-5px); }
  .data-table { display: block; overflow-x: auto; white-space: nowrap; }
}

@media (hover: none) {
  :is(.game-card, .slot-card, .promo-card, .provider-card, .vip-tier, .affiliate-feature, .payment-card, .trust-item, .testimonial-card, .blog-card, .card, .step-card):hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .fade-in { opacity: 1; transform: none; }
}
