:root {
  --primary: #00a36c;
  --secondary: #1b2621;
  --tertiary: #e8f5e9;
  --neutral: #0f1110;
  --bg-0: #0f1110;
  --bg-1: #1b2621;
  --bg-2: #23322b;
  --panel: #223029;
  --panel-strong: #2a3a32;
  --line: rgba(0, 163, 108, 0.34);
  --line-soft: rgba(232, 245, 233, 0.14);
  --text: #e8f5e9;
  --muted: #a9bbb0;
  --emerald: #00a36c;
  --emerald-strong: #007a52;
  --mint: #bcd9ca;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  overflow-x: hidden;
  background-color: #0f1110;
}

body {
  background-color: #0f1110;
  background:
    radial-gradient(circle at 8% 2%, rgba(0, 163, 108, 0.2), transparent 24%),
    radial-gradient(circle at 92% 0%, rgba(0, 122, 82, 0.18), transparent 28%),
    linear-gradient(160deg, var(--neutral), var(--bg-1) 55%, var(--neutral));
  color: var(--text);
  font-family: "Rajdhani", sans-serif;
  line-height: 1.35;
}

.news-ticker {
  position: sticky;
  top: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 28px;
  padding: 1px 8px;
  color: var(--tertiary);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
  background: linear-gradient(
    90deg,
    var(--primary),
    var(--emerald-strong),
    var(--primary)
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.news-marquee {
  position: relative;
  overflow: hidden;
  flex: 1;
  white-space: nowrap;
  padding-left: 2px;
}

.news-track {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding-left: 12px;
  min-width: max-content;
  will-change: transform;
  animation: newsTickerMove 36s linear infinite;
}

.news-track span {
  display: inline-block;
  white-space: nowrap;
  padding-right: 40px;
}

@keyframes newsTickerMove {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.news-close {
  width: 22px;
  height: 22px;
  border: 0;
  border-radius: 2px;
  background: transparent;
  color: var(--neutral);
  font-size: 18px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.floating-world,
.floating-close {
  position: fixed;
  z-index: 70;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, var(--panel-strong), var(--neutral));
  color: var(--text);
  display: grid;
  place-items: center;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.32);
}

.floating-world {
  left: 8px;
  top: 14px;
}

.bg-aurora {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      120deg,
      transparent,
      transparent 22px,
      rgba(0, 163, 108, 0.04) 22px,
      rgba(0, 163, 108, 0.04) 24px
    ),
    radial-gradient(circle at center, rgba(0, 122, 82, 0.2), transparent 62%);
  z-index: -1;
}

.topbar {
  position: sticky;
  top: 28px;
  z-index: 50;
  background: rgba(15, 17, 16, 0.96);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(7px);
}

body.ticker-hidden .topbar {
  top: 0;
}

.topbar-row {
  width: min(1800px, calc(100% - clamp(24px, 10vw, 220px)));
  max-width: none;
  margin: 0 auto;
  padding: 10px 12px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
}

.quick-links,
.auth-links {
  display: flex;
  gap: 6px;
  align-items: center;
}

.auth-links {
  justify-content: flex-end;
}

.quick-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-decoration: none;
  color: var(--primary);
  border: 1px solid var(--line);
  background: radial-gradient(
    circle at 30% 25%,
    rgba(0, 163, 108, 0.3),
    rgba(15, 17, 16, 0.9)
  );
  box-shadow: inset 0 0 12px rgba(0, 163, 108, 0.26);
}

.quick-pill,
.auth-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  font-size: 11px;
}

.quick-pill {
  color: var(--tertiary);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, var(--panel-strong), var(--neutral));
  padding: 6px 12px;
}

/* ── Logged-in User Area (topbar) ── */
.user-logged-area {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

.user-balance-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 163, 108, 0.35);
  background: rgba(0, 163, 108, 0.1);
  color: #7dffbf;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.user-balance-pill i {
  color: var(--primary);
  font-size: 13px;
}

.bal-main {
  color: #7dffbf;
  letter-spacing: 0.3px;
}

/* ── Balance Pill Toggle ── */
.user-balance-pill {
  cursor: pointer;
  position: relative;
  transition: border-color 0.2s, background 0.2s;
}

.user-balance-pill:hover {
  border-color: rgba(0, 163, 108, 0.55);
  background: rgba(0, 163, 108, 0.18);
}

.user-balance-pill.open {
  border-color: rgba(0, 163, 108, 0.6);
  background: rgba(0, 163, 108, 0.22);
}

.bal-toggle-icon {
  transition: transform 0.25s ease;
  font-size: 9px;
  opacity: 0.6;
}

.user-balance-pill.open .bal-toggle-icon {
  transform: rotate(180deg);
}

/* ── Balance Dropdown ── */
.balance-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 220px;
  background: var(--secondary);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
  z-index: 1200;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  padding: 0;
}

.balance-dropdown.open,
.balance-dropdown[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.bal-drop-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px 10px;
  border-bottom: 1px solid var(--line);
  background: rgba(0, 163, 108, 0.06);
}

.bal-drop-total-label {
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bal-drop-total-val {
  font-size: 16px;
  font-weight: 800;
  color: #7dffbf;
  letter-spacing: 0.3px;
}

.bal-drop-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
}

.bal-drop-row:last-of-type {
  border-bottom: none;
}

.bal-drop-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

.bal-drop-val {
  font-size: 13px;
  font-weight: 700;
  color: #7dffbf;
  letter-spacing: 0.3px;
}

.bal-drop-actions {
  display: flex;
  gap: 8px;
  padding: 10px 14px 12px;
  border-top: 1px solid var(--line);
}

.bal-drop-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 0;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
  border: 1px solid transparent;
}

.bal-drop-btn.deposit {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.bal-drop-btn.deposit:hover {
  background: #00b876;
  border-color: #00b876;
}

.bal-drop-btn.withdraw {
  background: rgba(255, 255, 255, 0.06);
  color: var(--tertiary);
  border-color: var(--line);
}

.bal-drop-btn.withdraw:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
}

.user-avatar-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--panel-strong);
  color: var(--tertiary);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.user-avatar-btn:hover {
  background: rgba(0, 163, 108, 0.12);
  border-color: rgba(0, 163, 108, 0.35);
}

.user-deposit-shortcut {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  border: 1px solid rgba(0, 107, 63, 0.38);
  background: rgba(15, 17, 16, 0.96);
  color: var(--primary);
  text-decoration: none;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease, background 0.18s ease;
}

.user-deposit-shortcut:hover {
  color: #00d486;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.22);
  background: rgba(23, 32, 29, 0.98);
  filter: none;
}

.user-deposit-shortcut span {
  display: block;
  margin-top: -2px;
}

.topbar-mobile-support {
  display: none;
}

.user-logged-area .notif-wrap {
  display: inline-flex;
  align-items: center;
}

.user-logged-area .notif-btn {
  color: var(--tertiary);
  background: rgba(15, 17, 16, 0.96);
  border: 1px solid var(--line);
  border-radius: 8px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.user-avatar-btn i.fa-user-circle {
  font-size: 18px;
  color: var(--primary);
}

.user-name-short {
  max-width: 80px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.user-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 220px;
  background: var(--secondary);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
  z-index: 1200;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
}

.user-dropdown.open,
.user-dropdown[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.user-dropdown-header {
  padding: 14px 16px 10px;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.udd-name {
  font-weight: 700;
  color: var(--tertiary);
  font-size: 14px;
}

.udd-balance {
  color: #7dffbf;
  font-size: 13px;
  font-weight: 600;
}

.udd-bonus-balance {
  color: rgba(125, 255, 191, 0.82);
  font-size: 12px;
  font-weight: 500;
}

.user-dropdown-nav {
  display: flex;
  flex-direction: column;
  padding: 6px 0;
}

.user-dropdown-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.15s, color 0.15s;
}

.user-dropdown-nav a:hover {
  background: rgba(0, 163, 108, 0.1);
  color: var(--tertiary);
}

.user-dropdown-nav a i {
  width: 16px;
  text-align: center;
  color: var(--primary);
  font-size: 14px;
}

.user-dropdown-footer {
  padding: 8px 16px 12px;
  border-top: 1px solid var(--line);
}

.udd-logout {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ff6b6b;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 0;
  transition: opacity 0.15s;
}

.udd-logout:hover {
  opacity: 0.8;
}

.udd-logout i {
  font-size: 14px;
}

.brand {
  display: block;
  width: 162px;
}

.brand img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 16px rgba(0, 163, 108, 0.32));
}

.auth-split {
  position: relative;
  display: inline-flex;
  align-items: stretch;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  padding: 2px;
  z-index: 1;
}

.auth-split::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 999px;
  background: conic-gradient(
    from var(--glow-angle),
    transparent 0deg,
    #00ffa3 90deg,
    transparent 180deg,
    #00ffa3 270deg,
    transparent 360deg
  );
  animation: promoGlowSpin 3s linear infinite;
  z-index: -1;
}

.auth-segment {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  font-size: 13px;
  font-family: "Rajdhani", sans-serif;
  line-height: 1.2;
  letter-spacing: 0.4px;
  padding: 6px 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
}

.auth-segment-login {
  color: var(--tertiary);
  background: linear-gradient(180deg, var(--secondary), var(--neutral));
  border-radius: 999px 0 0 999px;
}

.auth-segment-register {
  color: var(--tertiary);
  background: linear-gradient(180deg, var(--primary), var(--emerald-strong));
  border-radius: 0 999px 999px 0;
}

.main-icon-nav {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 0;
  padding: 8px 4px 10px;
  overflow-x: auto;
  border-top: 1px solid var(--line-soft);
}

.icon-link {
  color: var(--text);
  opacity: 0.78;
  text-decoration: none;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  font-size: 12px;
  white-space: nowrap;
  padding: 4px 8px;
  text-align: center;
}

.icon-link span {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: radial-gradient(
    circle at 30% 25%,
    rgba(0, 163, 108, 0.3),
    rgba(15, 17, 16, 0.92)
  );
  box-shadow: inset 0 0 16px rgba(0, 163, 108, 0.25);
}

.icon-link span i {
  font-size: 17px;
}

.icon-link.active,
.icon-link:hover {
  opacity: 1;
}

.page-shell {
  width: min(1800px, calc(100% - clamp(24px, 10vw, 220px)));
  max-width: none;
  margin: 18px auto 0;
  padding: 0 12px 46px;
}

.surface {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero {
  margin-bottom: 18px;
}

.promotions-tab {
  position: relative;
  margin: 6px 0 18px;
  padding: clamp(18px, 2.2vw, 32px);
  border-radius: 24px;
  border: 1px solid rgba(120, 255, 206, 0.16);
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 163, 108, 0.15), transparent 56%),
    linear-gradient(180deg, rgba(8, 10, 12, 0.95), rgba(10, 13, 12, 0.96));
  box-shadow: var(--shadow);
  isolation: isolate;
  overflow: hidden;
  scroll-margin-top: 130px;
}

.promotions-tab::before {
  content: "%";
  position: absolute;
  inset: -40px 0 auto;
  text-align: center;
  font-family: "Teko", sans-serif;
  font-size: clamp(190px, 35vw, 460px);
  line-height: 0.72;
  letter-spacing: 6px;
  color: rgba(255, 255, 255, 0.05);
  z-index: -1;
  pointer-events: none;
}

.promotions-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  margin-bottom: 20px;
}

.promotions-kicker {
  margin: 0;
  color: var(--tertiary);
  font-size: clamp(24px, 3vw, 38px);
  font-family: "Teko", sans-serif;
  letter-spacing: 1.2px;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.promotions-hero h2 {
  margin: 0;
  font-family: "Teko", sans-serif;
  font-size: clamp(48px, 8vw, 112px);
  line-height: 0.85;
  letter-spacing: 1.1px;
  color: #f7fbf8;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
}

.promotions-subtitle {
  margin: 0;
  color: #d2af67;
  font-size: clamp(21px, 2.4vw, 35px);
  font-weight: 600;
}

.promotions-cta {
  margin-top: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 26px;
  border-radius: 10px;
  border: 1px solid rgba(254, 234, 181, 0.25);
  background: linear-gradient(180deg, #c8a252, #a47d36);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.4px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05) inset,
    0 12px 24px rgba(0, 0, 0, 0.32);
  transition:
    transform 0.2s ease,
    filter 0.2s ease;
}

.promotions-cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.promotions-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.promotions-page-only .promotions-tab {
  margin-top: 8px;
}

.promotions-page-only .promotions-grid {
  max-width: 1220px;
  margin: 0 auto;
  padding: 8px;
  gap: 14px;
}

.promotion-card {
  position: relative;
  border-radius: 16px;
  padding: 3px;
  background: rgba(10, 14, 12, 0.9);
  overflow: hidden;
  isolation: isolate;
}

.promotion-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 18px;
  background: conic-gradient(
    from var(--glow-angle),
    transparent 0deg,
    #00ffa3 90deg,
    transparent 180deg,
    #00ffa3 270deg,
    transparent 360deg
  );
  animation: promoGlowSpin 3s linear infinite;
  z-index: 0;
  pointer-events: none;
}

.promotion-card a {
  display: block;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  isolation: isolate;
  background: rgba(10, 14, 12, 0.96);
  z-index: 1;
}

.promotion-card a::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 15px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.07),
    0 0 20px rgba(0, 255, 163, 0.24);
  pointer-events: none;
}

.promotion-card img {
  width: 100%;
  aspect-ratio: 16 / 6.9;
  display: block;
  object-fit: cover;
  transform: scale(1.005);
  transition: transform 0.3s ease;
}

.promotion-card:hover img {
  transform: scale(1.03);
}

.hero-slider {
  position: relative;
  aspect-ratio: 25 / 9;
  min-height: auto;
  border-radius: 18px;
  overflow: hidden;
  background: #0a0f0c;
  border: 1px solid rgba(120, 255, 206, 0.24);
  box-shadow: var(--shadow);
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.hero-slider::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(167, 255, 224, 0.24);
  border-radius: 18px;
  z-index: 1;
  pointer-events: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.45s ease;
  background-color: #0a0f0c;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.03);
  will-change: opacity, transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0) scale(1.03);
  transform: translateZ(0) scale(1.03);
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: none;
}

.hero-copy {
  position: absolute;
  inset: auto auto 38px 34px;
  max-width: 540px;
  z-index: 2;
}

.hero-kicker {
  margin: 0;
  color: var(--mint);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 12px;
  font-weight: 700;
}

.hero-copy h1 {
  margin: 8px 0;
  font-family: "Teko", sans-serif;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: 0.6px;
}

.hero-copy p {
  margin: 0;
  color: var(--tertiary);
  font-size: 22px;
}

.hero-cta {
  margin-top: 16px;
  display: inline-flex;
  text-decoration: none;
  color: var(--neutral);
  background: linear-gradient(120deg, var(--emerald), var(--tertiary));
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 16px;
  font-family: "Rajdhani", sans-serif;
  letter-spacing: 0;
  font-weight: 700;
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  cursor: pointer;
  z-index: 2;
}

.hero-prev {
  left: 12px;
}

.hero-next {
  right: 12px;
}

.hero-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 3;
}

.hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

.hero-dot.active {
  background: var(--emerald);
  box-shadow: 0 0 10px rgba(41, 223, 158, 0.85);
}

.category-tabs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  padding: 0;
  margin-bottom: 18px;
}

.tab-btn {
  padding: 8px 8px;
  border-radius: 10px;
  border: 1px solid var(--line-soft);
  background: linear-gradient(
    180deg,
    rgba(42, 58, 50, 0.95),
    rgba(15, 17, 16, 0.95)
  );
  color: var(--text);
  font-size: 13px;
  font-family: "Rajdhani", sans-serif;
  letter-spacing: 0;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.tab-btn.active {
  color: var(--neutral);
  background: linear-gradient(130deg, var(--emerald), var(--tertiary));
}

.popular-tabs {
  margin-bottom: 18px;
}

/* ═══════════════════════════════════════════════════════
   LEGAL / POLICY PAGES — Emerald Theme
   ═══════════════════════════════════════════════════════ */
.legal-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 24px 60px;
}

.legal-page-header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line-soft);
  position: relative;
}

.legal-page-header::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--emerald), transparent);
}

.legal-page-header h1 {
  font-family: "Teko", sans-serif;
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 600;
  color: var(--tertiary);
  margin: 0 0 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.legal-page-header .legal-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: linear-gradient(135deg, rgba(0, 163, 108, 0.12), rgba(0, 163, 108, 0.04));
  border: 1px solid rgba(0, 163, 108, 0.2);
  border-radius: 20px;
  font-family: "Rajdhani", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--emerald);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.legal-page-header .legal-badge i {
  font-size: 12px;
}

/* İçindekiler (TOC) */
.legal-toc {
  background: linear-gradient(135deg, var(--panel), var(--bg-2));
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 32px;
}

.legal-toc h3 {
  font-family: "Teko", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--emerald);
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.legal-toc ol {
  margin: 0;
  padding-left: 20px;
  list-style: decimal;
}

.legal-toc ol li {
  margin-bottom: 6px;
}

.legal-toc ol li a {
  color: var(--muted);
  text-decoration: none;
  font-family: "Rajdhani", sans-serif;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s ease;
}

.legal-toc ol li a:hover {
  color: var(--emerald);
}

/* İçerik bölümleri */
.legal-section {
  margin-bottom: 32px;
}

.legal-section h2 {
  font-family: "Teko", sans-serif;
  font-size: clamp(20px, 3.5vw, 26px);
  font-weight: 600;
  color: var(--emerald);
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 163, 108, 0.15);
  letter-spacing: 0.5px;
}

.legal-section h3 {
  font-family: "Teko", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--tertiary);
  margin: 20px 0 10px;
}

.legal-section p {
  font-family: "Rajdhani", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 12px;
}

.legal-section ul,
.legal-section ol {
  padding-left: 22px;
  margin: 0 0 16px;
}

.legal-section li {
  font-family: "Rajdhani", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 6px;
}

.legal-section li::marker {
  color: var(--emerald);
}

.legal-section strong {
  color: var(--tertiary);
  font-weight: 700;
}

.legal-section a {
  color: var(--emerald);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 163, 108, 0.3);
  transition: border-color 0.15s ease;
}

.legal-section a:hover {
  border-bottom-color: var(--emerald);
}

/* Info kutucukları */
.legal-info-box {
  background: linear-gradient(135deg, rgba(0, 163, 108, 0.08), rgba(0, 163, 108, 0.02));
  border: 1px solid rgba(0, 163, 108, 0.18);
  border-left: 3px solid var(--emerald);
  border-radius: 8px;
  padding: 16px 20px;
  margin: 16px 0;
}

.legal-info-box p {
  margin: 0;
  color: var(--tertiary);
  font-size: 14px;
}

.legal-info-box i {
  color: var(--emerald);
  margin-right: 8px;
}

/* Uyarı kutusu */
.legal-warning-box {
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.08), rgba(255, 193, 7, 0.02));
  border: 1px solid rgba(255, 193, 7, 0.18);
  border-left: 3px solid #ffc107;
  border-radius: 8px;
  padding: 16px 20px;
  margin: 16px 0;
}

.legal-warning-box p {
  margin: 0;
  color: var(--tertiary);
  font-size: 14px;
}

.legal-warning-box i {
  color: #ffc107;
  margin-right: 8px;
}

/* Tablo stili */
.legal-section table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-family: "Rajdhani", sans-serif;
  font-size: 14px;
}

.legal-section table th {
  background: var(--panel-strong);
  color: var(--emerald);
  font-weight: 700;
  text-align: left;
  padding: 10px 14px;
  border: 1px solid var(--line-soft);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.5px;
}

.legal-section table td {
  padding: 10px 14px;
  border: 1px solid var(--line-soft);
  color: var(--muted);
  font-weight: 500;
}

.legal-section table tr:nth-child(even) td {
  background: rgba(0, 163, 108, 0.03);
}

/* Son güncelleme notu */
.legal-footer-note {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
  text-align: center;
}

.legal-footer-note p {
  font-family: "Rajdhani", sans-serif;
  font-size: 13px;
  color: rgba(169, 187, 176, 0.5);
  margin: 0;
}

/* İletişim sayfası özel */
.legal-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin: 20px 0;
}

.legal-contact-card {
  background: linear-gradient(135deg, var(--panel), var(--bg-2));
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.legal-contact-card:hover {
  border-color: rgba(0, 163, 108, 0.3);
  transform: translateY(-2px);
}

.legal-contact-card i {
  font-size: 28px;
  color: var(--emerald);
  margin-bottom: 12px;
}

.legal-contact-card h4 {
  font-family: "Teko", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--tertiary);
  margin: 0 0 6px;
}

.legal-contact-card p {
  font-family: "Rajdhani", sans-serif;
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

/* Mobile responsive */
@media (max-width: 600px) {
  .legal-page {
    padding: 24px 16px 48px;
  }

  .legal-page-header {
    margin-bottom: 28px;
    padding-bottom: 20px;
  }

  .legal-toc {
    padding: 16px;
  }

  .legal-section table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.popular-games {
  margin-bottom: 18px;
}

.popular-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line-soft);
  background: linear-gradient(
    160deg,
    rgba(40, 55, 48, 0.95),
    rgba(15, 17, 16, 0.95)
  );
  color: var(--tertiary);
  border-radius: 10px;
  padding: 7px 14px;
  font-size: 14px;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  letter-spacing: 0.3px;
  margin-bottom: 10px;
}

.popular-section-label i {
  color: var(--emerald);
  font-size: 13px;
}

/* ── Category Navigation Bar ── */
.category-bar {
  margin-bottom: 10px;
}

.category-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: nowrap;
  padding: 8px 0;
}

.category-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 0;
  gap: 10px;
  padding: 14px 10px;
  border-radius: 8px;
  border: 1px solid rgba(0, 163, 108, 0.2);
  background: linear-gradient(
    180deg,
    rgba(25, 40, 34, 0.95),
    rgba(12, 18, 15, 0.98)
  );
  color: rgba(232, 245, 233, 0.75);
  font-size: 15px;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease;
}

.category-pill i {
  font-size: 15px;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.category-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 163, 108, 0.45);
  color: var(--text);
  background: linear-gradient(
    180deg,
    rgba(0, 163, 108, 0.12),
    rgba(12, 18, 15, 0.98)
  );
  box-shadow: 0 4px 14px rgba(0, 163, 108, 0.15);
}

.category-pill:hover i {
  opacity: 1;
}

.category-pill.active {
  background: linear-gradient(135deg, var(--emerald), var(--emerald-strong));
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 18px rgba(0, 163, 108, 0.35);
}

.category-pill.active i {
  opacity: 1;
}

/* ── Merkez Dock Butonu (Favicon) — sadece mobilde görünür ── */
.center-dock-btn {
  position: relative;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: transparent !important;
  border: none !important;
  padding: 6px !important;
}

/* Dönen neon halka — sadece mobilde göster, masaüstünde gizle */
.center-dock-btn::before {
  content: none;
}

.center-dock-icon {
  position: relative;
  z-index: 1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--emerald);
  object-fit: contain;
  background: rgba(10, 14, 12, 0.95);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow:
    0 2px 10px rgba(0, 0, 0, 0.4),
    0 0 6px rgba(0, 163, 108, 0.15);
}

.center-dock-btn:hover .center-dock-icon {
  transform: scale(1.1);
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.5),
    0 0 12px rgba(0, 163, 108, 0.25);
}

/* ── Popup Menü (yukarı açılır) ── */
.center-dock-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background:
    linear-gradient(180deg,
      rgba(20, 34, 28, 0.97) 0%,
      rgba(10, 14, 12, 0.99) 100%
    );
  border: 1px solid rgba(0, 163, 108, 0.2);
  border-radius: 14px;
  padding: 8px 0;
  min-width: 210px;
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  box-shadow:
    0 -8px 32px rgba(0, 0, 0, 0.5),
    0 0 20px rgba(0, 163, 108, 0.08),
    inset 0 1px 0 rgba(0, 163, 108, 0.1);
  z-index: 100;
  overflow: hidden;
}

/* Menü üst kenarda ince emerald çizgi */
.center-dock-menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 16px;
  right: 16px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 163, 108, 0.4), transparent);
  pointer-events: none;
}

.center-dock-menu.open {
  display: flex;
  animation: dockMenuIn 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes dockMenuIn {
  from { opacity: 0; transform: translateX(-50%) translateY(10px) scale(0.96); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }
}

.center-dock-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  margin: 2px 8px;
  border-radius: 8px;
  color: var(--muted);
  text-decoration: none;
  font-family: "Rajdhani", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: all 0.18s ease;
  white-space: nowrap;
  position: relative;
}

.center-dock-menu a:hover {
  background: rgba(0, 163, 108, 0.1);
  color: var(--emerald);
  transform: translateX(2px);
}

.center-dock-menu a:active {
  background: rgba(0, 163, 108, 0.16);
  color: var(--emerald);
}

.center-dock-menu a i {
  color: var(--emerald);
  width: 20px;
  font-size: 15px;
  text-align: center;
  flex-shrink: 0;
  opacity: 0.85;
  transition: opacity 0.18s ease;
}

.center-dock-menu a:hover i {
  opacity: 1;
}

.center-dock-menu a span {
  display: inline !important;
  font-size: 14px !important;
  color: inherit !important;
}

/* ---- Promo card glow rotation custom property ---- */
@property --glow-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@keyframes promoGlowSpin {
  0% {
    --glow-angle: 0deg;
  }
  100% {
    --glow-angle: 360deg;
  }
}

@keyframes mobileCardGlow {
  0% {
    box-shadow: 0 0 12px rgba(0, 255, 163, 0.2), 0 0 30px rgba(0, 255, 163, 0.05);
  }
  50% {
    box-shadow: 0 0 22px rgba(0, 255, 163, 0.45), 0 0 50px rgba(0, 255, 163, 0.15);
  }
  100% {
    box-shadow: 0 0 12px rgba(0, 255, 163, 0.2), 0 0 30px rgba(0, 255, 163, 0.05);
  }
}

@keyframes mobileCardBreath {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

.promo-cards {
  margin-bottom: 18px;
}

.promo-cards-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

@media (min-width: 900px) {
  .promo-cards-wrapper {
    flex-direction: row;
    gap: 48px;
  }
}

.promo-group {
  display: grid;
  flex: 1;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  position: relative;
  gap: 0 28px;
}

.promo-card {
  display: block;
  position: relative;
  border-radius: 18px;
  overflow: visible;
  border: 0;
  box-shadow: none;
  aspect-ratio: 486 / 280;
  transition:
    transform 0.35s cubic-bezier(0.22, 0.68, 0, 1.3),
    filter 0.35s ease;
  z-index: 1;
}

.promo-card:hover {
  transform: scale(1.03);
  z-index: 5;
}

/* The actual card image */
.promo-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  position: relative;
  z-index: 2;
}

/* ---- Snake glow border that respects the PNG silhouette ---- */
/* We layer a slightly-larger duplicate of the image behind the main image,
   colourised via brightness+sepia, with a rotating conic-gradient drop-shadow
   that hugs the alpha-contour of the PNG.                                    */

.promo-card::before {
  content: "";
  position: absolute;
  inset: -4px; /* bleed outward to form the "border" thickness  */
  z-index: 1;
  background: conic-gradient(
    from var(--glow-angle),
    transparent 0deg,
    #00ffa3 40deg,
    #00d98b 80deg,
    transparent 120deg,
    transparent 180deg,
    #22ffcc 220deg,
    #00ffa3 260deg,
    transparent 300deg
  );
  -webkit-mask-image: var(--card-mask);
  mask-image: var(--card-mask);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  filter: blur(6px) brightness(1.6);
  opacity: 0.7;
  transition:
    opacity 0.4s ease,
    filter 0.4s ease,
    inset 0.4s ease;
  animation: promoGlowSpin 2.5s linear infinite;
  pointer-events: none;
}

.promo-card:hover::before {
  opacity: 1;
  inset: -6px;
  filter: blur(8px) brightness(1.6);
}

/* Also add an outer glow via drop-shadow on the card itself */
.promo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--card-mask);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  filter: drop-shadow(0 0 12px rgba(0, 255, 163, 0.7))
    drop-shadow(0 0 24px rgba(0, 255, 163, 0.35));
  opacity: 0.5;
  transition:
    opacity 0.4s ease,
    filter 0.4s ease;
  pointer-events: none;
}

.promo-card:hover::after {
  opacity: 1;
  filter: drop-shadow(0 0 14px rgba(0, 255, 163, 0.75))
    drop-shadow(0 0 28px rgba(0, 255, 163, 0.4));
}

.promo-separator {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 170px;
  height: 170px;
  z-index: 10;
  pointer-events: none;
}

@media (min-width: 900px) {
  .promo-separator {
    width: 210px;
    height: 210px;
  }
}

@media (min-width: 1200px) {
  .promo-separator {
    width: 240px;
    height: 240px;
  }
}

.promo-separator img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
}

.popular-tabs-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}

.popular-tab-btn {
  border: 1px solid var(--line-soft);
  background: linear-gradient(
    160deg,
    rgba(40, 55, 48, 0.95),
    rgba(15, 17, 16, 0.95)
  );
  color: var(--tertiary);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 17px;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.popular-tab-btn.active {
  background: linear-gradient(130deg, var(--emerald), var(--tertiary));
  color: var(--neutral);
  border-color: rgba(232, 245, 233, 0.62);
}

.popular-tab-panel {
  display: none;
}

.popular-tab-panel.active {
  display: block;
  animation: panelFadeIn 0.3s ease;
}

@keyframes panelFadeIn {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.jackpot-pool {
  margin-bottom: 18px;
}

.jackpot-title {
  margin: 0 0 10px;
  font-size: 33px;
  line-height: 0.95;
  letter-spacing: 0.35px;
  font-family: "Teko", sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.jackpot-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff7444;
  box-shadow: 0 0 10px rgba(255, 116, 68, 0.75);
}

.jackpot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.jackpot-card {
  position: relative;
  min-height: 198px;
  border-radius: 18px;
  padding: 14px 14px 12px;
  border: 1px solid rgba(232, 245, 233, 0.16);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.jackpot-card::before {
  content: "";
  position: absolute;
  width: 120%;
  height: 22px;
  right: -26px;
  top: 26px;
  transform: rotate(-34deg);
  background: rgba(255, 255, 255, 0.12);
}

.jackpot-tier {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  border-radius: 999px;
  padding: 0 11px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.12);
}

.jackpot-head {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 2;
}

.jackpot-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 21px;
}

.jackpot-symbol {
  display: block;
  line-height: 1;
}

.jackpot-head h4 {
  margin: 0;
  font-size: 43px;
  line-height: 0.8;
  font-family: "Teko", sans-serif;
}

.jackpot-amount {
  margin: 14px 0 4px;
  line-height: 1;
  font-size: clamp(27px, 2vw, 38px);
  font-weight: 700;
  font-family: "Rajdhani", sans-serif;
  letter-spacing: 0.2px;
  position: relative;
  z-index: 2;
  white-space: nowrap;
}

.jackpot-note {
  margin: 0;
  font-size: 20px;
  font-family: "Teko", sans-serif;
  line-height: 1;
  opacity: 0.92;
  position: relative;
  z-index: 2;
}

.jackpot-suit {
  position: absolute;
  right: 14px;
  bottom: 6px;
  font-size: 82px;
  opacity: 0.16;
}

.jackpot-amount.is-rising {
  text-shadow: 0 0 10px rgba(232, 245, 233, 0.75);
}

.jackpot-grand {
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 255, 255, 0.14),
      transparent 24%
    ),
    linear-gradient(135deg, #b0122f, #591326);
}

.jackpot-mega {
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 255, 255, 0.14),
      transparent 24%
    ),
    linear-gradient(135deg, #0f9a5f, #0b4d33);
}

.jackpot-major {
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 255, 255, 0.14),
      transparent 24%
    ),
    linear-gradient(135deg, #2b6ecf, #1d3f8f);
}

.jackpot-mini {
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 255, 255, 0.14),
      transparent 24%
    ),
    linear-gradient(135deg, #8f3cce, #51257c);
}

.match-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 0;
  margin-bottom: 18px;
}

.match-card {
  border: 1px solid rgba(118, 246, 198, 0.18);
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(10, 39, 30, 0.96),
    rgba(7, 26, 20, 0.98)
  );
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

.match-card header,
.match-header {
  padding: 12px 12px 14px;
  border-bottom: 1px solid rgba(161, 255, 219, 0.14);
  background:
    radial-gradient(
      circle at 50% -40%,
      rgba(129, 244, 198, 0.22),
      transparent 60%
    ),
    linear-gradient(180deg, rgba(15, 62, 47, 0.92), rgba(8, 35, 27, 0.9)),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 11px,
      rgba(195, 255, 233, 0.07) 11px,
      rgba(195, 255, 233, 0.07) 12px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 11px,
      rgba(195, 255, 233, 0.06) 11px,
      rgba(195, 255, 233, 0.06) 12px
    );
}

.match-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.club-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #effff8;
  border: 2px solid rgba(236, 255, 249, 0.8);
  box-shadow: inset 0 0 0 1px rgba(7, 24, 18, 0.6);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}

.club-mark.home {
  background: radial-gradient(circle at 30% 25%, #8ffad1, #0f7855 74%);
}

.club-mark.away {
  background: radial-gradient(circle at 30% 25%, #b8ffe5, #146e52 76%);
}

.match-head-copy {
  text-align: center;
  flex: 1;
}

.match-head-copy h3 {
  margin: 0;
  font-size: clamp(20px, 1.75vw, 32px);
  line-height: 0.9;
  font-family: "Teko", sans-serif;
  font-weight: 700;
  color: #f7fffc;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.45);
}

.versus {
  display: block;
  color: #d6fff1;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: "Rajdhani", sans-serif;
  margin: 1px 0 0;
  font-size: 14px;
}

.league {
  margin: 1px 0 0;
  color: rgba(228, 255, 245, 0.95);
  font-size: 30px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 700;
  font-family: "Teko", sans-serif;
  line-height: 0.86;
}

.match-card h3 {
  margin: 0;
}

.meta {
  border-top: 1px solid rgba(191, 255, 232, 0.08);
  border-bottom: 1px solid rgba(191, 255, 232, 0.1);
  padding: 10px 12px;
}

.match-lines {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.match-lines p {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 31px;
  font-family: "Teko", sans-serif;
  line-height: 0.85;
  color: #f6fff9;
}

.match-lines p strong {
  font-size: 37px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.2px;
}

.odds {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  padding: 10px 12px 12px;
}

.odds button {
  border: 1px solid rgba(173, 255, 227, 0.14);
  border-radius: 6px;
  background: linear-gradient(
    180deg,
    rgba(18, 69, 53, 0.88),
    rgba(11, 44, 34, 0.9)
  );
  color: #f4fffb;
  padding: 9px 7px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-family: "Rajdhani", sans-serif;
  font-size: 14px;
}

.odds button span {
  opacity: 0.92;
}

.odds button strong {
  font-size: 27px;
  font-family: "Teko", sans-serif;
  line-height: 0.88;
  letter-spacing: 0.2px;
  color: #f9fffd;
}

.odd-value.up {
  color: var(--emerald);
}

.odd-value.down {
  color: var(--muted);
}

.league-tiles {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  padding: 0;
  margin-bottom: 18px;
}

.league-tile {
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  overflow: hidden;
  background: var(--secondary);
  min-height: 148px;
  position: relative;
  text-decoration: none;
  display: block;
  cursor: pointer;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.league-tile:hover {
  transform: translateY(-4px) scale(1.03);
  border-color: rgba(0, 163, 108, 0.5);
  box-shadow: 0 8px 24px rgba(0, 163, 108, 0.25), 0 0 0 1px rgba(0, 163, 108, 0.15);
}

.league-tile::before {
  content: "";
  display: none;
  position: absolute;
  width: 84%;
  height: 84%;
  left: 8%;
  top: 8%;
  border-radius: 999px;
  border: 1px solid rgba(146, 255, 217, 0.28);
  background: radial-gradient(
    circle at 30% 30%,
    rgba(167, 255, 227, 0.18),
    rgba(4, 19, 14, 0.3)
  );
  z-index: 1;
}

.league-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  filter: none;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.league-tile:hover img {
  transform: scale(1.06);
  filter: brightness(1.15);
}

.league-tile h4 {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 8px;
  z-index: 2;
  margin: 0;
  font-family: "Teko", sans-serif;
  font-size: 29px;
  line-height: 0.9;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.65);
}

.discover-strip {
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 18px;
  padding: 0;
  border: none;
  background: none;
}

.discover-banner {
  display: block;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.discover-banner:hover {
  transform: scale(1.005);
  filter: brightness(1.05);
}

.discover-banner img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
}

.discover-copy h2 {
  margin: 0;
  font-family: "Teko", sans-serif;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 0.9;
}

.discover-copy p {
  margin: 8px 0 14px;
  font-size: 25px;
  color: var(--tertiary);
}

.discover-btn {
  text-decoration: none;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--neutral);
  background: linear-gradient(120deg, var(--tertiary), var(--emerald));
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 700;
  text-transform: uppercase;
}

.discover-reel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  align-items: end;
}

.discover-reel img {
  width: 100%;
  border-radius: 8px;
  height: 240px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.games-panel {
  padding: 0;
  margin-bottom: 18px;
}

.section-title {
  margin: 0 0 10px;
  font-size: 22px;
  font-family: "Rajdhani", sans-serif;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.game-card-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.game-card {
  border-radius: 12px;
  overflow: hidden;
  border: none;
  background: none;
  transition: transform 0.24s ease;
}

.game-card:hover {
  transform: translateY(-4px);
}

.match-card,
.jackpot-card,
.provider-strip img {
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

.match-card:hover,
.jackpot-card:hover,
.discover-strip:hover,
.provider-strip img:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.36);
}

.news-close,
.quick-icon,
.quick-pill,
.auth-segment,
.hero-cta,
.hero-nav,
.hero-dot,
.tab-btn,
.popular-tab-btn,
.odds button,
.discover-btn,
.game-card a {
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

.news-close:hover,
.quick-icon:hover,
.quick-pill:hover,
.auth-segment:hover,
.hero-cta:hover,
.hero-nav:hover,
.hero-dot:hover,
.tab-btn:hover,
.popular-tab-btn:hover,
.odds button:hover,
.discover-btn:hover,
.game-card a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.news-close:active,
.quick-icon:active,
.quick-pill:active,
.auth-segment:active,
.hero-cta:active,
.hero-nav:active,
.hero-dot:active,
.tab-btn:active,
.popular-tab-btn:active,
.odds button:active,
.discover-btn:active,
.game-card a:active {
  transform: translateY(0) scale(0.98);
}

.game-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.game-card h4 {
  display: none;
}

.game-card > a {
  display: block;
  text-decoration: none;
}

.game-card::after {
  content: attr(data-provider);
  display: none;
  margin: 0 10px 10px;
  color: rgba(222, 255, 242, 0.75);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.provider-strip {
  margin-top: 12px;
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  padding: 10px;
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 8px;
  background: rgba(8, 33, 26, 0.88);
}

.provider-strip img {
  width: 100%;
  height: 44px;
  object-fit: contain;
  border-radius: 999px;
  border: 1px solid rgba(142, 255, 212, 0.18);
  background: rgba(0, 0, 0, 0.3);
  padding: 4px;
}

.site-footer {
  margin-top: 18px;
  padding: 0 0 30px;
  color: var(--muted);
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.3));
}

.footer-shell {
  width: min(1600px, calc(100% - clamp(28px, 14vw, 360px)));
  max-width: none;
  margin: 0 auto;
  padding: 24px 10px 0;
  border-top: 1px solid rgba(232, 245, 233, 0.08);
}

/* ── Row 1: Top Bar ── */
.footer-top-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 24px 0 14px;
}

.footer-brand-wrap {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-brand {
  display: block;
}

.footer-brand img {
  height: 48px; /* Slightly larger for center focus */
  width: auto;
  display: block;
  filter: drop-shadow(0 4px 10px rgba(0, 163, 108, 0.25));
}

.footer-copy {
  margin: 0;
  color: rgba(232, 245, 233, 0.5);
  font-size: 13px;
  letter-spacing: 0.2px;
}

.footer-social-icons {
  grid-column: 3;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.footer-social-icons a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-decoration: none;
  color: var(--text);
  font-size: 15px;
  border: 1px solid var(--line);
  background: radial-gradient(
    circle at 30% 25%,
    rgba(0, 163, 108, 0.22),
    rgba(15, 17, 16, 0.92)
  );
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.footer-social-icons a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 163, 108, 0.3);
  background: linear-gradient(135deg, var(--emerald), var(--emerald-strong));
  color: #fff;
}

/* ── Divider ── */
.footer-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(232, 245, 233, 0.1),
    transparent
  );
  margin: 0;
}

/* ── Row 2: Warning Bar ── */
.footer-warning-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  flex-wrap: wrap;
}

.footer-warning-msg {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(232, 245, 233, 0.55);
  letter-spacing: 0.2px;
}

.footer-warning-msg i {
  color: #ffb84d;
  font-size: 14px;
}

.footer-warning-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.footer-warning-nav a {
  text-decoration: none;
  color: rgba(232, 245, 233, 0.7);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 5px 12px;
  border-radius: 4px;
  border: 1px solid rgba(232, 245, 233, 0.08);
  background: rgba(255, 255, 255, 0.03);
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.footer-warning-nav a:hover {
  color: var(--tertiary);
  border-color: var(--line);
  background: rgba(0, 163, 108, 0.1);
}

/* ── Row 3: 6-Column Link Grid ── */
.footer-link-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  padding: 22px 0;
}

.footer-link-col h4 {
  margin: 0 0 10px;
  font-family: "Rajdhani", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--tertiary);
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.footer-link-col a {
  display: block;
  text-decoration: none;
  color: rgba(232, 245, 233, 0.55);
  font-size: 13px;
  padding: 4px 0;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.footer-link-col a:hover {
  color: var(--tertiary);
  transform: translateX(3px);
}

/* ── Row 4: Provider Logos Strip ── */
.footer-provider-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 18px 0;
}

.footer-provider-strip img {
  height: 36px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  border-radius: 6px;
  border: 1px solid rgba(232, 245, 233, 0.06);
  background: rgba(0, 0, 0, 0.2);
  padding: 4px 8px;
  filter: brightness(0.85) saturate(0.9);
  transition:
    transform 0.2s ease,
    filter 0.2s ease,
    box-shadow 0.2s ease;
}

.footer-provider-strip img:hover {
  transform: translateY(-2px);
  filter: brightness(1) saturate(1);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}

/* ── Row 5: Payment Method Strip ── */
.footer-payment-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 18px 0;
}

.footer-payment-strip a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 4px 10px;
  border-radius: 8px;
  border: 1px solid rgba(232, 245, 233, 0.08);
  background: rgba(255, 255, 255, 0.04);
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.footer-payment-strip a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 0.08);
}

.footer-payment-strip img {
  max-height: 26px;
  width: auto;
  object-fit: contain;
  filter: brightness(0.92);
}

/* ── Row 6: Certificate Badge (centered) ── */
.footer-cert-center {
  display: flex;
  justify-content: center;
  padding: 20px 0;
}

.footer-cert-badge-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 24px;
  border-radius: 14px;
  border: 1px solid rgba(0, 163, 108, 0.2);
  background: linear-gradient(
    145deg,
    rgba(0, 163, 108, 0.1),
    rgba(15, 17, 16, 0.95)
  );
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.footer-cert-badge-card .footer-cert-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 163, 108, 0.3));
}

.footer-cert-label {
  color: rgba(232, 245, 233, 0.7);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* ── Row 7: Legal Disclaimer ── */
.footer-legal-text {
  text-align: center;
  padding: 16px 0;
  max-width: 900px;
  margin: 0 auto;
}

.footer-legal-text p {
  margin: 0 0 10px;
  font-size: 11px;
  line-height: 1.55;
  color: rgba(232, 245, 233, 0.35);
}

.footer-legal-text p:last-child {
  margin-bottom: 0;
}

.footer-legal-text a {
  color: rgba(0, 163, 108, 0.7);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.footer-legal-text a:hover {
  color: var(--emerald);
}

/* ── Footer Ticker Strips (scrolling logo marquees) ── */
.footer-ticker-strip {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 6%,
    #000 94%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 6%,
    #000 94%,
    transparent 100%
  );
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: footerTickerScroll 90s linear infinite;
}

.footer-ticker-strip:hover .ticker-track {
  animation-play-state: paused;
}

.ticker-content {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-shrink: 0;
  padding-right: 28px;
}

.footer-ticker-strip .ticker-content img {
  height: 55px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  filter: brightness(0.88) saturate(0.9);
  transition:
    transform 0.25s ease,
    filter 0.25s ease;
  flex-shrink: 0;
}

.footer-ticker-strip .ticker-content img:hover {
  transform: translateY(-3px) scale(1.05);
  filter: brightness(1.1) saturate(1);
}

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

/* ── PROMOTIONS PAGE ONLY ── */

.promotions-tab {
  position: relative;
  border-radius: 24px;
  padding: 48px;
  background: linear-gradient(160deg, rgba(25, 36, 30, 0.9), rgba(15, 17, 16, 0.95));
  border: 1px solid rgba(0, 163, 108, 0.18);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45), inset 0 0 40px rgba(0, 163, 108, 0.06);
  backdrop-filter: blur(12px);
  margin-bottom: 40px;
  overflow: hidden;
}

.promotions-tab::before {
  content: "\f02b";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: -60px;
  right: -40px;
  font-size: 440px;
  color: rgba(0, 163, 108, 0.03);
  z-index: 0;
  pointer-events: none;
  transform: rotate(-15deg);
}

.promotions-hero {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.promotions-kicker {
  color: var(--emerald);
  font-family: "Rajdhani", sans-serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin: 0 0 12px;
  text-shadow: 0 0 18px rgba(0, 163, 108, 0.5);
}

.promotions-hero h2 {
  font-family: "Teko", sans-serif;
  font-size: 110px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px;
  line-height: 0.85;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ffffff, #88ffc4);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 16px rgba(0, 163, 108, 0.35));
}

.promotions-page-only .promotions-tab {
  margin: 8px 0 24px;
  padding: clamp(14px, 1.8vw, 24px) 0 24px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.promotions-page-only .promotions-tab::before {
  content: none;
}

.promotions-subtitle {
  color: rgba(232, 245, 233, 0.85);
  font-size: 24px;
  margin: 0 0 28px;
  font-weight: 500;
}

.promotions-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 40px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-strong));
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 24px rgba(0, 163, 108, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promotions-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0, 163, 108, 0.6);
}

.promotions-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  position: relative;
  z-index: 2;
}

.promotions-page-only .promotions-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: min(1560px, 100%);
  margin: 0 auto;
  padding: 0;
  gap: 22px;
}

.promotion-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(20, 28, 24, 0.8), rgba(10, 14, 12, 0.9));
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  position: relative;
}

.promotion-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45), inset 0 0 24px rgba(0, 163, 108, 0.15);
  border-color: rgba(0, 163, 108, 0.4);
  z-index: 10;
}

.promotion-card a {
  display: block;
  text-decoration: none;
  height: 100%;
}

.promotion-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transition: filter 0.4s ease, transform 0.4s ease;
  filter: brightness(0.95) saturate(0.95);
}

.promotions-page-only .promotion-card img {
  aspect-ratio: 16 / 6.9;
}

.promotion-card:hover img {
  filter: brightness(1.1) saturate(1.1);
  transform: scale(1.05);
}

.promotion-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  box-shadow: inset 0 0 0 1px rgba(0, 163, 108, 0);
  transition: box-shadow 0.4s ease;
  pointer-events: none;
}

.promotion-card:hover::after {
  box-shadow: inset 0 0 0 2px rgba(0, 163, 108, 0.6);
}

@media (max-width: 1140px) {
  .topbar {
    top: 28px;
  }

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

  .jackpot-card {
    min-height: 184px;
  }

  .jackpot-head h4 {
    font-size: 39px;
  }

  .jackpot-note {
    font-size: 18px;
  }

  .fusion-panel {
    --emerald-notch: 16px;
    height: 98px;
    min-height: 98px;
  }

  .fusion-label span {
    font-size: 28px;
  }

  .fusion-label strong {
    font-size: 23px;
  }

  .fusion-emerald {
    width: 46px;
    height: 46px;
  }

  .fusion-emerald i {
    font-size: 18px;
  }

  .category-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .match-head-copy h3 {
    font-size: clamp(18px, 2.4vw, 28px);
  }

  .league {
    font-size: 24px;
  }

  .match-lines p {
    font-size: 25px;
  }

  .match-lines p strong {
    font-size: 30px;
  }

  .league-tiles {
    grid-template-columns: repeat(3, 1fr);
  }

  .game-card-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .provider-strip {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .footer-link-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-top-bar {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .footer-warning-bar {
    justify-content: center;
    text-align: center;
  }

  .footer-warning-nav {
    justify-content: center;
  }
}

@media (max-width: 820px) {
  .floating-world,
  .floating-close {
    display: none;
  }

  .popular-tabs-nav {
    grid-template-columns: 1fr;
  }

  .popular-tab-btn {
    font-size: 15px;
    padding: 9px 10px;
  }

  .jackpot-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .jackpot-card {
    min-height: 170px;
  }

  .jackpot-title {
    font-size: 29px;
  }

  .jackpot-head h4 {
    font-size: 36px;
  }

  .jackpot-amount {
    font-size: clamp(25px, 7.4vw, 34px);
  }

  .fusion-panel {
    --emerald-notch: 12px;
    height: 84px;
    min-height: 84px;
  }

  .fusion-label {
    top: 6px;
  }

  .fusion-label span {
    font-size: 22px;
  }

  .fusion-label strong {
    font-size: 17px;
  }

  .fusion-emerald {
    width: 36px;
    height: 36px;
  }

  .fusion-emerald i {
    font-size: 15px;
  }

  .news-ticker {
    min-height: 28px;
    font-size: 10px;
    padding-right: 4px;
  }

  .news-close {
    width: 20px;
    height: 20px;
    font-size: 14px;
  }

  .topbar {
    top: 28px;
  }

  .topbar-row {
    width: calc(100% - 16px);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
  }

  /* Quick-links: hide text, show only icons */
  .quick-links .quick-pill span {
    display: none;
  }
  .quick-links .quick-pill {
    padding: 6px 8px;
    font-size: 14px;
  }
  .quick-links {
    gap: 4px;
  }

  body[data-auth-logged-in="1"] .quick-links {
    display: none;
  }
  /* Hide promo & bonus talep pills on mobile — only WP + Telegram */
  .quick-links a[href="/promotions"],
  .quick-links a[href="/bonustaleps"] {
    display: none;
  }

  .page-shell {
    width: calc(100% - 16px);
  }

  .footer-shell {
    width: calc(100% - 16px);
  }

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

  .footer-top-bar {
    flex-direction: column;
    gap: 12px;
  }

  .footer-warning-bar {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .footer-warning-nav {
    justify-content: center;
  }

  .footer-provider-strip img {
    height: 30px;
    max-width: 90px;
  }

  .brand {
    width: 112px;
    margin-right: auto;
  }

  .auth-segment {
    font-size: 11px;
    padding: 5px 10px;
    gap: 5px;
  }

  .auth-segment i {
    font-size: 12px;
  }

  .auth-links {
    gap: 4px;
    margin-left: auto;
  }

  /* ── Mobile: Balance pill → compact ₺ icon only ── */
  .user-balance-pill {
    padding: 6px 9px;
    gap: 0;
  }

  .user-balance-pill .bal-main,
  .user-balance-pill .bal-toggle-icon {
    display: none;
  }

  .user-balance-pill i.fa-wallet {
    font-size: 15px;
  }

  .balance-dropdown {
    min-width: 200px;
    right: -40px;
  }

  .user-logged-area {
    gap: 6px;
  }

  .topbar-mobile-support {
    display: inline-flex;
    align-items: center;
    gap: 5px;
  }

  .topbar-mobile-support .quick-icon {
    width: 30px;
    height: 30px;
    font-size: 15px;
  }


  .user-avatar-btn {
    width: 34px;
    height: 34px;
    padding: 0;
    justify-content: center;
  }

  .user-logged-area .notif-btn {
    width: 34px;
    height: 34px;
  }

  .user-avatar-btn .user-name-short {
    display: none;
  }

  .user-deposit-shortcut {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    font-size: 20px;
  }

  .user-avatar-btn .fa-chevron-down {
    display: none;
  }

  .auth-split {
    padding: 2px;
    gap: 1px;
  }

  .quick-links,
  .auth-links {
    flex-wrap: nowrap;
  }

  .hero-slider {
    aspect-ratio: 25 / 9;
    min-height: auto;
    background: none;
    border-radius: 12px;
  }

  .hero-slider::before {
    border-radius: 12px;
  }

  .hero-slide {
    background-size: 100% 100%;
  }

  .hero-nav {
    width: 26px;
    height: 26px;
    font-size: 11px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.35);
  }

  .hero-prev {
    left: 6px;
  }

  .hero-next {
    right: 6px;
  }

  .hero-dots {
    bottom: 6px;
    gap: 5px;
  }

  .hero-dot {
    width: 6px;
    height: 6px;
  }

  .promotions-tab {
    border-radius: 18px;
    padding: 16px 12px;
    scroll-margin-top: 112px;
  }

  .promotions-tab::before {
    font-size: clamp(170px, 60vw, 290px);
    inset: -30px 0 auto;
  }

  .promotions-kicker {
    font-size: clamp(20px, 5.2vw, 30px);
  }

  .promotions-hero h2 {
    font-size: clamp(44px, 14vw, 74px);
  }

  .promotions-subtitle {
    font-size: clamp(17px, 4.5vw, 24px);
  }

  .promotions-cta {
    width: 100%;
    max-width: 420px;
    font-size: 16px;
    min-height: 42px;
    padding: 8px 14px;
  }

  .promotions-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .promotions-page-only .promotions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    max-width: none;
    padding: 0;
  }

  .promotions-page-only .promotion-card img {
    aspect-ratio: 16 / 7;
  }

  .hero-copy {
    left: 20px;
    right: 20px;
    bottom: 24px;
  }

  .promo-row,
  .discover-strip {
    grid-template-columns: 1fr;
  }

  .game-card-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .promo-card img {
    height: 100%;
  }

  /* Mobile: keep the same rotating glow as desktop, just smaller */
  .promo-card::before {
    inset: -3px;
    filter: blur(5px) brightness(1.5);
    opacity: 0.6;
  }

  .promo-card::after {
    filter: drop-shadow(0 0 8px rgba(0, 255, 163, 0.5))
      drop-shadow(0 0 18px rgba(0, 255, 163, 0.25));
    opacity: 0.4;
  }

  .promo-card {
    overflow: visible;
    animation: mobileCardBreath 4s ease-in-out infinite;
  }

  .promo-card:nth-child(3) {
    animation-delay: -2s;
  }

  /* Mobile: promo cards stack vertically */
  .promo-cards-wrapper {
    gap: 24px;
  }

  .promo-group {
    grid-template-columns: 1fr 1fr;
    gap: 0 8px;
  }

  .promo-separator {
    width: clamp(80px, 28vw, 130px);
    height: clamp(80px, 28vw, 130px);
  }

  /* ═══════════════════════════════════════════════
     MOBILE BOTTOM NAV — Premium Emerald Dock
     ═══════════════════════════════════════════════ */
  .category-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    margin: 0;
    padding: 0 !important;
    background:
      linear-gradient(180deg,
        rgba(18, 28, 22, 0.92) 0%,
        rgba(10, 14, 12, 0.98) 100%
      );
    border-top: 1px solid rgba(0, 163, 108, 0.25);
    backdrop-filter: blur(18px) saturate(1.4);
    -webkit-backdrop-filter: blur(18px) saturate(1.4);
    box-shadow:
      0 -2px 24px rgba(0, 0, 0, 0.5),
      0 -1px 12px rgba(0, 163, 108, 0.08),
      inset 0 1px 0 rgba(0, 163, 108, 0.06);
  }

  /* Üst kenarda ince emerald ışık çizgisi */
  .category-bar::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg,
      transparent,
      rgba(0, 255, 163, 0.5) 30%,
      rgba(0, 255, 163, 0.8) 50%,
      rgba(0, 255, 163, 0.5) 70%,
      transparent
    );
    z-index: 1;
    pointer-events: none;
  }

  .category-nav {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    padding: 0;
    justify-content: stretch;
    align-items: flex-end;
  }

  .category-pill {
    flex: 1 1 0;
    flex-direction: column;
    padding: 10px 4px 8px;
    font-size: 10px;
    font-weight: 600;
    gap: 4px;
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: 0;
    background: transparent;
    color: rgba(169, 187, 176, 0.7);
    min-width: 0;
    position: relative;
    letter-spacing: 0.3px;
    transition: color 0.2s ease;
  }

  .category-pill i {
    font-size: 18px;
    opacity: 0.65;
    transition: opacity 0.2s ease, transform 0.2s ease, color 0.2s ease;
  }

  .category-pill span {
    font-size: 9px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /* Aktif ikon üstünde dot indikatör */
  .category-pill.active::after {
    content: "";
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--emerald);
    box-shadow: 0 0 6px rgba(0, 163, 108, 0.6);
  }

  .category-pill:hover,
  .category-pill:active {
    color: var(--emerald);
    background: transparent;
    border: none;
    box-shadow: none;
    transform: none;
  }

  .category-pill:hover i,
  .category-pill:active i,
  .category-pill.active i {
    opacity: 1;
    color: var(--emerald);
    transform: translateY(-1px);
  }

  .category-pill.active {
    color: var(--emerald);
    background: transparent;
    border: none;
    box-shadow: none;
    transform: none;
  }

  /* ── Merkez buton mobil — yukarı taşan premium ikon ── */
  .center-dock-btn {
    display: flex !important;
    flex: 0 0 auto !important;
    padding: 0 12px !important;
    margin-top: -22px;
    align-self: flex-start;
  }

  .center-dock-btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 62px;
    height: 62px;
    margin-top: -31px;
    margin-left: -31px;
    border-radius: 50%;
    background: conic-gradient(
      from var(--glow-angle, 0deg),
      transparent 0deg,
      #00ffa3 60deg,
      #00d98b 120deg,
      transparent 180deg,
      #22ffcc 240deg,
      #00ffa3 300deg,
      transparent 360deg
    );
    filter: blur(5px) brightness(1.5);
    opacity: 0.6;
    animation: promoGlowSpin 2.5s linear infinite;
    z-index: 0;
    pointer-events: none;
  }

  /* İkon altına glow yansıması */
  .center-dock-btn::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 8px;
    background: radial-gradient(ellipse, rgba(0, 255, 163, 0.3), transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
  }

  .center-dock-icon {
    width: 50px;
    height: 50px;
    border-width: 2px;
    box-shadow:
      0 4px 16px rgba(0, 0, 0, 0.5),
      0 0 8px rgba(0, 163, 108, 0.2);
  }

  /* Popup menü mobil */
  .center-dock-menu {
    min-width: 200px;
    bottom: calc(100% + 16px);
    border-radius: 14px;
    padding: 8px 0;
    background:
      linear-gradient(180deg,
        rgba(20, 34, 28, 0.97) 0%,
        rgba(10, 14, 12, 0.99) 100%
      );
    border: 1px solid rgba(0, 163, 108, 0.2);
    box-shadow:
      0 -8px 32px rgba(0, 0, 0, 0.55),
      0 0 20px rgba(0, 163, 108, 0.08),
      inset 0 1px 0 rgba(0, 163, 108, 0.1);
  }

  /* Menü oku (bottom triangle) */
  .center-dock-menu::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 6px;
    background: rgba(10, 14, 12, 0.99);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
  }

  .center-dock-menu a {
    padding: 12px 18px;
    font-size: 13px;
    gap: 12px;
    border-radius: 0;
    margin: 0 6px;
    border-radius: 8px;
  }

  .center-dock-menu a:hover,
  .center-dock-menu a:active {
    background: rgba(0, 163, 108, 0.12);
  }

  .center-dock-menu a i {
    font-size: 15px;
    width: 20px;
  }

  .center-dock-menu a span {
    display: inline !important;
    font-size: 13px !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
  }

  /* Mobile: league tiles 2-col */
  .league-tiles {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .surface {
    padding: 8px;
  }

  .discover-reel {
    grid-template-columns: 1fr;
  }

  .match-grid,
  .category-tabs {
    grid-template-columns: 1fr;
  }

  .club-mark {
    width: 36px;
    height: 36px;
    font-size: 9px;
  }

  .match-head-copy h3 {
    font-size: 21px;
  }

  .versus {
    font-size: 12px;
  }

  .league {
    font-size: 21px;
  }

  .match-lines p {
    font-size: 23px;
  }

  .match-lines p strong {
    font-size: 26px;
  }

  .odds button strong {
    font-size: 24px;
  }

  .provider-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* ─── Extra Small Screens ─── */
@media (max-width: 480px) {
  .brand {
    width: 105px;
  }

  .hero-slider {
    border-radius: 10px;
  }

  .hero-slider::before {
    border-radius: 10px;
  }

  .hero-nav {
    width: 22px;
    height: 22px;
    font-size: 10px;
  }

  .hero-prev {
    left: 4px;
  }

  .hero-next {
    right: 4px;
  }

  .hero-dots {
    bottom: 4px;
    gap: 4px;
  }

  .hero-dot {
    width: 5px;
    height: 5px;
  }

  .auth-segment span {
    display: none;
  }
  .auth-segment {
    padding: 7px 12px;
  }
  .auth-segment i {
    font-size: 14px;
  }

  .quick-links .quick-pill,
  .quick-links .quick-icon {
    padding: 5px 7px;
  }

  .category-pill {
    font-size: 9px;
    padding: 6px 2px 5px;
  }
  .category-pill i {
    font-size: 14px;
  }
}

/* ─── Promotion Modal ─── */
.promo-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(5, 8, 10, 0.78);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.24s ease,
    visibility 0.24s ease;
}

.promo-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.promo-modal {
  position: relative;
  width: min(920px, 100%);
  background: #151b23;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  transform: translateY(14px) scale(0.98);
  transition: transform 0.24s ease;
}

.promo-modal-overlay.active .promo-modal {
  transform: translateY(0) scale(1);
}

.promo-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.promo-modal-media img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 6.9;
  object-fit: cover;
}

.promo-modal-content {
  padding: 18px 20px 20px;
  background: linear-gradient(180deg, #171e27, #131922);
}

.promo-modal-content h3 {
  margin: 0 0 12px;
  padding-left: 10px;
  border-left: 4px solid var(--emerald);
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(26px, 3.6vw, 36px);
  line-height: 1;
  color: #f2f4f6;
  text-transform: uppercase;
}

.promo-modal-copy {
  max-height: 220px;
  overflow-y: auto;
  padding-right: 6px;
}

.promo-modal-copy p {
  margin: 0 0 9px;
  font-size: 26px;
  line-height: 1.35;
  color: rgba(232, 240, 245, 0.92);
}

.promo-modal-copy p:last-child {
  margin-bottom: 0;
}

@media (max-width: 860px) {
  .promo-modal-overlay {
    padding: 10px;
  }

  .promo-modal-content {
    padding: 14px 14px 16px;
  }

  .promo-modal-copy p {
    font-size: 19px;
  }
}

/* ─── Register Step Modal ─── */
.register-step-overlay {
  position: fixed;
  inset: 0;
  z-index: 1150;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: rgba(10, 14, 12, 0.84);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.24s ease,
    visibility 0.24s ease;
}

.register-step-overlay.active {
  opacity: 1;
  visibility: visible;
}

.register-step-modal {
  width: min(500px, 100%);
  max-height: calc(100vh - 16px);
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(0, 163, 108, 0.25);
  background:
    radial-gradient(circle at 70% 12%, rgba(0, 163, 108, 0.14), transparent 48%),
    linear-gradient(160deg, var(--panel-strong), var(--neutral) 58%, var(--bg-1));
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.58);
  transform: translateY(12px) scale(0.98);
  transition: transform 0.24s ease;
}

.register-step-overlay.active .register-step-modal {
  transform: translateY(0) scale(1);
}

.register-step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px 10px;
  border-bottom: 1px solid rgba(232, 245, 233, 0.1);
}

.register-step-logo {
  height: 36px;
  width: auto;
}

.register-step-close {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(0, 163, 108, 0.25);
  background: rgba(0, 163, 108, 0.12);
  color: var(--tertiary);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.register-step-intro {
  margin: 12px 14px 10px;
  padding: 10px 12px;
  border-left: 4px solid var(--emerald);
  border-radius: 8px;
  background: linear-gradient(95deg, rgba(0, 163, 108, 0.16), rgba(0, 0, 0, 0));
}

.register-step-intro p {
  margin: 0 0 3px;
  color: var(--muted);
  font-size: 13px;
}

.register-step-intro h3 {
  margin: 0;
  color: var(--text);
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(22px, 4.4vw, 30px);
  line-height: 1;
  letter-spacing: 0.2px;
}

.register-step-form {
  padding: 8px 14px 14px;
  display: grid;
  gap: 7px;
}

.register-step-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--tertiary);
}

.register-step-form input,
.register-step-form select {
  width: 100%;
  min-height: 43px;
  border-radius: 10px;
  border: 1px solid rgba(0, 163, 108, 0.18);
  background: rgba(10, 14, 12, 0.52);
  color: var(--text);
  font-family: "Rajdhani", sans-serif;
  font-size: 16px;
  padding: 9px 12px;
  outline: none;
}

.register-step-form input::placeholder {
  color: rgba(169, 187, 176, 0.62);
}

.register-step-phone-wrap {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(0, 163, 108, 0.18);
  border-radius: 10px;
  background: rgba(10, 14, 12, 0.52);
  padding: 6px 9px;
}

.register-step-phone-wrap input {
  border: 0;
  background: transparent;
  min-height: 32px;
  padding: 0;
}

.register-step-prefix {
  min-width: 46px;
  text-align: center;
  border-radius: 6px;
  background: rgba(0, 163, 108, 0.14);
  font-size: 14px;
  font-weight: 700;
  color: var(--tertiary);
  padding: 5px 6px;
}

.register-step-code-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.register-step-code-btn {
  min-height: 43px;
  border: 1px solid rgba(0, 163, 108, 0.25);
  border-radius: 10px;
  padding: 8px 12px;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-strong));
  color: #fff;
  font-family: "Rajdhani", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2px;
  cursor: pointer;
}

.register-step-hint {
  margin: 1px 0 5px;
  color: rgba(188, 217, 202, 0.78);
  font-size: 13px;
  line-height: 1.2;
}

.register-step-actions {
  margin-top: 6px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 9px;
}

.register-step-back,
.register-step-submit {
  min-height: 45px;
  border-radius: 999px;
  font-family: "Rajdhani", sans-serif;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
}

.register-step-back {
  border: 1px solid rgba(0, 163, 108, 0.28);
  background: rgba(10, 14, 12, 0.55);
  color: var(--tertiary);
}

.register-step-submit {
  border: 0;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-strong));
  color: #fff;
}

@media (max-width: 620px) {
  .register-step-modal {
    width: min(440px, 100%);
    border-radius: 14px;
  }

  .register-step-intro h3 {
    font-size: clamp(18px, 6vw, 24px);
  }

  .register-step-code-row {
    grid-template-columns: 1fr;
  }

  .register-step-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-height: 760px) {
  .register-step-logo {
    height: 30px;
  }

  .register-step-intro {
    margin: 8px 10px 6px;
    padding: 6px 8px;
  }

  .register-step-intro p,
  .register-step-hint {
    display: none;
  }

  .register-step-form {
    gap: 4px;
    padding: 6px 10px 10px;
  }

  .register-step-form input,
  .register-step-form select,
  .register-step-phone-wrap,
  .register-step-code-btn,
  .register-step-back,
  .register-step-submit {
    min-height: 36px;
  }
}

/* ─── Auth Modal ─── */
.auth-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 14, 12, 0.85);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.auth-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.auth-modal {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: linear-gradient(
    160deg,
    rgba(35, 50, 43, 0.98),
    rgba(15, 17, 16, 0.98)
  );
  border: 1px solid rgba(0, 163, 108, 0.25);
  border-radius: 20px;
  padding: 30px;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.6),
    inset 0 0 24px rgba(0, 163, 108, 0.05);
  transform: translateY(20px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.auth-modal-overlay.active .auth-modal {
  transform: translateY(0) scale(1);
}

.auth-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 163, 108, 0.1);
  border: 1px solid rgba(0, 163, 108, 0.2);
  color: var(--muted);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.auth-close-btn:hover {
  color: #fff;
  background: rgba(176, 18, 47, 0.6);
  border-color: rgba(176, 18, 47, 0.8);
  transform: scale(1.05);
}

.auth-modal-header {
  text-align: center;
  margin-bottom: 24px;
}

.auth-modal-logo {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 4px 12px rgba(0, 163, 108, 0.4));
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: rgba(15, 17, 16, 0.8);
  border-radius: 12px;
  padding: 4px;
  margin-bottom: 24px;
  border: 1px solid rgba(0, 163, 108, 0.15);
}

.auth-tab-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  border: none;
  background: transparent;
  color: var(--muted);
  font-family: "Rajdhani", sans-serif;
  font-size: 15px;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.auth-tab-btn.active {
  background: linear-gradient(135deg, var(--emerald), var(--emerald-strong));
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 163, 108, 0.3);
}

.auth-panels {
  padding: 0 24px 24px;
}

.auth-panel {
  display: none;
  animation: authFadeIn 0.3s ease;
}

.auth-panel.active {
  display: block;
}

@keyframes authFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.auth-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.auth-field {
  position: relative;
}

.auth-field i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--emerald);
  font-size: 14px;
}

.auth-field input {
  width: 100%;
  background: rgba(10, 14, 12, 0.6);
  border: 1px solid rgba(0, 163, 108, 0.2);
  border-radius: 10px;
  padding: 13px 16px 13px 42px;
  color: var(--text);
  font-family: "Rajdhani", sans-serif;
  font-size: 15px;
  font-weight: 600;
  outline: none;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.auth-field input::placeholder {
  color: rgba(169, 187, 176, 0.4);
  font-weight: 500;
}

.auth-field input:focus {
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(0, 163, 108, 0.15);
}

.auth-options {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin: 8px 0 12px;
  font-size: 13px;
}

.auth-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  color: var(--muted);
  line-height: 1.4;
}

.auth-check input {
  display: none;
}

.auth-check .check-box {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 4px;
  border: 1.5px solid rgba(0, 163, 108, 0.5);
  background: rgba(10, 14, 12, 0.6);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  margin-top: 1px;
}

.auth-check input:checked + .check-box {
  background: var(--emerald);
  border-color: var(--emerald);
}

.auth-check input:checked + .check-box::after {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 11px;
  color: #fff;
}

.auth-check span a {
  color: var(--emerald);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.auth-forgot {
  color: var(--emerald);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.auth-forgot:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.auth-form-error {
  background: rgba(255, 69, 69, 0.12);
  border: 1px solid rgba(255, 69, 69, 0.35);
  color: #ff6b6b;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  animation: fadeIn 0.25s ease;
}

.auth-otp-field {
  border-color: rgba(0, 163, 108, 0.5);
  animation: fadeIn 0.3s ease;
}

.auth-otp-field input {
  letter-spacing: 2px;
  font-weight: 700;
  text-align: center;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.auth-submit-btn {
  background: linear-gradient(135deg, var(--emerald), var(--emerald-strong));
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 14px;
  font-size: 16px;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(0, 163, 108, 0.3);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  letter-spacing: 0.5px;
}

.auth-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 163, 108, 0.4);
}

.auth-submit-btn.register-btn {
  background: linear-gradient(135deg, #028e5f, #015e3e);
}
