.mobile-join-bar {
  display: none;
}
:root {
  --pink: #ff345d;
  --pink2: #ff6483;
  --pink-deep: #db1a41;
  --purple: #db1a41;
  --bg: #0a0a12;
  --bg2: #11111d;
  --card: #16162a;
  --card2: #1c1c34;
  --line: rgba(255, 255, 255, 0.08);
  --txt: #eef0ff;
  --muted: #a0a3c0;
  --radius: 18px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--txt);
  line-height: 1.65;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: 'Poppins', sans-serif;
  line-height: 1.15;
  font-weight: 800;
}
a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
img {
  max-width: 100%;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.grad {
  background: linear-gradient(100deg, var(--pink), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.eyebrow {
  display: inline-block;
  font-family: 'Poppins';
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--pink);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.lead {
  color: var(--muted);
  font-size: 1.12rem;
  max-width: 760px;
  margin: 0 auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 10, 18, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: 0.3s;
}
.site-header.scrolled {
  background: rgba(8, 8, 14, 0.97);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 88px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}
.logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  line-height: 0.9;
  font-family: 'Poppins';
  font-weight: 900;
  letter-spacing: -1px;
}
.logo-db {
  color: var(--pink);
  line-height: 1;
  display: inline-flex;
  align-items: center;
}
.logo-bet {
  display: none;
}
.logo-sub {
  font-size: 0;
  letter-spacing: normal;
  color: #fff;
  font-weight: 800;
  font-style: italic;
  margin-top: 0;
}
.logo-sub::after {
  content: 'Affiliate\AProgram';
  white-space: pre;
  font-size: 1rem;
  line-height: 1.05;
  letter-spacing: 0.2px;
  color: #fff;
  font-family: 'Poppins';
  font-weight: 800;
  font-style: italic;
  display: inline-block;
  text-align: left;
}
.main-nav {
  display: flex;
  gap: 6px;
  margin-left: 18px;
}
.nav-link {
  background: none;
  border: none;
  color: var(--muted);
  font-family: 'Poppins';
  font-weight: 600;
  font-size: 0.92rem;
  padding: 10px 16px;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.2s;
  white-space: nowrap;
}
.nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}
.nav-link.active {
  color: #fff;
  background: linear-gradient(100deg, var(--pink), var(--pink-deep));
  box-shadow: 0 8px 20px rgba(255, 46, 126, 0.35);
}
.header-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.lang-selector {
  position: relative;
}
.lang-current {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--card);
  border: 1px solid var(--line);
  color: var(--txt);
  padding: 9px 14px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
}
.lang-current:hover {
  border-color: var(--pink);
}
.flag {
  font-size: 1.1rem;
  line-height: 1;
}
.caret {
  font-size: 0.7rem;
  color: var(--muted);
}
.lang-menu {
  position: absolute;
  top: 120%;
  right: 0;
  background: var(--card2);
  border: 1px solid var(--line);
  border-radius: 14px;
  list-style: none;
  padding: 8px;
  min-width: 180px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: 0.2s;
  z-index: 50;
}
.lang-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-menu li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 9px;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 500;
}
.lang-menu li:hover {
  background: rgba(255, 46, 126, 0.15);
  color: var(--pink2);
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.burger span {
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: 0.3s;
}
.btn {
  font-family: 'Poppins';
  font-weight: 700;
  border: none;
  border-radius: 14px;
  padding: 14px 28px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: 0.25s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-primary {
  background: linear-gradient(100deg, var(--pink), var(--purple));
  color: #fff;
  box-shadow: 0 12px 28px rgba(255, 46, 126, 0.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(255, 46, 126, 0.5);
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid var(--line);
}
.btn-ghost:hover {
  border-color: var(--pink);
  color: var(--pink2);
}
.btn-join {
  background: linear-gradient(100deg, var(--pink), var(--pink-deep));
  color: #fff;
  box-shadow: 0 10px 26px rgba(255, 46, 126, 0.4);
}
.btn-join:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(255, 46, 126, 0.55);
}
.header-cta {
  padding: 11px 22px;
  font-size: 0.88rem;
}
.btn-xl {
  padding: 18px 46px;
  font-size: 1.1rem;
  border-radius: 16px;
}
.page {
  display: none;
  animation: fadeUp 0.5s ease;
}
.page.active {
  display: block;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero {
  position: relative;
  overflow: hidden;
  padding: 120px 0 90px;
  text-align: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 20% 10%,
      rgba(255, 46, 126, 0.22),
      transparent 45%
    ),
    radial-gradient(
      circle at 85% 30%,
      rgba(255, 46, 126, 0.22),
      transparent 45%
    );
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  font-weight: 900;
  margin-bottom: 22px;
}
.hero-sub {
  color: var(--muted);
  font-size: 1.2rem;
  max-width: 680px;
  margin: 0 auto 36px;
}
.hero-cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 860px;
  margin: 0 auto;
}
.stat {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 16px;
  transition: 0.25s;
}
.stat:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 46, 126, 0.5);
}
.stat-num {
  font-family: 'Poppins';
  font-weight: 900;
  font-size: 2.2rem;
  background: linear-gradient(100deg, var(--pink), var(--pink2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-label {
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 6px;
  font-weight: 500;
}
.section-head {
  text-align: center;
  max-width: 820px;
  margin: 90px auto 46px;
}
.section-head h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  margin-bottom: 16px;
}
.band {
  background: var(--bg2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 30px 0 80px;
  margin: 80px 0;
}
.band .section-head {
  margin-top: 50px;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.about-text p {
  color: var(--muted);
  margin-bottom: 18px;
}
.check-list {
  list-style: none;
  margin-top: 24px;
  display: grid;
  gap: 12px;
}
.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--txt);
  font-weight: 500;
}
.check-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  background: linear-gradient(100deg, var(--pink), var(--purple));
  border-radius: 50%;
  color: #fff;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}
.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.mini-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  transition: 0.25s;
}
.mini-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 46, 126, 0.45);
  box-shadow: var(--shadow);
}
.mc-icon {
  margin-bottom: 12px;
  color: var(--pink);
}
.mini-card h4 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}
.mini-card p {
  color: var(--muted);
  font-size: 0.92rem;
}
.timeline {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  padding-left: 30px;
}
.timeline:before {
  content: '';
  position: absolute;
  left: 7px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(var(--pink), var(--purple));
}
.tl-item {
  position: relative;
  padding: 0 0 34px 30px;
}
.tl-item:before {
  content: '';
  position: absolute;
  left: -30px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 5px rgba(255, 46, 126, 0.18);
}
.tl-year {
  font-family: 'Poppins';
  font-weight: 800;
  color: var(--pink2);
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.tl-body h4 {
  margin-bottom: 6px;
}
.tl-body p {
  color: var(--muted);
  font-size: 0.95rem;
}
.value-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 28px;
  text-align: center;
  transition: 0.25s;
}
.value-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 46, 126, 0.45);
  box-shadow: var(--shadow);
}
.v-icon {
  margin-bottom: 16px;
  color: var(--pink);
}
.value-card h4 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.value-card p {
  color: var(--muted);
  font-size: 0.95rem;
}
.team-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: 0.25s;
}
.team-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 46, 126, 0.45);
}
.avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins';
  font-weight: 800;
  font-size: 1.3rem;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--purple));
}
.team-card h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.team-card p {
  color: var(--muted);
  font-size: 0.9rem;
}
.page-hero {
  position: relative;
  text-align: center;
  padding: 90px 0 50px;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(255, 46, 126, 0.16),
    transparent 60%
  );
}
.page-hero h1,
.page-hero h2 {
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  margin-bottom: 18px;
}
.mob-hero {
  background: radial-gradient(
    circle at 50% 0%,
    rgba(255, 46, 126, 0.2),
    transparent 60%
  );
}
.mini-head {
  font-size: 1.4rem;
  margin-bottom: 14px;
  color: var(--pink2);
}
.benefit-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: 0.28s;
  position: relative;
  overflow: hidden;
}
.benefit-card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.3s;
}
.benefit-card:hover:before {
  transform: scaleX(1);
}
.benefit-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 46, 126, 0.5);
  box-shadow: var(--shadow);
}
.b-icon {
  margin-bottom: 16px;
  color: var(--pink);
}
.benefit-card h4 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.benefit-card p {
  color: var(--muted);
  font-size: 0.93rem;
}
.carousel {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 1000px;
  margin: 0 auto;
}
.car-viewport {
  overflow: hidden;
  flex: 1;
  border-radius: 24px;
}
.car-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.6, 0.05, 0.2, 1);
}
.niche-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
}
.niche-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}
.niche-emoji {
  color: #ffffff;
  display: inline-flex;
}
.car-track .niche-slide:first-child {
  background: #050509;
}
.car-track .niche-slide:first-child .niche-info {
  display: flex;
}
.car-track .niche-slide:first-child .niche-info h3,
.car-track .niche-slide:first-child .niche-info p {
  color: #fff;
}
.niche-sport {
  padding: 0;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 340px;
  background-color: #050509;
  background-image: url('/niche-sport.webp');
  background-size: 92%;
  background-position: center;
  background-repeat: no-repeat;
}
.niche-casino {
  padding: 0;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 340px;
  background-color: #050509;
  background-image: url('/niche-casino.webp');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.niche-sport::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--pink);
  mix-blend-mode: multiply;
  opacity: 0.6;
  pointer-events: none;
}
.niche-sport::before {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
  mix-blend-mode: normal;
  pointer-events: none;
  z-index: 2;
}

.niche-info {
  padding: 46px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

/* Esports slide (3rd) -> black bg, pink/black gamepad image, white text (matches Sports/Casino) */
.car-track .niche-slide:nth-child(3) {
  background: #050509;
}
.car-track .niche-slide:nth-child(3) .niche-info h3,
.car-track .niche-slide:nth-child(3) .niche-info p {
  color: #fff;
}
.car-track .niche-slide:nth-child(3) .niche-visual {
  position: relative;
  overflow: hidden;
  background: #050509 !important;
  background-image: url('/niche-slide-2.webp') !important;
  background-size: contain !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}
.car-track .niche-slide:nth-child(3) .niche-visual .niche-emoji {
  display: none;
}
.car-track .niche-slide:nth-child(3) .niche-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--pink);
  mix-blend-mode: multiply;
  opacity: 0.2;
  pointer-events: none;
}
.car-track .niche-slide:nth-child(3) .niche-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
  mix-blend-mode: normal;
  pointer-events: none;
  z-index: 2;
}

/* Online Games slide (4th) -> black bg, pink/black image, white text (matches others) */
.car-track .niche-slide:nth-child(4) {
  background: #050509;
}
.car-track .niche-slide:nth-child(4) .niche-info h3,
.car-track .niche-slide:nth-child(4) .niche-info p {
  color: #fff;
}
.car-track .niche-slide:nth-child(4) .niche-visual {
  position: relative;
  overflow: hidden;
  background: #050509 !important;
  background-image: url('/niche-slide-3.webp') !important;
  background-size: contain !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}
.car-track .niche-slide:nth-child(4) .niche-visual .niche-emoji {
  display: none;
}
.car-track .niche-slide:nth-child(4) .niche-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--pink);
  mix-blend-mode: multiply;
  opacity: 0.2;
  pointer-events: none;
}
.car-track .niche-slide:nth-child(4) .niche-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
  mix-blend-mode: normal;
  pointer-events: none;
  z-index: 2;
}

/* Casino slide (2nd) -> black bg, pink/black roulette image, white text (matches Sports) */
.car-track .niche-slide:nth-child(2) {
  background: #050509;
}
.car-track .niche-slide:nth-child(2) .niche-info h3,
.car-track .niche-slide:nth-child(2) .niche-info p {
  color: #fff;
}
.car-track .niche-slide:nth-child(2) .niche-visual {
  position: relative;
  overflow: hidden;
  background: #050509 !important;
  background-image: url('/niche-slide-4.webp') !important;
  background-size: contain !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}
.car-track .niche-slide:nth-child(2) .niche-visual .niche-emoji {
  display: none;
}
.car-track .niche-slide:nth-child(2) .niche-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--pink);
  mix-blend-mode: multiply;
  opacity: 0.2;
  pointer-events: none;
}
.car-track .niche-slide:nth-child(2) .niche-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
  mix-blend-mode: normal;
  pointer-events: none;
  z-index: 2;
}

.car-track .niche-slide:nth-child(5) {
  background: #050509;
}
.car-track .niche-slide:nth-child(5) .niche-info h3,
.car-track .niche-slide:nth-child(5) .niche-info p {
  color: #fff;
}
.car-track .niche-slide:nth-child(5) .niche-visual {
  position: relative;
  overflow: hidden;
  background: #050509 !important;
  background-image: url('/niche-slide-5.webp') !important;
  background-size: contain !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}
.car-track .niche-slide:nth-child(5) .niche-visual .niche-emoji {
  display: none;
}
.car-track .niche-slide:nth-child(5) .niche-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--pink);
  mix-blend-mode: multiply;
  opacity: 0.2;
  pointer-events: none;
}
.car-track .niche-slide:nth-child(5) .niche-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
  mix-blend-mode: normal;
  pointer-events: none;
  z-index: 2;
}

.niche-info h3 {
  font-size: 2rem;
  margin-bottom: 14px;
}
.niche-info p {
  color: var(--muted);
  margin-bottom: 26px;
}
.car-arrow {
  flex: none;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--card);
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
  transition: 0.2s;
  line-height: 1;
}
.car-arrow:hover {
  background: var(--pink);
  border-color: var(--pink);
  transform: scale(1.08);
}
.car-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 28px;
}
.car-dots button {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: 0.2s;
}
.car-dots button.active {
  background: var(--pink);
  width: 30px;
  border-radius: 6px;
}
.cta-band {
  margin: 90px 0 0;
  background: linear-gradient(
    100deg,
    rgba(255, 46, 126, 0.16),
    rgba(255, 46, 126, 0.16)
  );
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 64px 0;
  text-align: center;
}
.cta-inner h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  margin-bottom: 12px;
}
.cta-inner p {
  color: var(--muted);
  margin-bottom: 30px;
  font-size: 1.1rem;
}
.faq {
  max-width: 840px;
  margin: 0 auto 90px;
  display: grid;
  gap: 14px;
}
.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: #fff;
  font-family: 'Poppins';
  font-weight: 600;
  font-size: 1.05rem;
  padding: 22px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-ic {
  font-size: 1.5rem;
  color: var(--pink);
  transition: 0.3s;
  flex: none;
}
.faq-item.open .faq-ic {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-a p {
  padding: 0 24px 22px;
  color: var(--muted);
}
.guide {
  max-width: 900px;
  margin: 0 auto;
}
.guide-block {
  display: flex;
  gap: 24px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 18px;
  transition: 0.25s;
}
.guide-block:hover {
  border-color: rgba(255, 46, 126, 0.4);
  transform: translateX(4px);
}
.g-num {
  font-family: 'Poppins';
  font-weight: 900;
  font-size: 2rem;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  flex: none;
  width: 54px;
}
.g-body h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.g-body p {
  color: var(--muted);
  font-size: 0.97rem;
}
.dash-preview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 30px 0 10px;
}
.dash-stat {
  background: linear-gradient(160deg, var(--card2), var(--card));
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
}
.ds-label {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 8px;
}
.ds-val {
  font-family: 'Poppins';
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--pink2);
}
.contact {
  margin-bottom: 90px;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  transition: 0.25s;
}
.contact-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 46, 126, 0.5);
  box-shadow: var(--shadow);
}
.c-icon {
  width: 76px;
  height: 76px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.7rem;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  flex: none;
}
.contact-card h4 {
  font-size: 1.2rem;
  margin-bottom: 4px;
}
.contact-card p {
  color: #fff;
  font-weight: 600;
}
.c-cta {
  color: var(--pink2);
  font-size: 0.9rem;
  font-weight: 600;
}
.site-footer {
  background: var(--bg2);
  border-top: 1px solid var(--line);
  margin-top: 60px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 2fr;
  gap: 40px;
  padding: 56px 24px;
}
.footer-brand {
  font-family: 'Poppins';
  font-size: 2rem;
  font-weight: 900;
}
.footer-brand p {
  font-family: 'Inter';
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--muted);
  margin-top: 14px;
  max-width: 340px;
}
.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.footer-cols h5 {
  font-size: 1rem;
  margin-bottom: 14px;
  color: #fff;
}
.footer-cols a {
  display: block;
  color: var(--muted);
  padding: 6px 0;
  font-size: 0.93rem;
  transition: 0.2s;
}
.footer-cols a:hover {
  color: var(--pink2);
}
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 22px 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
}
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .burger {
    display: flex;
  }
  .main-nav.open {
    display: flex;
    position: absolute;
    top: 88px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--card2);
    padding: 16px;
    border-bottom: 1px solid var(--line);
    gap: 6px;
  }
  .header-cta {
    display: none;
  }
  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }
  .mobile-join-bar {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: rgba(10, 10, 18, 0.92);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--line);
    box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.45);
  }
  .mobile-join-bar .mobile-join-btn {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 1.05rem;
    padding: 14px 20px;
  }
  body {
    padding-bottom: 76px;
  }
}
@media (max-width: 820px) {
  .grid-2,
  .grid-3,
  .about-cards,
  .dash-preview,
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }
  .niche-slide {
    grid-template-columns: 1fr;
  }
  .niche-visual {
    min-height: 200px;
  }
  .niche-emoji {
    font-size: 5rem;
  }
  .logo {
    font-size: 2.2rem;
  }
}
@media (max-width: 520px) {
  .grid-4,
  .hero-stats {
    grid-template-columns: 1fr;
  }
  .footer-cols {
    grid-template-columns: 1fr;
  }
  .header-inner {
    height: 74px;
  }
  .lang-name {
    display: none;
  }
}

.mc-icon .ico {
  width: 52px;
  height: 52px;
}
.v-icon .ico {
  width: 64px;
  height: 64px;
}
.b-icon .ico {
  width: 60px;
  height: 60px;
}
.niche-emoji .ico {
  width: 120px;
  height: 120px;
}
.c-icon .ico {
  width: 40px;
  height: 40px;
}

.logo-db .logo-mark {
  height: 2.6rem;
  width: auto;
  display: block;
}
.logo-bet,
.logo-sub {
}

.logo-db img.logo-mark {
  height: 2.6rem;
  width: auto;
  display: block;
  object-fit: contain;
}

.mc-icon .mc-img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  display: block;
  margin: 0 0 0 0;
}
.b-icon .b-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
}

/* Mobile: /* Mobile: carousel images smaller so fully visible */
@media (max-width: 820px) {
  .niche-slide:nth-child(1) .niche-visual {
    background-size: 60% !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    min-height: 200px;
  }
  .niche-slide:nth-child(2) .niche-visual {
    background-size: 70% !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    min-height: 200px;
  }
  .niche-slide:nth-child(3) .niche-visual {
    background-size: 70% !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    min-height: 200px;
  }
  .niche-slide:nth-child(4) .niche-visual {
    background-size: 70% !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    min-height: 200px;
  }
  .niche-slide:nth-child(5) .niche-visual {
    background-size: 70% !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    min-height: 200px;
  }
}

/* casino-mobile-fix */
@media (max-width: 768px) {
  .niche-casino {
    min-height: 220px;
    background-size: 70%;
  }
}

/* casino-img-update */

/* esports-img-update */

/* online-games-img-update */
