* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@font-face {
  font-family: "Abril Fatface";
  src: url("fonts/AbrilFatface-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: url("fonts/Roboto-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: url("fonts/Roboto-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: url("fonts/Roboto-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
.section-title,
h1,
h2,
h3,
.bonus-card h3,
.about-subtitle,
.timer-title,
.hero-title,
.logo,
.screen-brand {
  font-family: "Abril Fatface", serif;
}
:root {
  --header-bg: linear-gradient(90deg, #0f0f0f 0%, #1a1a1a 50%, #0a0a0a 100%);

  --background: #0f0f0f;
  --foreground: #f9f6ee;
  --primary: #ffd700;
  --primary-hover: #e6c200;
  --text-muted: #cfcfcf;
  --button-bg: #ffd700;
  --button-text: #0f0f0f;
  --button-bg-hover: #e6c200;
  --card-bg: #1a1a1a;
  --card-border: #ffd700;
  --link: #facc15;
  --accent: #fbbf24;

  --gradient-gold-glow: linear-gradient(
    90deg,
    #ffd700 0%,
    #facc15 50%,
    #fbbf24 100%
  );
  --gradient-dark-gold: linear-gradient(135deg, #0f0f0f 0%, #3f3f3f 100%);
  --gradient-sparkle: radial-gradient(
    circle,
    #ffd700 0%,
    #b8860b 40%,
    #0a0a0a 100%
  );
  --gradient-glow-border: linear-gradient(120deg, #e3b80b, #e1b608, #f97316);
  --gradient-rich-glow: linear-gradient(
    90deg,
    #ffd700 0%,
    #facc15 50%,
    #fbbf24 100%
  );
  --overlay-earn-banner: linear-gradient(
    90deg,
    rgba(255, 215, 0, 0.3) 0%,
    rgba(184, 134, 11, 0.5) 40%,
    rgba(10, 10, 10, 0.85) 100%
  );

  --overlay-hero-partner: linear-gradient(
    180deg,
    rgba(57, 50, 6, 0.15) 0%,
    rgba(80, 59, 6, 0.3) 40%,
    rgba(10, 10, 10, 0.9) 100%
  );
}
body {
  font-family: "Roboto", sans-serif;
  background-color: var(--background);
  font-weight: 400;
  color: var(--foreground);
  line-height: 1.6;
}
html {
  scroll-behavior: smooth;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  background: var(--header-bg);
  color: var(--foreground);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  border-bottom: 1px solid var(--primary);
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.logo {
  font-weight: 700;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: baseline;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s ease, text-shadow 0.3s ease;
  font-size: 1.3rem;
}

.logo-part {
  background: var(--gradient-rich-glow);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.gacor {
  font-size: 1.3rem;
  font-weight: 800;
}

.max {
  font-size: 1rem;
  font-weight: 700;
  background: var(--accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bet {
  font-size: 0.6rem;
  color: #a9b0a9;
  margin-left: 2px;
}

.logo:hover {
  transform: scale(1.05);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: var(--gradient-rich-glow);
  transition: width 0.35s ease;
  border-radius: 2px;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.language-switcher {
  display: flex;
  gap: 0.5rem;
}

.lang-btn {
  background-color: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.875rem;
}

.lang-btn:hover {
  background-color: var(--primary);
  color: var(--button-text);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--foreground);
  transition: 0.3s ease;
}

@media (max-width: 768px) {
  .main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--header-bg);
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 1rem;
    display: none;
  }

  .main-nav.active {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
  }

  .language-switcher {
    margin-top: 1rem;
  }

  .burger {
    display: flex;
  }
  .gacor {
    font-size: 1rem;
  }

  .max {
    font-size: 0.8rem;
  }

  .bet {
    font-size: 0.4rem;
  }
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 18px;
  }
  .hero-title .highlight {
    font-size: 34px;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 16px;
    text-align: center;
    justify-content: center;
  }
  .hero-title .highlight {
    font-size: 28px;
  }
}
.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.hero {
  position: relative;
  padding: clamp(60px, 10vw, 120px) 0;
  color: var(--foreground);
  overflow: hidden;
  background: #0a0a0a;
  --hero-bg: url("/images/hero.jpg");
}

.hero[data-bg="royal"] {
  --hero-bg: url("images//hero.jpg");
}
/* .hero[data-bg="coins"] {
  --hero-bg: url("/images/hero-coins.jpg");
}
.hero[data-bg="roulette"] {
  --hero-bg: url("/images/hero-roulette.jpg");
} */

.hero__bg {
  position: absolute;
  inset: -3%;
  background: center / cover no-repeat;
  background-image: var(--hero-bg);
  filter: blur(0px) saturate(1.08);
  transform: scale(1.06);
  z-index: 0;
  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 1) 70%,
    rgba(0, 0, 0, 0.7) 90%,
    rgba(0, 0, 0, 0.5) 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 1) 70%,
    rgba(0, 0, 0, 0.7) 90%,
    rgba(0, 0, 0, 0.5) 100%
  );
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      80% 100% at 50% 0%,
      rgba(255, 215, 0, 0.12) 0%,
      rgba(255, 215, 0, 0) 70%
    ),
    radial-gradient(
      60% 80% at 20% 70%,
      rgba(34, 197, 94, 0.12) 0%,
      rgba(34, 197, 94, 0) 65%
    ),
    linear-gradient(
      180deg,
      rgba(57, 50, 6, 0.15) 0%,
      rgba(80, 59, 6, 0.35) 40%,
      rgba(10, 10, 10, 0.9) 100%
    );
  opacity: 0.95;
  pointer-events: none;
  z-index: 1;
}

.hero__bg::before {
  content: "";
  position: absolute;
  inset: -10%;
  background: radial-gradient(
      40% 40% at 30% 30%,
      rgba(39, 37, 31, 0.602) 0%,
      rgba(61, 60, 57, 0.445) 70%
    ),
    radial-gradient(
      50% 50% at 80% 60%,
      rgba(34, 197, 94, 0.18) 0%,
      rgba(34, 197, 94, 0) 70%
    );
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 2;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
  text-align: left;
}

.hero__copy {
  z-index: 1;
}

.hero__badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.25);
  color: var(--foreground);
  border: 1px solid rgba(255, 215, 0, 0.35);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25),
    inset 0 0 0 999px rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(6px);
  font-weight: 600;
  font-size: 0.95rem;
}

.badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}

.hero__title {
  position: relative;
  display: grid;
  gap: 12px;
  line-height: 1.2;
  font-weight: 800;
  text-align: left;
}

.hero__title-main {
  position: relative;
  font-size: clamp(28px, 5vw, 52px);
}

.hero__brand {
  color: var(--accent);
  text-shadow: 0 0 12px rgba(255, 217, 0, 0.226), 1px 1px 0 rgba(0, 0, 0, 0.8),
    2px 2px 3px rgba(0, 0, 0, 0.6), -1px -1px 0 rgba(255, 255, 255, 0.297);
}

.hero__title-sub {
  position: relative;
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 700;
  letter-spacing: 0.5px;
  color: transparent;
}
.hero__title-sub::before {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #22c55e, #16a34a, #22c55e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__subtitle {
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  max-width: 48ch;
  margin-bottom: 24px;
}

.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: 14px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease,
    color 0.2s ease;
}

.btn--primary {
  background: var(--gradient-rich-glow);
  color: var(--button-text);
  box-shadow: 0 14px 30px rgba(255, 215, 0, 0.22),
    0 2px 0 rgba(0, 0, 0, 0.25) inset;
}

.btn--primary:hover {
  transform: translateY(-2px);
}

.btn--outline {
  color: var(--foreground);
  background: rgba(0, 0, 0, 0.25);
  border: 2px solid var(--accent);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.btn--outline:hover {
  background: rgba(0, 0, 0, 0.35);
  transform: translateY(-2px);
}

.btn--block {
  width: 100%;
}

.hero__card {
  position: relative;
  border-radius: 22px;
  background: var(--gradient-dark-gold);
  border: 1px solid rgba(255, 217, 0, 0.763);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45),
    0 0 0 2px rgba(255, 255, 255, 0.02) inset, 0 0 40px rgba(255, 215, 0, 0.12);
  padding: clamp(20px, 3.2vw, 28px);
  color: #fff;
}

.hero-card__sum {
  font-size: clamp(28px, 3.8vw, 36px);
  font-weight: 900;
  margin-bottom: 6px;
  text-align: center;
  text-shadow: 1px 1px 0 #000, 2px 2px 0 var(--accent),
    3px 3px 6px rgba(0, 0, 0, 0.09);
}

.hero-card__label {
  opacity: 0.85;
  margin-bottom: 18px;
  text-align: center;
  text-transform: uppercase;
}

.hero-card__stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.hero-stat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.hero-stat__text {
  opacity: 0.95;
  text-align: center;
}
.wrap-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70%;
  margin: 0 auto;
}
/* Адаптив */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }
  .hero__card {
    max-width: 520px;
    margin: 8px 0 0;
  }
}

@media (max-width: 640px) {
  .badge {
    font-size: 0.85rem;
    padding: 8px 12px;
  }
  .btn {
    padding: 12px 16px;
    border-radius: 12px;
  }

  .hero__title {
    text-align: center;
  }
  .hero__badges {
    align-items: center;
    justify-content: center;
  }
  .hero__cta {
    justify-content: center;
  }

  .hero__subtitle {
    text-align: center;
  }
  .hero__bg {
    filter: blur(4px) saturate(1.08);
  }
  .wrap-btn {
    width: 100%;
  }
  .hero-card__stats {
    flex-direction: column;
    gap: 20px;
  }
}
.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--foreground);
}
.section-subtitle {
  max-width: 800px;
  margin: 0.8rem auto 2rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted);
  text-align: center;
  padding: 0 1rem;
}

.section-subtitle strong {
  color: var(--primary);
  font-weight: 700;
}

@media (max-width: 992px) {
  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 600px) {
  .section-subtitle {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.2rem;
    text-align: left;
    padding: 0;
  }
}

.bonuses,
.games-section,
.games-section {
  padding: 80px 20px;
}

.highlight {
  color: #ffd700;
  font-weight: bold;
}

.premium-badge {
  text-decoration: underline;

  font-weight: bold;
}
.about-section {
  padding: 100px 20px;

  overflow: hidden;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.about-subtitle {
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  background: var(--gradient-rich-glow);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.75;
}

.about-list {
  list-style: none;
  padding-left: 0;
  margin: 30px auto 40px;
  max-width: 600px;
  text-align: left;
  font-size: 1rem;
  color: var(--foreground);
}

.about-list li {
  margin-bottom: 14px;
  padding-left: 1.6rem;
  position: relative;
  font-weight: 500;
}

.about-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.about-highlight {
  margin-top: 24px;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary);
  background: var(--gradient-rich-glow);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  border-bottom: 2px solid var(--primary);
}

@media (max-width: 768px) {
  .about-section {
    padding: 60px 16px;
    border-radius: 16px;
  }

  .about-subtitle {
    font-size: 1.3rem;
    margin-top: 20px;
  }

  .about-text,
  .about-highlight {
    font-size: 0.95rem;
  }

  .about-list {
    font-size: 0.9rem;
    margin: 20px auto 30px;
  }
}
.site-footer {
  background: var(--background);
  color: var(--text-muted);
  padding: 3rem 1rem 1.5rem;
  border-top: 2px solid rgba(255, 200, 80, 0.2);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-title {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1rem;
  background: var(--gradient-rich-glow);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.footer-contacts ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contacts li,
.footer-legal p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.footer-contacts a {
  color: var(--foreground);
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.footer-contacts a:hover {
  color: var(--primary);
  text-shadow: 0 0 6px rgba(255, 180, 80, 0.5);
}

.footer-legal {
  max-width: 400px;
  font-size: 0.85rem;
  line-height: 1.4;
}

.footer-bottom {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.8rem;
  border-top: 1px solid rgba(255, 200, 80, 0.15);
  padding-top: 1rem;
  color: var(--foreground);
}
.bonus-partner {
  background: var(--background);
  padding: 60px 20px;
  text-align: center;
  color: var(--foreground);
  position: relative;
}

.bonus-header .bonus-title {
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-rich-glow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.bonus-header .bonus-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.bonus-amount.bonus-amount--deposit {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  padding: 0.4rem 1rem;
  margin-bottom: 12px;
  border-radius: 10px;
  background: var(--gradient-glow-border);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.bonus-card .bonus-reward {
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
}

.bonus-card .bonus-reward span {
  color: var(--primary-hover);
  font-weight: 700;
}

.bonus-conditions {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
  background: var(--card-bg);
  border-radius: 16px;
  padding: 30px 25px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
}

.conditions-title {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--foreground);
}

.conditions-list {
  margin: 0 0 25px 20px;
  padding: 0;
  color: var(--foreground);
}

.conditions-list li {
  margin-bottom: 10px;
  line-height: 1.6;
  color: var(--foreground);
}
.conditions-list li a {
  color: var(--primary);
}
.btn-telegram {
  display: inline-block;
  background: var(--button-bg);
  color: var(--button-text);
  font-weight: bold;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease;
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .btn-telegram {
    padding: 10px 22px;
    font-size: 0.95rem;
  }
}

@media (max-width: 560px) {
  .btn-telegram {
    padding: 10px 18px;
    font-size: 0.9rem;
  }
  .bonus-header .bonus-title {
    font-size: 1.4rem;
  }
  .bonus-amount.bonus-amount--deposit {
    font-size: 0.7rem;
  }
  .bonus-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 420px) {
  .btn-telegram {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 12px;
    font-size: 1rem;
  }
  .conditions-title {
    font-size: 1.2rem;
    text-align: center;
  }
  .conditions-list li {
    font-size: 14px;
  }

  .bonus-subtitle {
    font-size: 0.5rem;
    color: var(--text-muted);
    margin-bottom: 40px;
  }
  .bonus-card .bonus-reward {
    font-size: 0.7rem;
  }
}
.btn-telegram:hover {
  background: var(--button-bg-hover);
}

.bonus-terms {
  margin-top: 60px;
  padding: 30px 20px;
  border-radius: 16px;
  background: var(--gradient-rich-glow);
  box-shadow: 0 0 12px rgba(254, 196, 22, 0.15);
}

.terms-title {
  color: var(--background);
  font-size: 20px;
  text-align: center;
  margin-bottom: 20px;
  font-size: 2rem;
}

.terms-grid {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  text-align: center;
}

.term-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 180px;
  gap: 10px;
}

.term-item img {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 0 6px rgba(246, 201, 71, 0.4));
}

.term-item strong {
  color: var(--background);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
}

.term-item p {
  font-size: 14px;
  color: var(--button-text);
  margin: 0;
}
.term-item img {
  filter: invert(1);
}
@media (max-width: 768px) {
  .terms-grid {
    flex-direction: column;
    align-items: center;
  }

  .term-item {
    width: 100%;
  }
  .terms-title {
    font-size: 1.3rem;
  }
}
.partner-contact {
  text-align: center;
  margin: 0 auto;
  margin-top: 40px;
}

.contact-heading {
  font-size: 20px;
  color: var(--text-main);
  margin-bottom: 10px;
}

.contact-subtext {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 20px;
}

.contact-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--card-border);
  color: var(--foreground);
  padding: 10px 18px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  background: var(--primary);
  text-decoration: none;
}

.contact-btn:hover {
  background: var(--primary-hover);
}

.btn-icon {
  width: 16px;
  height: 16px;
  filter: invert(1);
}

/* base container (если ещё нет) */
.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}

/* banner */
.cta-banner {
  position: relative;
  padding: clamp(48px, 6.5vw, 84px) 0;

  text-align: center;
}

.cta-banner__inner {
  position: relative;
  z-index: 1;
}

.cta-banner__title {
  position: relative;
  font-size: clamp(32px, 4.4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: transparent;
}

.cta-banner__title::before {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  background: var(--gradient-glow-border);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  z-index: 1;
}

.cta-banner__title::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: rgba(255, 255, 255, 0.08);
  z-index: 0;
}
.cta-banner__subtitle {
  margin: 10px auto 22px;
  color: rgba(255, 255, 255, 0.92);
  max-width: 70ch;
  line-height: 1.6;
}

.cta-banner__actions {
  display: inline-grid;
  grid-auto-flow: column;
  gap: 14px;
  margin-bottom: clamp(18px, 3vw, 26px);
}

/* buttons reuse root vars */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn--primary {
  background: var(--gradient-gold-glow);
  color: #222;
  box-shadow: 0 18px 36px rgba(255, 215, 0, 0.22);
}
.btn--primary:hover {
  transform: translateY(-2px);
}

.btn--outline {
  color: #fff;
  background: transparent;
  border: 2px solid var(--accent);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}
.btn--outline:hover {
  background: rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}

.cta-banner__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 18px;
  margin-top: 6px;
}

.mini-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 215, 0, 0.28);
  color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  font-weight: 600;
  font-size: 0.95rem;
}

/* responsive */
@media (max-width: 680px) {
  .cta-banner__actions {
    grid-auto-flow: row;
  }
  .btn {
    width: 100%;
    justify-content: center;
  }
}

.promo-ticker {
  --dur: 22s;
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-block: 12px;
  background: radial-gradient(
      120% 140% at 100% 0%,
      rgba(255, 255, 255, 0.06),
      transparent 60%
    ),
    var(--gradient-rich-glow);
  border-bottom: 1px solid rgba(246, 201, 71, 0.25);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  isolation: isolate;
}

.promo-ticker::before,
.promo-ticker::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 55px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(44, 26, 16, 0.22),
    rgba(44, 26, 16, 0)
  );
}
.promo-ticker::after {
  left: auto;
  right: 0;
  background: linear-gradient(
    270deg,
    rgba(44, 26, 16, 0.14),
    rgba(44, 26, 16, 0)
  );
}

.promo-ticker__track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: ticker-loop var(--dur) linear infinite;
}

.promo-ticker__row {
  display: inline-flex;
  align-items: center;
  gap: clamp(18px, 2vw, 28px);
  white-space: nowrap;
  padding-inline: clamp(16px, 3vw, 28px);
}

.promo-ticker__item {
  font-weight: 800;
  font-size: clamp(1rem, 0.8rem + 0.75vw, 1.35rem);
  letter-spacing: 0.6px;
  color: var(--background);
  text-transform: uppercase;
  text-shadow: 0 10px 26px rgba(8, 53, 19, 0.288);
}

.promo-ticker__sep {
  opacity: 0.9;
  color: var(--accent);
}

@keyframes ticker-loop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (hover: hover) {
  .promo-ticker:hover .promo-ticker__track {
    animation-play-state: paused;
  }
}

@media (prefers-reduced-motion: reduce) {
  .promo-ticker__track {
    animation-duration: 999s;
  }
}
.neon-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  top: -10px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.8;
  filter: drop-shadow(0 0 6px var(--primary));
  animation: floatDown linear forwards;
}

@keyframes floatDown {
  to {
    transform: translateY(120vh);
    opacity: 0;
  }
}

.trust {
  padding: clamp(56px, 7vw, 96px) 0;
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}
.trust__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.trust__inner {
  position: relative;
  z-index: 1;
}

.trust__header {
  text-align: center;
  margin-bottom: clamp(28px, 4vw, 44px);
}
.trust__title {
  font-weight: 800;
  font-size: clamp(28px, 4.2vw, 40px);
  letter-spacing: -0.02em;

  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}
.trust__subtitle {
  max-width: 70ch;
  margin: 10px auto 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

/* payments grid */
.trust__payments {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(14px, 2.8vw, 22px);
  margin-bottom: clamp(28px, 4.2vw, 44px);
}
.paycard {
  display: grid;
  grid-template-rows: auto 1fr;
  align-items: center;
  gap: 8px;
  padding: 18px;
  border-radius: 16px;
  background: linear-gradient(
    180deg,
    rgba(15, 15, 15, 0.9),
    rgba(10, 10, 10, 0.95)
  );
  border: 1px solid rgba(255, 215, 0, 0.22);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
  text-align: center;
}
.paycard__icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 6px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--gradient-gold-glow);
  color: #222;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35);
}
.paycard__title {
  font-weight: 700;
  color: #fff;
}

/* trust badges */
.trust__badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 3vw, 24px);
}
.badgecard {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: center;
  padding: clamp(18px, 2.6vw, 22px);
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(12, 12, 12, 0.85),
    rgba(12, 12, 12, 0.95)
  );
  border: 1px solid rgba(255, 215, 0, 0.26);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.02) inset;
}
.badgecard__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--gradient-gold-glow);
  color: #222;
  font-size: 24px;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.35);
}
.badgecard__title {
  font-weight: 800;
  color: #ffd700;
  margin-bottom: 4px;
  font-size: 1.05rem;
}
.badgecard__text {
  color: rgba(255, 255, 255, 0.88);
}

/* responsive */
@media (max-width: 1100px) {
  .trust__payments {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 680px) {
  .trust__payments {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust__badges {
    grid-template-columns: 1fr;
  }
  .badgecard {
    grid-template-columns: 48px 1fr;
  }
  .badgecard__icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
}
@media (max-width: 450px) {
  .trust__payments {
    grid-template-columns: repeat(1, 1fr);
  }
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
}

.game-card {
  background: linear-gradient(145deg, var(--card-bg), #2a2a2a);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border-gold);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.game-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 215, 0, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.game-card:hover::before {
  left: 100%;
}

.game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
  border-color: var(--primary);
}

.game-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  display: block;
}

.game-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--primary);
}

.game-description {
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: 0.95rem;
}

.game-stats {
  display: flex;
  justify-content: space-around;
  margin: 20px 0;
  padding: 15px;
  background: rgba(255, 215, 0, 0.05);
  border-radius: 10px;
  font-size: 0.85rem;
}

.game-stat {
  text-align: center;
}

.game-stat-value {
  color: var(--primary);
  font-weight: 700;
  display: block;
}

.play-btn,
.play-now {
  background: var(--gradient-gold-glow);
  color: var(--button-text);
  border: none;
  padding: 12px 25px;
  border-radius: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  font-size: 1rem;
  text-decoration: none;
}

.play-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}
@media (max-width: 1280px) {
  .games-grid {
    gap: 22px;
  }
  .game-card {
    padding: 26px;
  }
  .game-icon {
    font-size: 3.2rem;
    margin-bottom: 18px;
  }
  .game-card h3 {
    font-size: 1.4rem;
  }
  .game-description {
    font-size: 0.93rem;
  }
}

@media (max-width: 1024px) {
  .games-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
  .game-card {
    padding: 24px;
  }
  .game-icon {
    font-size: 3rem;
  }
  .game-stats {
    font-size: 0.83rem;
    padding: 12px;
  }
  .play-btn {
    padding: 12px 20px;
    font-size: 0.98rem;
  }
}

@media (max-width: 820px) {
  .games-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
  }
  .game-card {
    padding: 22px;
    border-radius: 18px;
  }
  .game-icon {
    font-size: 2.8rem;
  }
  .game-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }
  .game-description {
    margin-bottom: 16px;
    font-size: 0.92rem;
  }
  .game-stats {
    margin: 16px 0;
    padding: 10px;
  }
}

@media (max-width: 640px) {
  .games-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .game-card {
    padding: 20px;
    border-radius: 16px;
  }
  .game-icon {
    font-size: 2.6rem;
    margin-bottom: 14px;
  }
  .game-card h3 {
    font-size: 1.2rem;
  }
  .game-description {
    font-size: 0.9rem;
    line-height: 1.55;
  }
  .game-stats {
    flex-direction: column;
    gap: 10px;
    text-align: left;
  }
  .game-stat {
    text-align: left;
  }
  .play-btn {
    padding: 12px 18px;
    font-size: 0.96rem;
    border-radius: 22px;
  }
}

@media (max-width: 420px) {
  .game-card {
    padding: 18px;
  }
  .game-icon {
    font-size: 2.4rem;
  }
  .game-card h3 {
    font-size: 1.1rem;
  }
  .game-description {
    font-size: 0.88rem;
  }
  .game-stats {
    font-size: 0.82rem;
    padding: 8px;
  }
  .play-btn {
    padding: 9px 14px;
    font-size: 0.7rem;
  }
}
.bonus-section {
  padding: 80px 0;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 215, 0, 0.08) 0%,
    transparent 70%
  );
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.bonus-card {
  background: linear-gradient(145deg, var(--card-bg), #2a2a2a);
  border-radius: 20px;
  padding: 35px;
  text-align: center;
  border: 2px solid var(--border-gold);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.bonus-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}

.bonus-percentage {
  font-size: 3rem;
  color: var(--primary);
  font-weight: 900;
  margin-bottom: 15px;
  line-height: 1;
}

.bonus-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--foreground);
}

.bonus-features {
  text-align: left;
  margin: 20px 0;
}

.bonus-features li {
  color: var(--text-gray);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.check-icon {
  color: var(--primary-gold);
  font-size: 1.1rem;
}
@media (max-width: 1280px) {
  .bonus-section {
    padding: 70px 0;
  }
  .bonus-grid {
    gap: 26px;
  }
  .bonus-card {
    padding: 30px;
  }
  .bonus-percentage {
    font-size: 2.8rem;
  }
  .bonus-card h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 1024px) {
  .bonus-section {
    padding: 60px 0;
  }
  .bonus-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
  }
  .bonus-card {
    padding: 28px;
    border-radius: 18px;
  }
  .bonus-percentage {
    font-size: 2.6rem;
  }
  .bonus-card h3 {
    font-size: 1.2rem;
  }
  .bonus-features {
    margin: 16px 0;
  }
}

@media (max-width: 820px) {
  .bonus-section {
    padding: 54px 0;
  }
  .bonus-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
  }
  .bonus-card {
    padding: 24px;
  }
  .bonus-percentage {
    font-size: 2.4rem;
  }
  .bonus-card h3 {
    font-size: 1.15rem;
  }
  .bonus-features li {
    gap: 8px;
    margin-bottom: 6px;
  }
  .check-icon {
    font-size: 1rem;
  }
}

@media (max-width: 640px) {
  .bonus-section {
    padding: 48px 0;
  }
  .bonus-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 36px;
  }
  .bonus-card {
    padding: 22px;
    border-radius: 16px;
  }
  .bonus-percentage {
    font-size: 2.2rem;
  }
  .bonus-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }
  .bonus-features {
    margin: 14px 0;
  }
}

@media (max-width: 420px) {
  .bonus-section {
    padding: 42px 0;
  }
  .bonus-card {
    padding: 20px;
  }
  .bonus-percentage {
    font-size: 2rem;
  }
  .bonus-card h3 {
    font-size: 1.05rem;
  }
  .bonus-features li {
    font-size: 0.95rem;
  }
}
.vip-simple {
  padding: clamp(48px, 6.5vw, 84px) 0;
}
.vip-simple__head {
  text-align: center;
  margin-bottom: clamp(24px, 4vw, 38px);
}
.vip-simple__title {
  font-weight: 800;
  font-size: clamp(26px, 3.6vw, 36px);
  letter-spacing: -0.01em;
  background: var(--gradient-gold-glow);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.vip-simple__sub {
  max-width: 70ch;
  margin: 8px auto 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.vip-simple__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(240px, 1fr));
  gap: clamp(14px, 2.4vw, 22px);
}
@media (max-width: 1100px) {
  .vip-simple__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .vip-simple__grid {
    grid-template-columns: 1fr;
  }
}

.vcard {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
  border-radius: 16px;
  background: linear-gradient(
    180deg,
    rgba(15, 15, 15, 0.92),
    rgba(10, 10, 10, 0.98)
  );
  border: 1px solid rgba(255, 215, 0, 0.22);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.38);
}

.vcard__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  flex-direction: column;
}
.vcard__plan {
  margin: 0;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--foreground);
}
.vcard__rate {
  background: var(--gradient-gold-glow);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 900;
  font-size: 1.5rem;
}
.vcard__rate em {
  font-style: normal;
  font-weight: 700;
  opacity: 0.9;
}

.vcard__row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border-radius: 12px;
  background: rgba(255, 215, 0, 0.06);
  border: 1px solid rgba(255, 215, 0, 0.16);
}
.vcell__label {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}
.vcell__value {
  font-weight: 800;
  color: #fff;
  font-size: 1.05rem;
}
.vsep {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--gradient-gold-glow);
  color: #222;
  font-weight: 900;
}

.vcard__list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.vcard__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.vcard__list li::before {
  content: "✔";
  flex-shrink: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent);
}
.vcard__list strong {
  color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.btn--primary {
  background: var(--gradient-gold-glow);
  color: #222;
  box-shadow: 0 14px 28px rgba(255, 215, 0, 0.2);
}
.btn--primary:hover {
  transform: translateY(-2px);
}
.btn--block {
  width: 100%;
}
.bonus-article {
  position: relative;
  color: var(--foreground);
}

.bonus-article__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.bonus-article__header {
  text-align: center;
  margin-bottom: clamp(28px, 4vw, 44px);
}
.bonus-article__title {
  position: relative;
  font-size: clamp(28px, 4.2vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.bonus-article__subtitle {
  max-width: 78ch;
  margin: 10px auto 0;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.65;
}
.bonus-article__meta {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.9);
}
.bonus-article__meta li {
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 700;
}

.bonus-article__grid {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: clamp(18px, 2.8vw, 28px);
  align-items: start;
}
@media (max-width: 1024px) {
  .bonus-article__grid {
    grid-template-columns: 1fr;
  }
}

.bonus-aside__toc {
  top: 90px;
  align-self: start;
  background: linear-gradient(
    180deg,
    rgba(15, 15, 15, 0.9),
    rgba(10, 10, 10, 0.98)
  );
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 16px;
  padding: 16px;
}
.toc__title {
  font-weight: 800;
  margin: 0 0 8px;
  color: #fff;
  font-size: 1.05rem;
}
.toc__list {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
  display: grid;
  gap: 8px;
}
.toc__list a {
  display: block;
  padding: 8px 10px;
  border-radius: 10px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid transparent;
}
.toc__list a:hover {
  border-color: rgba(255, 215, 0, 0.25);
  background: rgba(255, 215, 0, 0.06);
}
.toc__cta .btn {
  margin-top: 8px;
}

.bonus-article__content {
  background: linear-gradient(
    180deg,
    rgba(15, 15, 15, 0.92),
    rgba(10, 10, 10, 0.98)
  );
  border: 1px solid rgba(255, 215, 0, 0.22);
  border-radius: 18px;
  padding: clamp(16px, 2.2vw, 22px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.38);
  color: rgba(255, 255, 255, 0.92);
}

.b-section + .b-section {
  margin-top: clamp(22px, 3.2vw, 30px);
  margin-bottom: 30px;
}
.b-section__title {
  font-weight: 800;
  color: #fff;
  font-size: clamp(20px, 2.4vw, 24px);
  margin-bottom: 8px;
}
.b-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.b-pill {
  border: 1px solid rgba(255, 215, 0, 0.22);
  background: rgba(255, 215, 0, 0.06);
  border-radius: 999px;
  padding: 6px 10px;
  font-weight: 700;
}

.b-list {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.b-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.b-list li::before {
  content: "✔";
  color: var(--accent);
  font-weight: 800;
  flex: 0 0 auto;
  translate: 0 2px;
}

.b-cards {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 10px;
}
@media (max-width: 1024px) {
  .b-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .b-cards {
    grid-template-columns: 1fr;
  }
}
.b-card {
  border: 1px solid rgba(255, 215, 0, 0.22);
  background: rgba(255, 215, 0, 0.04);
  border-radius: 14px;
  padding: 14px;
}
.b-card h4 {
  margin: 0 0 6px;
  color: var(--primary);
  font-weight: 800;
}

.b-tiles {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1024px) {
  .b-tiles {
    grid-template-columns: 1fr;
  }
}
.b-tile {
  border: 1px solid rgba(255, 215, 0, 0.22);
  border-radius: 14px;
  padding: 14px;
  background: rgba(255, 215, 0, 0.04);
}
.b-tile h4 {
  margin: 0 0 6px;
  color: var(--primary);
  font-weight: 800;
}

.b-steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  display: grid;
  gap: 10px;
  margin-top: 8px;
}
.b-steps li {
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: start;
  gap: 10px;
}
.b-steps li::before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--gradient-gold-glow);
  color: #222;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(255, 215, 0, 0.22);
}

.b-kv {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 10px;
}
@media (max-width: 820px) {
  .b-kv {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .b-kv {
    grid-template-columns: 1fr;
  }
}
.kv {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
  border: 1px solid rgba(255, 215, 0, 0.22);
  border-radius: 12px;
  padding: 10px 12px;
  background: rgba(255, 215, 0, 0.04);
}
.kv .k {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
}
.kv .v {
  color: #fff;
  font-weight: 800;
}

.b-note {
  margin-top: 10px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}

.b-faq {
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  padding: 10px 12px;
  background: rgba(255, 215, 0, 0.04);
}
.b-faq + .b-faq {
  margin-top: 10px;
}
.b-faq summary {
  cursor: pointer;
  font-weight: 800;
  color: #fff;
}
.b-faq__body {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.92);
}

.b-cta-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.b-end-cta {
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease,
    color 0.2s ease;
}
.btn--block {
  width: 100%;
}
.btn--primary {
  background: var(--gradient-gold-glow);
  color: #222;
  box-shadow: 0 14px 28px rgba(255, 215, 0, 0.2);
}
.btn--primary:hover {
  transform: translateY(-2px);
}
.btn--outline {
  border: 1px solid var(--card-border);
  color: #fff;
  background: transparent;
}
.btn--outline:hover {
  background: rgba(255, 215, 0, 0.08);
}
.btn--ghost {
  border: 1px dashed rgba(255, 215, 0, 0.28);
  color: rgba(255, 255, 255, 0.92);
  background: transparent;
}
.btn--ghost:hover {
  background: rgba(255, 215, 0, 0.06);
}

.b-steps em {
  font-style: italic;
  display: inline;
  margin: 0;
  padding: 0;
}
.b-steps li span {
  white-space: nowrap;
}
