/* =====================================================
   GGames — Online Casino
   Forked from PK Prime · 2026
   ===================================================== */

:root {
  /* Core palette — dark green / neon green */
  --bg: #0a1a10;
  --surface: #0f2418;
  --surface-2: #142e1f;
  --surface-3: #1a3a26;
  --primary: #22c55e;          /* bright neon green (was gold) */
  --primary-bright: #4ade80;
  --primary-dark: #15803d;
  --cta: #22c55e;
  --cta-dark: #16a34a;
  --warn: #16a34a;
  --warn-dark: #ea580c;
  --text: #ffffff;
  --text-dim: #94a3b8;
  --text-dimmer: #64748b;
  --page-bg: #0a1a10;

  /* Layout */
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.5), 0 2px 8px rgba(0, 0, 0, 0.25);
  --shadow-glow-green: 0 0 32px rgba(34, 197, 94, 0.5);
  --shadow-glow-yellow: 0 0 30px rgba(34, 197, 94, 0.45);  /* aliased to green */
  --shadow-glow-orange: 0 0 28px rgba(34, 197, 94, 0.4);   /* aliased to green */

  /* Type */
  --font-display: 'Sora', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Spacing rhythm */
  --section-gap: 56px;
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
input { font: inherit; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ============ PAGE BACKGROUND ============ */
.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(34, 197, 94, 0.35), transparent 70%),
    radial-gradient(ellipse 60% 40% at 10% 30%, rgba(34, 197, 94, 0.18), transparent 60%),
    radial-gradient(ellipse 70% 50% at 90% 60%, rgba(34, 197, 94, 0.12), transparent 60%),
    linear-gradient(180deg, #0f2418 0%, #0a1a10 60%, #060f08 100%);
}
.page-bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.04) 1px, transparent 0);
  background-size: 32px 32px;
}

/* ============ SHELL ============ */
/* Sidebar offset via body padding-left so .shell can margin: auto + CENTER */
body {
  padding-left: calc(var(--sidebar-width-collapsed) + 36px);
  transition: padding-left .35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
body.sidebar-pinned {
  padding-left: calc(var(--sidebar-width) + 36px);
}
.shell {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ NAVBAR ============ */
.navbar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 0;
  margin-bottom: 12px;
}
.logo { margin-right: auto; }

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-img {
  height: 64px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 18px rgba(34, 197, 94, 0.35));
  transition: transform .2s, filter .2s;
}
.logo:hover .logo-img {
  transform: translateY(-1px);
  filter: drop-shadow(0 0 22px rgba(34, 197, 94, 0.55));
}
@media (max-width: 880px) {
  .logo-img { height: 52px; }
}
@media (max-width: 560px) {
  .logo-img { height: 44px; }
}

.search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(15, 36, 24, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border-radius: 999px;
  padding: 10px 18px;
  max-width: 420px;
  transition: border-color .2s, box-shadow .2s;
}
.search:focus-within {
  border-color: rgba(34, 197, 94, 0.5);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.08);
}
.search-icon { color: var(--text-dim); flex-shrink: 0; }
.search input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--text);
  font-size: 14px;
}
.search input::placeholder { color: var(--text-dimmer); }
.search-kbd {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.08);
  padding: 3px 8px;
  border-radius: 6px;
  color: var(--text-dim);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-login {
  padding: 11px 18px;
  background: transparent;
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all .2s;
}
.btn-login:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.25);
}

.btn-signup {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
  color: white;
  font-weight: 700;
  font-size: 14px;
  border-radius: 999px;
  box-shadow:
    0 8px 24px rgba(34, 197, 94, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: transform .2s, box-shadow .2s;
}
.btn-signup:hover {
  transform: translateY(-1px);
  box-shadow:
    0 12px 32px rgba(34, 197, 94, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* ============ WALLET WIDGET ============ */
.wallet-widget {
  position: relative;
}
.wallet-trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 6px;
  background: rgba(15, 36, 24, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: var(--text);
  transition: all .2s;
  backdrop-filter: blur(20px);
}
.wallet-trigger:hover {
  border-color: rgba(34, 197, 94, 0.4);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.08);
}
.wallet-avatar {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #052e16;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  flex-shrink: 0;
}
.wallet-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}
.wallet-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}
.wallet-balance {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  color: var(--cta);
  white-space: nowrap;
}

.wallet-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 260px;
  padding: 8px;
  background: linear-gradient(180deg, #0f2418 0%, #060f08 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  z-index: 50;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity .2s, transform .2s;
}
.wallet-dropdown[hidden] { display: none; }
.wallet-widget.is-open .wallet-dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.wallet-dropdown-head {
  padding: 14px 14px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 6px;
}
.wallet-dropdown-name {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.wallet-dropdown-email {
  display: block;
  font-size: 11px;
  color: var(--text-dimmer);
}
.wallet-dropdown-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 4px 0;
}
.wallet-dropdown-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dim);
  transition: all .15s;
}
.wallet-dropdown-list a:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}
.wd-icon {
  font-size: 14px;
  width: 20px;
  text-align: center;
}
.wallet-logout {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 12px;
  margin-top: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #fca5a5;
  transition: background .15s;
}
.wallet-logout:hover {
  background: rgba(220, 38, 38, 0.08);
}

/* Login modal extras */
.login-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 4px 0;
}
.login-forgot {
  font-size: 12px;
  color: var(--primary);
  white-space: nowrap;
}
.login-row .form-checkbox {
  margin-top: 0;
  font-size: 12px;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  margin-bottom: var(--section-gap);
}
.hero-carousel {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 380px;
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: center;
  padding: 50px 60px;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity .6s ease, transform .6s ease;
  pointer-events: none;
  background: linear-gradient(135deg, #0a1f12 0%, #143020 50%, #0a1f12 100%);
}
.hero-slide.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.hero-slide[data-theme="orange"] {
  background: linear-gradient(135deg, #2a1a0a 0%, #4a2410 50%, #2a1a0a 100%);
}

.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 540px;
}
.hero-tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
  backdrop-filter: blur(8px);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}
.hero-title-accent {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-amount {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 18px;
}
.hero-amount-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 42px;
  color: var(--primary);
  text-shadow: 0 0 30px rgba(34, 197, 94, 0.5);
}
.hero-amount-unit {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}
.hero-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 26px;
  max-width: 460px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn-claim {
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: white;
  transition: transform .2s, box-shadow .2s;
  position: relative;
  overflow: hidden;
}
.btn-claim::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.3), transparent 70%);
  transform: translateX(-100%);
  transition: transform .6s;
}
.btn-claim:hover { transform: translateY(-2px); }
.btn-claim:hover::before { transform: translateX(100%); }

.btn-claim-orange {
  background: linear-gradient(135deg, #15803d 0%, #4ade80 100%);
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.4), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn-claim-green {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.4), inset 0 1px 0 rgba(255,255,255,0.25);
}

.btn-ghost {
  padding: 14px 22px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: color .2s, border-color .2s;
}
.btn-ghost:hover {
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

.hero-art {
  position: relative;
  z-index: 1;
  height: 100%;
  display: grid;
  place-items: center;
}
.art-character {
  width: 100%;
  max-width: 320px;
  height: 100%;
  display: grid;
  place-items: center;
  animation: float 4s ease-in-out infinite;
}

.hero-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.coin {
  position: absolute;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fde68a, #f59e0b);
  color: #92400e;
  font-weight: 800;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.5), inset 0 -2px 0 rgba(0,0,0,0.2);
  animation: float 3s ease-in-out infinite;
}
.coin-1 { top: 16%; right: 18%; animation-delay: 0s; }
.coin-2 { top: 60%; right: 8%; animation-delay: 0.6s; width: 28px; height: 28px; font-size: 14px; }
.coin-3 { bottom: 18%; right: 30%; animation-delay: 1.2s; width: 32px; height: 32px; font-size: 16px; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-controls {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}
.hero-dot {
  width: 28px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.3);
  transition: background .3s, width .3s;
}
.hero-dot.is-active {
  background: var(--primary);
  width: 44px;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.6);
}

/* ============ SIDEBAR ============ */
:root {
  --sidebar-width: 240px;
  --sidebar-width-collapsed: 88px;
}

.sidebar {
  position: fixed;
  top: 20px;
  left: 20px;
  bottom: 20px;
  width: var(--sidebar-width-collapsed);
  z-index: 80;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 20px 14px;
  background: linear-gradient(180deg, rgba(15, 36, 24, 0.92) 0%, rgba(10, 26, 16, 0.92) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(24px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  transition: width .35s cubic-bezier(0.2, 0.8, 0.2, 1);
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
}
.sidebar::-webkit-scrollbar { display: none; }

/* Hover-expand (overlay, doesn't push content) */
.sidebar:hover,
.sidebar.is-pinned {
  width: var(--sidebar-width);
}

.sidebar-toggle {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  flex-shrink: 0;
  margin: 4px auto 8px;
  transition: all .2s;
}
.sidebar:hover .sidebar-toggle,
.sidebar.is-pinned .sidebar-toggle {
  margin: 4px auto 8px 4px;
}
.sidebar-toggle:hover {
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.4);
  color: var(--primary);
}
.sidebar.is-pinned .sidebar-toggle {
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.4);
  color: var(--primary);
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sb-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14.5px;
  text-align: left;
  white-space: nowrap;
  position: relative;
  transition: all .2s ease;
}
.sb-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}
.sb-item.is-active {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  border-color: transparent;
  color: #052e16;
  box-shadow:
    0 10px 28px rgba(34, 197, 94, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.sb-item.is-active .sb-icon {
  color: #052e16;
}

.sb-icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4)) drop-shadow(0 0 4px rgba(74, 222, 128, 0.25));
  transition: transform .2s, filter .2s;
}
.sb-item:hover .sb-icon {
  transform: translateY(-1px) scale(1.05);
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.5)) drop-shadow(0 0 8px rgba(74, 222, 128, 0.5));
}
.sb-item.is-active .sb-icon {
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4)) drop-shadow(0 0 8px rgba(34, 197, 94, 0.6));
}

/* Default (collapsed) — fixed-size square tiles, horizontally centered in sidebar */
.sb-item {
  padding: 0;
  width: 52px;
  height: 52px;
  margin: 0 auto;
  gap: 0;                  /* override base 14px so 0-width label/chevron don't push icon left */
  justify-content: center;
  align-items: center;
}
.sb-label,
.sb-chevron {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0;
  width: 0;
  transform: translateX(-8px);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
.sb-chevron {
  flex: none;
  width: 14px;
  opacity: 0;
}

/* Expanded state (hover or pinned) — full-width pill with label */
.sidebar:hover .sb-item,
.sidebar.is-pinned .sb-item {
  padding: 14px 18px;
  width: auto;
  height: auto;
  margin: 0;
  gap: 14px;               /* restore — labels are now visible */
  justify-content: flex-start;
  align-items: center;
}
.sidebar:hover .sb-label,
.sidebar.is-pinned .sb-label {
  opacity: 1;
  width: auto;
  flex: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.sidebar:hover .sb-chevron,
.sidebar.is-pinned .sb-chevron {
  opacity: 1;
  width: 14px;
  transform: translateX(0);
  pointer-events: auto;
}
.sb-item-expandable[aria-expanded="true"] .sb-chevron {
  transform: rotate(180deg);
}

/* Tooltip when collapsed (default) — flyout label on hover of individual item */
.sb-item::after {
  content: attr(data-tooltip);
  position: absolute;
  left: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%);
  padding: 8px 14px;
  background: #052e16;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity .15s ease;
  z-index: 100;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}
.sb-item:hover::after {
  opacity: 1;
}
/* Hide tooltip when sidebar is expanded (labels are visible) */
.sidebar:hover .sb-item::after,
.sidebar.is-pinned .sb-item::after {
  display: none;
}

/* Submenu */
.sb-submenu {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: -2px 0 6px 14px;
  padding-left: 18px;
  border-left: 2px solid rgba(34, 197, 94, 0.2);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height .35s ease, opacity .25s ease;
}
.sb-submenu[hidden] { display: none; }
.sb-submenu.is-open {
  max-height: 200px;
  opacity: 1;
  padding-top: 6px;
  padding-bottom: 4px;
}
.sb-subitem {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
  text-align: left;
  transition: all .15s;
}
.sb-subitem:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}
.sb-subitem.is-active {
  color: var(--primary);
  background: rgba(34, 197, 94, 0.06);
}
.sb-sub-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
  opacity: 0.6;
}
/* Hide submenu when sidebar is collapsed (default) */
.sidebar:not(:hover):not(.is-pinned) .sb-submenu {
  display: none;
}


/* ============ HOT SECTION (Top Games) ============ */
.game-section-hot .game-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hot-flame {
  display: inline-grid;
  place-items: center;
  color: #16a34a;
  filter: drop-shadow(0 0 10px rgba(249, 115, 22, 0.6));
  animation: hotFlicker 2.4s ease-in-out infinite;
}
@keyframes hotFlicker {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 10px rgba(249, 115, 22, 0.6)); }
  50%      { transform: scale(1.08); filter: drop-shadow(0 0 16px rgba(249, 115, 22, 0.85)); }
}
.new-sparkle {
  display: inline-grid;
  place-items: center;
  color: #22c55e;
  filter: drop-shadow(0 0 10px rgba(34, 197, 94, 0.6));
  animation: newSpin 4s linear infinite;
}
@keyframes newSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.game-section-hot .game-row {
  grid-template-columns: repeat(9, 1fr);
}

.game-card-hot {
  background: transparent;
  border-radius: var(--radius);
}
.game-card-hot .game-thumb {
  aspect-ratio: 0.55 / 1; /* match cropped screenshot aspect (~200/370) */
  border-radius: var(--radius);
  overflow: hidden;
  background: #060f08;
  padding: 0;
}
/* Hide the inherited gradient overlay/dot pattern — real photo handles its own depth */
.game-card-hot .game-thumb::before {
  display: none;
}
/* Real cropped photo fills the entire thumb */
.game-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.game-card-hot:hover .game-image {
  transform: scale(1.04);
}

/* Hide the auto-injected title overlay — image already includes the title strip */
.game-card-hot .thumb-title {
  display: none;
}
/* Hide the meta below — name lives inside the photo */
.game-card-hot .game-meta {
  display: none;
}

/* Per-game gradients no longer needed — cropped screenshot images cover the full thumb. */

/* Responsive — fewer columns on smaller screens */
@media (max-width: 1280px) {
  .game-section-hot .game-row { grid-template-columns: repeat(7, 1fr); }
}
@media (max-width: 1100px) {
  .game-section-hot .game-row { grid-template-columns: repeat(6, 1fr); }
}
@media (max-width: 960px) {
  .game-section-hot .game-row { grid-template-columns: repeat(5, 1fr); }
}
@media (max-width: 880px) {
  .game-section-hot .game-row {
    display: flex;
    overflow-x: auto;
  }
  .game-section-hot .game-row .game-card-hot {
    flex: 0 0 140px;
  }
}

/* ============ PROVIDER CARDS (character tiles) ============ */
.game-section-providers .game-row {
  display: flex;
  grid-template-columns: none;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}
.game-section-providers .game-row .provider-card {
  flex: 0 0 170px;
  min-width: 0;
  scroll-snap-align: start;
}
@media (max-width: 880px) {
  .game-section-providers .game-row .provider-card {
    flex: 0 0 140px;
  }
}
@media (max-width: 560px) {
  .game-section-providers .game-row .provider-card {
    flex: 0 0 120px;
  }
}

.provider-card {
  background: transparent;
  text-align: center;
}
.provider-card .game-thumb {
  aspect-ratio: 1 / 1;
  background: #0f2418;
  padding: 0;
  border-radius: var(--radius);
  overflow: hidden;
}
.provider-card .game-thumb::before {
  display: none;
}
.provider-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.provider-card:hover .provider-image {
  transform: scale(1.06);
}
.provider-card:hover .game-thumb {
  box-shadow: 0 14px 32px rgba(0,0,0,0.5), 0 0 0 1px rgba(34, 197, 94, 0.3);
}
/* Hide the auto-injected overlays — character art IS the visual */
.provider-card .thumb-title,
.provider-card .thumb-play {
  display: none;
}
/* Show the meta with name + online count */
.provider-card .game-meta {
  display: block;
  padding: 14px 4px 4px;
  text-align: center;
}
.provider-card .game-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 6px;
}
.provider-card .game-provider {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-dim);
}
.provider-card .game-provider::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cta);
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.7);
  animation: pulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}

/* ============ GAME SECTIONS ============ */
.game-section {
  margin-bottom: var(--section-gap);
}
.game-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding: 0 4px;
}
.game-section-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
}
.title-flag {
  font-size: 18px;
  margin-left: 6px;
}
.row-controls {
  display: flex;
  gap: 8px;
}
.row-arrow {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(15, 36, 24, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-dim);
  backdrop-filter: blur(20px);
  transition: all .2s;
}
.row-arrow:hover {
  color: white;
  background: rgba(34, 197, 94, 0.15);
  border-color: rgba(34, 197, 94, 0.4);
  box-shadow: 0 0 16px rgba(34, 197, 94, 0.2);
}

.game-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.game-row::-webkit-scrollbar { display: none; }
.game-row-secondary {
  margin-top: 16px;
  grid-template-columns: repeat(5, 1fr);
}

/* ============ GAME CARDS ============ */
.game-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
  background: var(--surface);
  min-width: 0;
}
.game-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(34, 197, 94, 0.3);
}

.game-thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  font-size: 64px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #0f2418, #0a1a10);
  overflow: hidden;
  isolation: isolate;
}
/* Subtle dot pattern overlay */
.game-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.22), transparent 50%),
    radial-gradient(circle at 70% 90%, rgba(0,0,0,0.55), transparent 60%),
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.08) 1px, transparent 0);
  background-size: auto, auto, 14px 14px;
  pointer-events: none;
  z-index: 1;
}
/* Diagonal shine sweep */
.game-thumb::after {
  content: '';
  position: absolute;
  inset: -30%;
  background: linear-gradient(120deg, transparent 40%, rgba(255,255,255,0.18) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform .9s ease;
  pointer-events: none;
  z-index: 2;
}
.game-card:hover .game-thumb::after {
  transform: translateX(100%);
}
.game-art {
  position: relative;
  z-index: 3;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.55));
  transform: translateY(-12px);
  transition: transform .3s ease;
}
.game-card:hover .game-art {
  transform: translateY(-16px) scale(1.08);
}

/* Stylized title overlay inside the thumb */
.thumb-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  padding: 16px 12px 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: -0.01em;
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.85) 100%);
  text-transform: uppercase;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Play button overlay on hover */
.thumb-play {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: grid;
  place-items: center;
  background: rgba(10, 26, 16, 0.6);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}
.thumb-play-btn {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #052e16;
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.5);
  transform: scale(0.6);
  transition: transform .3s ease;
}
.game-card:hover .thumb-play {
  opacity: 1;
}
.game-card:hover .thumb-play-btn {
  transform: scale(1);
}

/* Per-game gradient backgrounds */
.game-card[data-bg="conan"] .game-thumb { background: linear-gradient(135deg, #7f1d1d, #f59e0b); }
.game-card[data-bg="joker"] .game-thumb { background: linear-gradient(135deg, #0f766e, #facc15); }
.game-card[data-bg="winning"] .game-thumb { background: linear-gradient(135deg, #14532d, #facc15); }
.game-card[data-bg="egypt"] .game-thumb { background: linear-gradient(135deg, #c2410c, #fbbf24); }
.game-card[data-bg="hotline"] .game-thumb { background: linear-gradient(135deg, #db2777, #2563eb); }
.game-card[data-bg="midgard"] .game-thumb { background: linear-gradient(135deg, #1e3a8a, #94a3b8); }
.game-card[data-bg="stacks"] .game-thumb { background: linear-gradient(135deg, #0891b2, #67e8f9); }
.game-card[data-bg="jungle"] .game-thumb { background: linear-gradient(135deg, #14532d, #84cc16); }
.game-card[data-bg="holiday"] .game-thumb { background: linear-gradient(135deg, #b91c1c, #16a34a); }
.game-card[data-bg="merlin"] .game-thumb { background: linear-gradient(135deg, #064e3b, #22c55e); }
.game-card[data-bg="wolf"] .game-thumb { background: linear-gradient(135deg, #1e293b, #64748b); }
.game-card[data-bg="superwin"] .game-thumb { background: linear-gradient(135deg, #facc15, #16a34a); }
.game-card[data-bg="sugar"] .game-thumb { background: linear-gradient(135deg, #ec4899, #f472b6); }
.game-card[data-bg="sweet"] .game-thumb { background: linear-gradient(135deg, #db2777, #fde047); }
.game-card[data-bg="mining"] .game-thumb { background: linear-gradient(135deg, #78350f, #facc15); }
.game-card[data-bg="gates"] .game-thumb { background: linear-gradient(135deg, #b91c1c, #facc15); }
.game-card[data-bg="starlight"] .game-thumb { background: linear-gradient(135deg, #166534, #bbf7d0); }
.game-card[data-bg="red-roulette"] .game-thumb { background: linear-gradient(135deg, #7f1d1d, #dc2626); }
.game-card[data-bg="goal"] .game-thumb { background: linear-gradient(135deg, #14532d, #22c55e); }
.game-card[data-bg="touch"] .game-thumb { background: linear-gradient(135deg, #0c4a6e, #38bdf8); }
.game-card[data-bg="black-jack"] .game-thumb { background: linear-gradient(135deg, #0f172a, #475569); }
.game-card[data-bg="advanced"] .game-thumb { background: linear-gradient(135deg, #14532d, #4ade80); }
.game-card[data-bg="gates-olympus-scatter"] .game-thumb { background: linear-gradient(135deg, #b91c1c, #facc15); }
.game-card[data-bg="sweet-bonanza-1k"] .game-thumb { background: linear-gradient(135deg, #db2777, #fde047); }
.game-card[data-bg="jelly-express"] .game-thumb { background: linear-gradient(135deg, #0891b2, #86efac); }
.game-card[data-bg="fortune-ace-scatter"] .game-thumb { background: linear-gradient(135deg, #7f1d1d, #fbbf24); }
.game-card[data-bg="starlight-princess-scatter"] .game-thumb { background: linear-gradient(135deg, #166534, #bbf7d0); }
.game-card[data-bg="super-ace-deluxe"] .game-thumb { background: linear-gradient(135deg, #0f766e, #fde047); }
.game-card[data-bg="sugar-rush-1k"] .game-thumb { background: linear-gradient(135deg, #ec4899, #f472b6); }
.game-card[data-bg="lucky-fortunes"] .game-thumb { background: linear-gradient(135deg, #14532d, #facc15); }
.game-card[data-bg="wild-ape"] .game-thumb { background: linear-gradient(135deg, #166534, #84cc16); }

.game-meta {
  padding: 12px 4px 4px;
}
.game-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.game-provider {
  font-size: 11px;
  color: var(--text-dimmer);
  font-weight: 500;
}

/* ============ BADGES ============ */
.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  padding: 4px 9px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: white;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}
.badge-hot { background: linear-gradient(135deg, #16a34a, #dc2626); box-shadow: 0 2px 8px rgba(249, 115, 22, 0.5); }
.badge-new { background: linear-gradient(135deg, #22c55e, #16a34a); box-shadow: 0 2px 8px rgba(34, 197, 94, 0.5); }
.badge-live {
  background: linear-gradient(135deg, #dc2626, #991b1b);
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.5);
  display: flex;
  align-items: center;
  gap: 4px;
}
.badge-live::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #fff;
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.badge-casino { background: rgba(34, 197, 94, 0.95); color: #052e16; box-shadow: 0 2px 12px rgba(34, 197, 94, 0.4); }
.badge-monthly { background: linear-gradient(135deg, #16a34a, #ea580c); box-shadow: 0 2px 12px rgba(249, 115, 22, 0.4); }

/* ============ PROVIDER STRIP ============ */
.provider-strip {
  margin-bottom: 28px;
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(15, 36, 24, 0.7) 0%, rgba(10, 26, 16, 0.7) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
}
.provider-strip-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 22px;
  gap: 16px;
  flex-wrap: wrap;
}
.provider-strip-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}
.provider-strip-sub {
  font-size: 12px;
  color: var(--text-dimmer);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.provider-track {
  overflow: hidden;
  position: relative;
}
.provider-track::before,
.provider-track::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.provider-track::before {
  left: 0;
  background: linear-gradient(90deg, rgba(10, 26, 16, 0.95), transparent);
}
.provider-track::after {
  right: 0;
  background: linear-gradient(270deg, rgba(10, 26, 16, 0.95), transparent);
}
.provider-row {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 4px 0;
}
.provider-row::-webkit-scrollbar { display: none; }

.provider-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  transition: all .25s ease;
  cursor: pointer;
}
.provider-logo:hover {
  background: rgba(34, 197, 94, 0.06);
  border-color: rgba(34, 197, 94, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.pl-mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  color: #052e16;
  flex-shrink: 0;
}
.pl-mark-square { border-radius: 4px; }
.pl-mark-circle { border-radius: 50%; }
.pl-mark-hex { clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%); }
.pl-mark-tree { border-radius: 50% 0 50% 0; }
.pl-mark-bolt { border-radius: 8px; transform: skewX(-8deg); font-size: 12px; }
.pl-mark-go { border-radius: 8px; }
.pl-mark-i { border-radius: 50%; font-style: italic; }

.pl-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
  letter-spacing: -0.01em;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.pl-text small {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--text-dimmer);
  margin-top: 2px;
}

/* Per-provider colors */
.provider-netent .pl-mark { background: linear-gradient(135deg, #ef4444, #991b1b); color: #fff; }
.provider-pragmatic .pl-mark { background: linear-gradient(135deg, #16a34a, #c2410c); color: #fff; }
.provider-evolution .pl-mark { background: linear-gradient(135deg, #1e40af, #0c4a6e); color: #fff; }
.provider-yggdrasil .pl-mark { background: linear-gradient(135deg, #14b8a6, #0f766e); color: #fff; }
.provider-microgaming .pl-mark { background: linear-gradient(135deg, #fbbf24, #d97706); color: #052e16; }
.provider-pgsoft .pl-mark { background: linear-gradient(135deg, #22c55e, #15803d); color: #fff; }
.provider-playngo .pl-mark { background: linear-gradient(135deg, #22c55e, #15803d); color: #fff; }
.provider-isoftbet .pl-mark { background: linear-gradient(135deg, #06b6d4, #0e7490); color: #fff; }

/* ============ PROMO FEATURE CARDS ============ */
.promo-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: var(--section-gap);
}
.promo-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: center;
  border-radius: var(--radius-lg);
  padding: 36px 36px 36px 36px;
  overflow: hidden;
  min-height: 220px;
  box-shadow: var(--shadow-card);
}
.promo-lucky {
  background:
    radial-gradient(circle at 90% 50%, rgba(34, 197, 94, 0.35), transparent 60%),
    linear-gradient(135deg, #0a2818 0%, #14532d 50%, #0a2818 100%);
  border: 1px solid rgba(34, 197, 94, 0.2);
}
.promo-dragon {
  background:
    radial-gradient(circle at 90% 50%, rgba(249, 115, 22, 0.35), transparent 60%),
    linear-gradient(135deg, #2a1208 0%, #7c2d12 50%, #2a1208 100%);
  border: 1px solid rgba(249, 115, 22, 0.2);
}
.promo-card-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.05) 1px, transparent 0);
  background-size: 24px 24px;
  pointer-events: none;
}
.promo-card-body {
  position: relative;
  z-index: 1;
  max-width: 320px;
}
.promo-card-body .badge {
  position: static;
  display: inline-flex;
  margin-bottom: 14px;
}
.promo-card-title {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.promo-card-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 20px;
  line-height: 1.55;
}
.promo-card-text strong {
  color: var(--primary);
  font-weight: 700;
}
.promo-card-art {
  position: relative;
  z-index: 1;
  width: 200px;
  height: 200px;
  margin-left: auto;
  animation: float 4s ease-in-out infinite;
}

/* ============ VIP / LOYALTY SECTION ============ */
/* Hidden by default — only shown when body.vip-view is active */
.vip-section {
  display: none;
  margin-top: 24px;
  margin-bottom: var(--section-gap);
  padding: 36px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 90% 0%, rgba(34, 197, 94, 0.12), transparent 60%),
    linear-gradient(180deg, #0a1a10 0%, #060f08 100%);
  border: 1px solid rgba(34, 197, 94, 0.15);
  box-shadow: var(--shadow-card);
}

/* VIP view mode: hide everything else, show only VIP section */
body.vip-view .hero,
body.vip-view .game-section,
body.vip-view .provider-strip,
body.vip-view .promo-features,
body.vip-view .tournament-section,
body.vip-view .jackpot-section,
body.vip-view .news-section,
body.vip-view .newsletter-section {
  display: none !important;
}
body.vip-view .vip-section {
  display: block;
  animation: fadeInUp .4s ease;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.vip-head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 32px;
}
.vip-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--primary);
  margin-bottom: 8px;
}
.vip-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #fff 0%, #fde047 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.vip-sub {
  font-size: 14px;
  color: var(--text-dim);
  max-width: 540px;
  line-height: 1.55;
}

.vip-progress {
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
}
.vip-progress-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}
.vip-progress-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-dim);
}
.vip-progress-pct {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
}
.vip-progress-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 10px;
}
.vip-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #22c55e 0%, #16a34a 100%);
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.5);
  transition: width .6s ease;
}
.vip-progress-hint {
  font-size: 12px;
  color: var(--text-dimmer);
}
.vip-progress-hint strong {
  color: var(--primary);
}

.vip-tiers {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.vip-tier {
  position: relative;
  padding: 24px 18px;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  transition: all .25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.vip-tier:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-3px);
}
.vip-tier.is-current {
  background: linear-gradient(180deg, rgba(34, 197, 94, 0.12) 0%, rgba(249, 115, 22, 0.05) 100%);
  border-color: rgba(34, 197, 94, 0.5);
  box-shadow:
    0 0 0 1px rgba(34, 197, 94, 0.4),
    0 12px 32px rgba(34, 197, 94, 0.18);
  transform: translateY(-6px) scale(1.02);
}
.vip-current-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 12px;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #052e16;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
}
.vip-tier-icon {
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}
.vip-tier-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 4px;
}
.vip-tier-min {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-dimmer);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.vip-tier-perks {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
  color: var(--text-dim);
  text-align: left;
  width: 100%;
}
.vip-tier-perks li {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  line-height: 1.4;
}
.vip-tier-perks li::before {
  content: '✓';
  color: var(--cta);
  font-weight: 800;
  flex-shrink: 0;
}

/* ============ LIVE WINS BAR ============ */
.wins-bar {
  margin-bottom: var(--section-gap);
  padding: 28px 32px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 0% 0%, rgba(34, 197, 94, 0.1), transparent 60%),
    linear-gradient(180deg, #0f2418 0%, #060f08 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-card);
}

.wins-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.wins-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #86efac;
  margin-bottom: 12px;
}
.wins-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}

.wins-tabs {
  display: flex;
  gap: 4px;
  padding: 5px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 999px;
}
.wins-tab {
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
  white-space: nowrap;
  transition: all .2s ease;
}
.wins-tab:hover {
  color: var(--text);
}
.wins-tab.is-active {
  color: #052e16;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  box-shadow:
    0 6px 18px rgba(34, 197, 94, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.wins-table {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  overflow: hidden;
}

.wins-header,
.win-row {
  display: grid;
  grid-template-columns: minmax(180px, 2.2fr) 1.4fr 0.8fr 1fr 0.9fr 1.2fr;
  gap: 16px;
  align-items: center;
  padding: 14px 22px;
}

.wins-header {
  background: rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.wins-header span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dimmer);
}
.wins-header span:nth-child(n+4) { text-align: right; }

.wins-body {
  display: flex;
  flex-direction: column;
  max-height: 580px;
  overflow: hidden;
}

.win-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 13.5px;
  transition: background .2s ease;
  flex-shrink: 0;
}
.win-row:last-child { border-bottom: none; }
.win-row:hover {
  background: rgba(255, 255, 255, 0.03);
}

/* Tab filtering */
.wins-bar.tab-high .win-row:not(.is-high) { display: none; }
.wins-bar.tab-lucky .win-row:not(.is-lucky) { display: none; }

/* Entrance animation */
.win-row.is-entering {
  animation: winRowEnter .55s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes winRowEnter {
  0% {
    opacity: 0;
    transform: translateY(-100%);
    background: rgba(34, 197, 94, 0.18);
  }
  60% {
    background: rgba(34, 197, 94, 0.12);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    background: transparent;
  }
}
.win-row.is-leaving {
  animation: winRowLeave .35s ease forwards;
}
@keyframes winRowLeave {
  to {
    opacity: 0;
    transform: translateX(20px);
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    border-bottom-width: 0;
  }
}

/* Cells */
.win-game {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.win-thumb {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  flex-shrink: 0;
  object-fit: cover;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
}
.win-game-name {
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}
.win-username {
  font-family: 'Courier New', monospace;
  font-size: 12.5px;
  color: var(--text-dim);
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.win-time {
  font-size: 12px;
  color: var(--text-dimmer);
  white-space: nowrap;
}
.win-wager,
.win-multiplier,
.win-payout {
  font-family: var(--font-display);
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.win-wager {
  color: var(--text);
}
.win-multiplier {
  color: #fb7185;
}
.win-multiplier.is-big {
  color: var(--primary);
  text-shadow: 0 0 10px rgba(34, 197, 94, 0.4);
}
.win-payout {
  color: var(--cta);
}
.win-payout.is-big {
  color: var(--primary);
  text-shadow: 0 0 10px rgba(34, 197, 94, 0.4);
}

@media (max-width: 880px) {
  .wins-bar { padding: 22px 16px; }
  .wins-head { flex-direction: column; align-items: flex-start; }
  .wins-tabs { width: 100%; }
  .wins-tab { flex: 1; padding: 9px 8px; font-size: 12px; }
  .wins-header,
  .win-row {
    grid-template-columns: 1.6fr 0.8fr 0.9fr;
    padding: 12px 14px;
    gap: 10px;
  }
  .wins-header span:nth-child(2),
  .wins-header span:nth-child(3),
  .win-username,
  .win-time { display: none; }
  .wins-header span:nth-child(4),
  .wins-header span:nth-child(5),
  .wins-header span:nth-child(6) {
    text-align: right;
    font-size: 10px;
  }
  .wins-header span:nth-child(2) { display: none; }
  .win-game { grid-column: 1; }
  .win-wager { grid-column: 2; }
  .win-payout { grid-column: 3; }
  .win-multiplier { display: none; }
  .wins-body { max-height: 480px; }
}

/* ============ TOURNAMENT SECTION ============ */
.tournament-section {
  margin-bottom: var(--section-gap);
  padding: 36px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 0% 0%, rgba(220, 38, 38, 0.15), transparent 50%),
    linear-gradient(180deg, #0a1a10 0%, #060f08 100%);
  border: 1px solid rgba(220, 38, 38, 0.2);
  box-shadow: var(--shadow-card);
}
.tournament-head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}
.tournament-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(220, 38, 38, 0.15);
  border: 1px solid rgba(220, 38, 38, 0.4);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #fca5a5;
  margin-bottom: 12px;
}
.live-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #dc2626;
  box-shadow: 0 0 12px #dc2626;
  animation: pulse 1.5s ease-in-out infinite;
}
.tournament-title {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #fff 0%, #fda4af 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.tournament-desc {
  font-size: 14px;
  color: var(--text-dim);
  max-width: 540px;
}
.tournament-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.t-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 12px;
  background: linear-gradient(180deg, #0a1a10 0%, #060f08 100%);
  text-align: center;
}
.t-stat-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-dimmer);
}
.t-stat-value {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
}
.t-stat-prize {
  background: linear-gradient(180deg, #22c55e 0%, #16a34a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.t-stat-time {
  font-variant-numeric: tabular-nums;
  font-size: 16px;
  color: #fca5a5;
}

.tournament-body {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.leaderboard {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  overflow: hidden;
}
.leaderboard-head {
  display: grid;
  grid-template-columns: 60px 1fr 110px 110px;
  gap: 16px;
  padding: 14px 20px;
  background: rgba(0, 0, 0, 0.3);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--text-dimmer);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.leaderboard-list {
  display: flex;
  flex-direction: column;
  list-style: none;
}
.lb-row {
  display: grid;
  grid-template-columns: 60px 1fr 110px 110px;
  gap: 16px;
  padding: 12px 20px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background .15s;
  font-size: 13px;
}
.lb-row:hover {
  background: rgba(255, 255, 255, 0.03);
}
.lb-row:last-child { border-bottom: none; }
.lb-rank-1, .lb-rank-2, .lb-rank-3 {
  background: linear-gradient(90deg, rgba(34, 197, 94, 0.06), transparent);
}
.lb-rank {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  color: var(--text-dim);
  display: flex;
  align-items: center;
}
.lb-medal {
  font-size: 22px;
}
.lb-player {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--text);
  min-width: 0;
}
.lb-avatar {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 11px;
  color: #052e16;
  flex-shrink: 0;
}
.lb-avatar-1 { background: linear-gradient(135deg, #fde047, #16a34a); }
.lb-avatar-2 { background: linear-gradient(135deg, #e2e8f0, #64748b); }
.lb-avatar-3 { background: linear-gradient(135deg, #fdba74, #92400e); }
.lb-avatar-4 { background: linear-gradient(135deg, #bbf7d0, #22c55e); }
.lb-avatar-5 { background: linear-gradient(135deg, #67e8f9, #0891b2); }
.lb-avatar-6 { background: linear-gradient(135deg, #86efac, #16a34a); }
.lb-avatar-7 { background: linear-gradient(135deg, #fda4af, #dc2626); }
.lb-avatar-8 { background: linear-gradient(135deg, #86efac, #166534); }
.lb-avatar-9 { background: linear-gradient(135deg, #fbcfe8, #db2777); }
.lb-avatar-10 { background: linear-gradient(135deg, #bef264, #65a30d); }

.lb-points {
  font-family: var(--font-display);
  font-weight: 700;
  text-align: right;
  color: var(--text);
}
.lb-prize {
  font-family: var(--font-display);
  font-weight: 800;
  text-align: right;
  color: var(--cta);
}
.lb-rank-1 .lb-prize, .lb-rank-2 .lb-prize, .lb-rank-3 .lb-prize {
  color: var(--primary);
  text-shadow: 0 0 12px rgba(34, 197, 94, 0.4);
}

.tournament-cta {
  position: relative;
  padding: 28px;
  background: linear-gradient(180deg, rgba(220, 38, 38, 0.12) 0%, rgba(124, 45, 18, 0.05) 100%);
  border: 1px solid rgba(220, 38, 38, 0.25);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.tcta-glow {
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.2), transparent 60%);
  pointer-events: none;
}
.tcta-title {
  position: relative;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.tcta-desc {
  position: relative;
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 18px;
  line-height: 1.55;
}
.tcta-features {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 12px;
  color: var(--text-dim);
  flex: 1;
}
.tcta-features li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.tcta-features li span {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--cta);
  color: #052e16;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
}
.tcta-btn {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 0;
}

/* ============ JACKPOT SECTION ============ */
.jackpot-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 28px;
  align-items: stretch;
  padding: 36px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 50% 0%, rgba(249, 115, 22, 0.15), transparent 60%),
    linear-gradient(180deg, #0f2418 0%, #060f08 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: var(--section-gap);
  box-shadow: var(--shadow-card);
}

.winners-col {
  display: flex;
  flex-direction: column;
}
.winners-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 20px;
}
.winners-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cta);
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.7);
  animation: pulse 1.6s ease-in-out infinite;
  flex-shrink: 0;
}
.winners-list {
  overflow: hidden;
}
.winner-entry.is-entering {
  animation: winnerEntryIn .55s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes winnerEntryIn {
  0% {
    opacity: 0;
    transform: translateY(-100%);
    background: rgba(34, 197, 94, 0.18);
    border-color: rgba(34, 197, 94, 0.4);
  }
  60% {
    background: rgba(34, 197, 94, 0.10);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.05);
  }
}
.winner-entry.is-leaving {
  animation: winnerEntryOut .35s ease forwards;
}
@keyframes winnerEntryOut {
  to {
    opacity: 0;
    transform: translateX(20px);
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    border-width: 0;
  }
}
.winners-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.winner-entry {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: background .2s, transform .2s;
}
.winner-entry:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateX(2px);
}
.winner-thumb {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  font-size: 22px;
  background: linear-gradient(135deg, #0f2418, #0a1a10);
}
.winner-thumb-1 { background: linear-gradient(135deg, #ec4899, #f472b6); }
.winner-thumb-2 { background: linear-gradient(135deg, #db2777, #fde047); }
.winner-thumb-3 { background: linear-gradient(135deg, #1e3a8a, #94a3b8); }
.winner-thumb-4 { background: linear-gradient(135deg, #b91c1c, #facc15); }
.winner-thumb-5 { background: linear-gradient(135deg, #166534, #bbf7d0); }
.winner-thumb-6 { background: linear-gradient(135deg, #0f766e, #facc15); }

.winner-meta {
  min-width: 0;
}
.winner-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.winner-name span {
  font-weight: 400;
  color: var(--text-dimmer);
}
.winner-game {
  font-size: 11px;
  color: var(--text-dimmer);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.winner-amount {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--cta);
  white-space: nowrap;
}
.winner-amount-big {
  color: var(--primary);
  text-shadow: 0 0 12px rgba(34, 197, 94, 0.4);
}

.jackpot-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 8px 0;
}
.jackpot-diamond {
  margin-bottom: 14px;
  animation: float 3.5s ease-in-out infinite;
  filter: drop-shadow(0 0 30px rgba(249, 115, 22, 0.5));
}
.jackpot-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  margin-bottom: 8px;
}
.jackpot-amount {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, #ffffff 0%, #fde047 50%, #16a34a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 60px rgba(249, 115, 22, 0.4);
  margin-bottom: 22px;
  line-height: 1;
}
.btn-play-now {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 38px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: white;
  background: linear-gradient(135deg, #16a34a 0%, #dc2626 100%);
  box-shadow:
    0 12px 32px rgba(249, 115, 22, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: transform .2s, box-shadow .2s;
  margin-bottom: 14px;
}
.btn-play-now:hover {
  transform: translateY(-2px);
  box-shadow:
    0 16px 40px rgba(249, 115, 22, 0.65),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.jackpot-foot {
  font-size: 11px;
  color: var(--text-dimmer);
  display: flex;
  align-items: center;
  gap: 6px;
}
.jackpot-foot::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cta);
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.8);
  animation: pulse 1.5s ease-in-out infinite;
}

/* ============ NEWS / BLOG TEASERS ============ */
.news-section {
  margin-bottom: var(--section-gap);
}
.news-view-all {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  transition: color .2s;
}
.news-view-all:hover {
  color: #fef3c7;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.news-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #0f2418 0%, #060f08 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .25s ease;
}
.news-card:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 197, 94, 0.3);
  box-shadow: 0 18px 40px rgba(0,0,0,0.4);
}
.news-cover {
  position: relative;
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  font-size: 72px;
  overflow: hidden;
}
.news-cover-1 { background: linear-gradient(135deg, #166534 0%, #db2777 50%, #16a34a 100%); }
.news-cover-2 { background: linear-gradient(135deg, #14532d 0%, #16a34a 50%, #facc15 100%); }
.news-cover-3 { background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #06b6d4 100%); }
.news-cover-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.18), transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(0,0,0,0.5), transparent 60%),
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.06) 1px, transparent 0);
  background-size: auto, auto, 14px 14px;
}
.news-emoji {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.5));
}
.news-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: white;
  backdrop-filter: blur(8px);
}
.news-cat-update { background: rgba(34, 197, 94, 0.95); color: #052e16; }
.news-cat-strategy { background: rgba(34, 197, 94, 0.95); }
.news-cat-release { background: rgba(34, 197, 94, 0.95); }
.news-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.news-date {
  font-size: 11px;
  color: var(--text-dimmer);
  margin-bottom: 10px;
  font-weight: 500;
}
.news-headline {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-bottom: 10px;
  color: var(--text);
}
.news-excerpt {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.55;
  margin-bottom: 16px;
  flex: 1;
}
.news-read {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  transition: gap .2s;
  width: fit-content;
}
.news-read:hover {
  gap: 10px;
}

/* ============ NEWSLETTER ============ */
.newsletter-section {
  position: relative;
  margin-bottom: var(--section-gap);
  padding: 48px 36px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  text-align: center;
  border: 1px solid rgba(34, 197, 94, 0.25);
}
.newsletter-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(34, 197, 94, 0.25), transparent 60%),
    radial-gradient(circle at 70% 80%, rgba(34, 197, 94, 0.18), transparent 60%),
    linear-gradient(135deg, #0a2818 0%, #14532d 50%, #0a2818 100%);
}
.newsletter-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.06) 1px, transparent 0);
  background-size: 24px 24px;
}
.newsletter-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
}
.newsletter-icon {
  display: inline-grid;
  place-items: center;
  margin-bottom: 18px;
  filter: drop-shadow(0 8px 24px rgba(34, 197, 94, 0.5));
  animation: float 4s ease-in-out infinite;
}
.newsletter-tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.4);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #86efac;
  margin-bottom: 14px;
}
.newsletter-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #fff 0%, #fde047 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.newsletter-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto 14px;
}
.newsletter-input-wrap {
  position: relative;
  flex: 1;
}
.newsletter-input-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-dim);
}
.newsletter-input-wrap input {
  width: 100%;
  padding: 16px 18px 16px 46px;
  border-radius: 999px;
  background: rgba(13, 15, 26, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: white;
  font-size: 14px;
  outline: none;
  transition: all .2s;
  backdrop-filter: blur(10px);
}
.newsletter-input-wrap input::placeholder {
  color: var(--text-dimmer);
}
.newsletter-input-wrap input:focus {
  border-color: var(--cta);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.15);
}
.newsletter-submit {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: #052e16;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  box-shadow:
    0 12px 32px rgba(34, 197, 94, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
}
.newsletter-submit:hover {
  transform: translateY(-2px);
  box-shadow:
    0 16px 40px rgba(34, 197, 94, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}
.newsletter-submit.is-success {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: white;
}
.newsletter-fine {
  font-size: 11px;
  color: var(--text-dimmer);
}

/* ============ PAYMENT STRIP ============ */
.payment-strip {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 24px;
  margin-bottom: 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
}
.payment-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--text-dimmer);
  white-space: nowrap;
  flex-shrink: 0;
}
.payment-list {
  display: flex;
  gap: 10px;
  flex: 1;
  flex-wrap: wrap;
}
.payment-method {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  transition: all .2s;
}
.payment-method:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}
.pm-mark {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 6px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  color: #fff;
  flex-shrink: 0;
}
.pm-mark-circle { border-radius: 50%; }
.pm-mark-rounded { border-radius: 8px; }
.pm-mark-square { border-radius: 4px; }
.pm-mark-italic { font-style: italic; transform: skewX(-8deg); }
.pm-mark-mc {
  background: none !important;
  position: relative;
  width: 30px;
}
.pm-mark-mc::before, .pm-mark-mc::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  transform: translateY(-50%);
}
.pm-mark-mc::before { left: 0; background: #eb001b; }
.pm-mark-mc::after { right: 0; background: #f79e1b; mix-blend-mode: screen; }

.pm-text {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
}

/* Per-method colors */
.payment-gcash .pm-mark { background: linear-gradient(135deg, #0066ff, #00a3ff); }
.payment-maya .pm-mark { background: linear-gradient(135deg, #00d68f, #00a76e); }
.payment-grabpay .pm-mark { background: linear-gradient(135deg, #00b14f, #007a37); }
.payment-visa .pm-mark { background: linear-gradient(135deg, #1a1f71, #0e1444); }
.payment-coins .pm-mark { background: linear-gradient(135deg, #fbbf24, #d97706); color: #052e16; }
.payment-bpi .pm-mark { background: linear-gradient(135deg, #c8102e, #8b0a1f); }
.payment-union .pm-mark { background: linear-gradient(135deg, #f59e0b, #d97706); color: #052e16; }
.payment-crypto .pm-mark { background: linear-gradient(135deg, #f7931a, #c2691f); color: #fff; }

/* ============ FOOTER ============ */
.footer {
  padding: 40px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* Official License & Gaming Responsibility */
.responsible-gambling {
  text-align: center;
  padding: 26px 28px 24px;
  background: linear-gradient(180deg, rgba(15, 36, 24, 0.6) 0%, rgba(10, 26, 16, 0.4) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  margin-bottom: 36px;
}
.rg-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.rg-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.rg-logo {
  display: grid;
  place-items: center;
  transition: transform .2s, filter .2s;
}
.rg-logo:hover {
  transform: translateY(-2px);
  filter: brightness(1.1) saturate(1.1);
}
.rg-logo img {
  display: block;
  width: auto;
  object-fit: contain;
}
.rg-logo-pagcor img { height: 42px; }
.rg-logo-21 img { height: 38px; }

@media (max-width: 720px) {
  .responsible-gambling { padding: 22px 18px 20px; }
  .rg-logos { gap: 20px; }
  .rg-logo-pagcor img { height: 34px; }
  .rg-logo-21 img { height: 30px; }
  .rg-title { font-size: 14px; margin-bottom: 14px; }
}

/* Footer Grid */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-col-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 13px;
  color: var(--text-dim);
  transition: color .2s;
}
.footer-links a:hover {
  color: var(--primary);
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.social-link {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  color: var(--text-dim);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all .2s;
}
.social-link:hover {
  color: var(--primary);
  background: rgba(34, 197, 94, 0.08);
  border-color: rgba(34, 197, 94, 0.3);
  transform: translateY(-2px);
}
.footer-copy {
  font-size: 12px;
  color: var(--text-dimmer);
}
.footer-copy strong {
  color: var(--text-dim);
  font-weight: 600;
}

/* ============ NO RESULTS (search) ============ */
.no-results {
  text-align: center;
  padding: 60px 20px;
  margin-bottom: var(--section-gap);
  background: rgba(15, 36, 24, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
}
.no-results-icon {
  font-size: 48px;
  margin-bottom: 14px;
  opacity: 0.6;
}
.no-results h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.no-results p {
  font-size: 14px;
  color: var(--text-dim);
}

/* ============ SIGN UP MODAL ============ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(5, 7, 16, 0.78);
  backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.modal-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}
.modal {
  position: relative;
  width: 100%;
  max-width: 440px;
  max-height: 92vh;
  overflow-y: auto;
  background: linear-gradient(180deg, #0f2418 0%, #060f08 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 36px 36px 28px;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(34, 197, 94, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transform: scale(0.94) translateY(20px);
  transition: transform .35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.modal-backdrop.is-open .modal {
  transform: scale(1) translateY(0);
}
.modal::-webkit-scrollbar { width: 6px; }
.modal::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--text-dim);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all .2s;
}
.modal-close:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(90deg);
}

.modal-header {
  text-align: center;
  margin-bottom: 22px;
}
.modal-icon {
  display: inline-grid;
  place-items: center;
  filter: drop-shadow(0 0 18px rgba(34, 197, 94, 0.5));
  margin-bottom: 14px;
}
.modal-icon img {
  height: 56px;
  width: auto;
  display: block;
}
.modal-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.modal-sub {
  font-size: 13px;
  color: var(--text-dim);
}
.modal-sub strong {
  color: var(--primary);
  font-weight: 700;
}

.modal-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}
.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 13px;
  font-weight: 600;
  transition: all .2s;
}
.social-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.modal-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--text-dimmer);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.modal-divider::before,
.modal-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 18px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-field label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.form-field input {
  padding: 13px 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 14px;
  transition: all .2s;
  outline: none;
}
.form-field input:focus {
  border-color: var(--primary);
  background: rgba(34, 197, 94, 0.04);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.1);
}
.form-field input::placeholder { color: var(--text-dimmer); }

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: var(--text-dim);
  cursor: pointer;
  margin-top: 4px;
  line-height: 1.45;
}
.form-checkbox input {
  width: 16px;
  height: 16px;
  margin-top: 1px;
  accent-color: var(--primary);
  flex-shrink: 0;
}

.btn-signup-modal {
  display: block;
  width: 100%;
  padding: 14px 24px;
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #052e16;
  border-radius: 12px;
  box-shadow:
    0 12px 32px rgba(34, 197, 94, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transition: transform .2s, box-shadow .2s;
}
.btn-signup-modal:hover {
  transform: translateY(-1px);
  box-shadow:
    0 16px 40px rgba(34, 197, 94, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.modal-foot {
  text-align: center;
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 18px;
}

/* ============ GAME DETAIL MODAL ============ */
.modal-game {
  max-width: 560px;
  padding: 0;
  overflow: hidden;
}
.game-modal-hero {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
  padding: 32px 36px;
  overflow: hidden;
}
.gm-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0f2418, #0a1a10);
  z-index: 0;
}
.gm-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.18), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0,0,0,0.5), transparent 60%),
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.06) 1px, transparent 0);
  background-size: auto, auto, 14px 14px;
}

/* Per-game gradient backgrounds (mirror game card data-bg) */
.game-modal-hero[data-bg="conan"] .gm-hero-bg { background: linear-gradient(135deg, #7f1d1d, #f59e0b); }
.game-modal-hero[data-bg="joker"] .gm-hero-bg { background: linear-gradient(135deg, #0f766e, #facc15); }
.game-modal-hero[data-bg="winning"] .gm-hero-bg { background: linear-gradient(135deg, #14532d, #facc15); }
.game-modal-hero[data-bg="egypt"] .gm-hero-bg { background: linear-gradient(135deg, #c2410c, #fbbf24); }
.game-modal-hero[data-bg="hotline"] .gm-hero-bg { background: linear-gradient(135deg, #db2777, #2563eb); }
.game-modal-hero[data-bg="midgard"] .gm-hero-bg { background: linear-gradient(135deg, #1e3a8a, #94a3b8); }
.game-modal-hero[data-bg="stacks"] .gm-hero-bg { background: linear-gradient(135deg, #0891b2, #67e8f9); }
.game-modal-hero[data-bg="jungle"] .gm-hero-bg { background: linear-gradient(135deg, #14532d, #84cc16); }
.game-modal-hero[data-bg="holiday"] .gm-hero-bg { background: linear-gradient(135deg, #b91c1c, #16a34a); }
.game-modal-hero[data-bg="merlin"] .gm-hero-bg { background: linear-gradient(135deg, #064e3b, #22c55e); }
.game-modal-hero[data-bg="wolf"] .gm-hero-bg { background: linear-gradient(135deg, #1e293b, #64748b); }
.game-modal-hero[data-bg="superwin"] .gm-hero-bg { background: linear-gradient(135deg, #facc15, #16a34a); }
.game-modal-hero[data-bg="sugar"] .gm-hero-bg { background: linear-gradient(135deg, #ec4899, #f472b6); }
.game-modal-hero[data-bg="sweet"] .gm-hero-bg { background: linear-gradient(135deg, #db2777, #fde047); }
.game-modal-hero[data-bg="mining"] .gm-hero-bg { background: linear-gradient(135deg, #78350f, #facc15); }
.game-modal-hero[data-bg="gates"] .gm-hero-bg { background: linear-gradient(135deg, #b91c1c, #facc15); }
.game-modal-hero[data-bg="starlight"] .gm-hero-bg { background: linear-gradient(135deg, #166534, #bbf7d0); }
.game-modal-hero[data-bg="red-roulette"] .gm-hero-bg { background: linear-gradient(135deg, #7f1d1d, #dc2626); }
.game-modal-hero[data-bg="goal"] .gm-hero-bg { background: linear-gradient(135deg, #14532d, #22c55e); }
.game-modal-hero[data-bg="touch"] .gm-hero-bg { background: linear-gradient(135deg, #0c4a6e, #38bdf8); }
.game-modal-hero[data-bg="black-jack"] .gm-hero-bg { background: linear-gradient(135deg, #0f172a, #475569); }
.game-modal-hero[data-bg="advanced"] .gm-hero-bg { background: linear-gradient(135deg, #14532d, #4ade80); }
.game-modal-hero[data-bg="gates-olympus-scatter"] .gm-hero-bg { background: linear-gradient(135deg, #b91c1c, #facc15); }
.game-modal-hero[data-bg="sweet-bonanza-1k"] .gm-hero-bg { background: linear-gradient(135deg, #db2777, #fde047); }
.game-modal-hero[data-bg="jelly-express"] .gm-hero-bg { background: linear-gradient(135deg, #0891b2, #86efac); }
.game-modal-hero[data-bg="fortune-ace-scatter"] .gm-hero-bg { background: linear-gradient(135deg, #7f1d1d, #fbbf24); }
.game-modal-hero[data-bg="starlight-princess-scatter"] .gm-hero-bg { background: linear-gradient(135deg, #166534, #bbf7d0); }
.game-modal-hero[data-bg="super-ace-deluxe"] .gm-hero-bg { background: linear-gradient(135deg, #0f766e, #fde047); }
.game-modal-hero[data-bg="sugar-rush-1k"] .gm-hero-bg { background: linear-gradient(135deg, #ec4899, #f472b6); }
.game-modal-hero[data-bg="lucky-fortunes"] .gm-hero-bg { background: linear-gradient(135deg, #14532d, #facc15); }
.game-modal-hero[data-bg="wild-ape"] .gm-hero-bg { background: linear-gradient(135deg, #166534, #84cc16); }

.game-modal-thumb {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 110px;
  height: 110px;
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.15);
  font-size: 56px;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.4));
}
.gm-icon {
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.5));
}
.gm-hero-meta {
  position: relative;
  z-index: 1;
  min-width: 0;
}
.gm-tag {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  backdrop-filter: blur(8px);
}
.gm-name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: white;
  margin-bottom: 4px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.gm-provider {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 8px;
}
.gm-provider span { font-weight: 700; color: white; }
.gm-rating {
  display: flex;
  gap: 2px;
  font-size: 14px;
  color: #fbbf24;
}

.gm-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.gm-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px 8px;
  background: linear-gradient(180deg, #0f2418 0%, #060f08 100%);
}
.gm-stat-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dimmer);
}
.gm-stat-value {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--primary);
}

.gm-desc {
  padding: 22px 36px 12px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-dim);
}

.gm-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 36px 22px;
}
.gm-feature {
  padding: 6px 12px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  color: #86efac;
}

.gm-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 22px 36px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.btn-play-now-modal {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  margin-bottom: 0;
}
.gm-btn-demo {
  padding: 16px 24px;
  flex-shrink: 0;
}
.gm-fav {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-dim);
  flex-shrink: 0;
  transition: all .2s;
}
.gm-fav:hover {
  color: #fb7185;
  background: rgba(251, 113, 133, 0.08);
  border-color: rgba(251, 113, 133, 0.3);
}
.gm-fav.is-favorited {
  color: #fb7185;
  background: rgba(251, 113, 133, 0.15);
}
.gm-fav.is-favorited svg path {
  fill: currentColor;
}

@media (max-width: 560px) {
  .modal-game { max-width: 100%; }
  .game-modal-hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 28px 24px 24px;
  }
  .game-modal-thumb { margin: 0 auto; width: 96px; height: 96px; font-size: 48px; }
  .gm-stats { grid-template-columns: repeat(2, 1fr); }
  .gm-desc { padding: 20px 24px 10px; }
  .gm-features { padding: 0 24px 20px; }
  .gm-actions { padding: 20px 24px 24px; flex-wrap: wrap; }
  .btn-play-now-modal { flex: 1 1 100%; }
  .gm-btn-demo { flex: 1; }
}

/* ============ HAMBURGER (mobile only) ============ */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 0 10px;
  border-radius: 10px;
  background: rgba(15, 36, 24, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background .2s;
}
.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============ MOBILE MENU ============ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(5, 7, 16, 0.78);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 86vw);
  background: linear-gradient(180deg, #0f2418 0%, #060f08 100%);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
  padding: 24px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.mobile-menu.is-open .mobile-menu-panel {
  transform: translateX(0);
}
.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.mobile-menu-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.mobile-menu-close {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--text-dim);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all .2s;
}
.mobile-menu-close:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}
.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.mobile-menu-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: all .2s;
}
.mobile-menu-link:hover,
.mobile-menu-link:focus-visible {
  background: rgba(34, 197, 94, 0.06);
  border-color: rgba(34, 197, 94, 0.3);
  transform: translateX(4px);
}
.mml-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 18px;
}
.mobile-menu-foot {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.btn-signup-mobile {
  width: 100%;
  justify-content: center;
  padding: 14px;
}
.mobile-menu-login {
  font-size: 12px;
  color: var(--text-dim);
  text-align: center;
}

/* ============ LIVE CHAT WIDGET ============ */
.sb-item-chat {
  position: relative;
}
.sb-dot-online {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cta);
  box-shadow: 0 0 0 2px rgba(15, 36, 24, 0.9), 0 0 8px rgba(34, 197, 94, 0.7);
  animation: pulse 1.8s ease-in-out infinite;
  pointer-events: none;
}
.sidebar:hover .sb-dot-online,
.sidebar.is-pinned .sb-dot-online {
  /* When expanded, hide the corner dot — it duplicates the inline one */
  display: none;
}

/* Floating chat toggle button */
.chat-toggle {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 70;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #052e16;
  box-shadow:
    0 14px 32px rgba(34, 197, 94, 0.4),
    0 0 0 6px rgba(34, 197, 94, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transition: transform .25s ease, box-shadow .25s ease;
  animation: chatNudge 6s ease-in-out infinite;
}
@keyframes chatNudge {
  0%, 88%, 100% { transform: scale(1); }
  92%           { transform: scale(1.08) rotate(-6deg); }
  96%           { transform: scale(1.08) rotate(6deg); }
}
.chat-toggle:hover {
  transform: scale(1.06);
  box-shadow:
    0 18px 40px rgba(34, 197, 94, 0.55),
    0 0 0 6px rgba(34, 197, 94, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.chat-toggle .chat-toggle-icon-close { display: none; }
.chat-toggle.is-open .chat-toggle-icon-chat { display: none; }
.chat-toggle.is-open .chat-toggle-icon-close { display: block; }
.chat-toggle.is-open {
  animation: none;
}
.chat-toggle-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  display: grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: #dc2626;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 11px;
  border: 2px solid #052e16;
  box-shadow: 0 2px 6px rgba(220, 38, 38, 0.5);
}
.chat-toggle.is-open .chat-toggle-badge { display: none; }

/* Chat panel */
.chat-panel {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 65;
  width: 380px;
  max-width: calc(100vw - 48px);
  height: 560px;
  max-height: calc(100vh - 140px);
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #0f2418 0%, #060f08 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(34, 197, 94, 0.1);
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
  transition: opacity .3s ease, transform .3s cubic-bezier(0.2, 0.8, 0.2, 1);
  overflow: hidden;
}
.chat-panel.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  background: linear-gradient(135deg, #0f2418 0%, #060f08 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.chat-agent {
  display: flex;
  align-items: center;
  gap: 12px;
}
.chat-avatar {
  position: relative;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #052e16;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}
.chat-avatar-status {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cta);
  border: 2px solid #0f2418;
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.6);
}
.chat-agent-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.chat-agent-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--text-dim);
}
.chat-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cta);
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.7);
  animation: pulse 1.8s ease-in-out infinite;
}
.chat-close {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-dim);
  transition: all .2s;
}
.chat-close:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(90deg);
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.chat-messages::-webkit-scrollbar { width: 6px; }
.chat-messages::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
}

.chat-msg {
  display: flex;
  flex-direction: column;
  max-width: 85%;
  animation: chatMsgIn .3s ease-out;
}
@keyframes chatMsgIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.chat-msg-agent { align-self: flex-start; }
.chat-msg-user  { align-self: flex-end; }
.chat-bubble {
  padding: 11px 16px;
  border-radius: 16px;
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--text);
}
.chat-msg-agent .chat-bubble {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom-left-radius: 4px;
}
.chat-msg-user .chat-bubble {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #052e16;
  font-weight: 600;
  border-bottom-right-radius: 4px;
  box-shadow: 0 6px 16px rgba(34, 197, 94, 0.3);
}
.chat-time {
  font-size: 10px;
  color: var(--text-dimmer);
  margin-top: 4px;
  padding: 0 6px;
}
.chat-msg-user .chat-time {
  align-self: flex-end;
}

.chat-suggestions {
  margin-top: 4px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.chat-suggestions-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--text-dimmer);
  margin-bottom: 4px;
}
.chat-suggest {
  text-align: left;
  padding: 9px 14px;
  background: rgba(34, 197, 94, 0.05);
  border: 1px solid rgba(34, 197, 94, 0.18);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text);
  transition: all .15s;
}
.chat-suggest:hover {
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.4);
  transform: translateX(2px);
}

.chat-typing {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 11px 16px;
}
.chat-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-dim);
  animation: chatType 1.4s ease-in-out infinite;
}
.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes chatType {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30%           { opacity: 1; transform: translateY(-3px); }
}

.chat-input-form {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.2);
}
.chat-input-wrap {
  flex: 1;
}
.chat-input-wrap input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 13.5px;
  outline: none;
  transition: border-color .2s, background .2s;
}
.chat-input-wrap input:focus {
  border-color: var(--primary);
  background: rgba(34, 197, 94, 0.04);
}
.chat-input-wrap input::placeholder { color: var(--text-dimmer); }
.chat-send {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #052e16;
  flex-shrink: 0;
  transition: transform .2s;
}
.chat-send:hover { transform: scale(1.05); }

.chat-foot {
  padding: 8px 16px 12px;
  text-align: center;
  font-size: 10px;
  color: var(--text-dimmer);
  background: rgba(0, 0, 0, 0.2);
}
.chat-foot strong { color: var(--cta); }

@media (max-width: 560px) {
  .chat-panel {
    bottom: 90px;
    right: 12px;
    left: 12px;
    width: auto;
    max-width: none;
  }
  .chat-toggle { bottom: 16px; right: 16px; }
}

/* ============ ACCESSIBILITY ============ */
/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 200;
  padding: 12px 20px;
  background: var(--primary);
  color: #052e16;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
}
.skip-link:focus {
  left: 12px;
}

/* Universal focus-visible (only when keyboard-navigating) */
button:focus-visible,
a:focus-visible,
input:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 6px;
}
.search input:focus-visible,
.form-field input:focus-visible {
  outline: none; /* handled by field's own focus styles */
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .art-character,
  .promo-card-art,
  .jackpot-diamond,
  .coin {
    animation: none !important;
  }
}

/* ============ RESPONSIVE BREAKPOINTS ============ */

/* Large tablet / small desktop */
@media (max-width: 1100px) {
  .game-row { grid-template-columns: repeat(5, 1fr); }
  .game-row-secondary { grid-template-columns: repeat(5, 1fr); }
  .shell { padding: 0 20px; }
  .hero-slide { padding: 40px 44px; }
  .hero-title { font-size: clamp(32px, 4vw, 44px); }
  .footer-grid { gap: 28px; }
}

/* Tablet */
@media (max-width: 960px) {
  .game-row { grid-template-columns: repeat(4, 1fr); }
  .game-row-secondary { grid-template-columns: repeat(4, 1fr); }
  .promo-features { gap: 20px; }
  .promo-card { padding: 28px; min-height: 200px; }
  .promo-card-title { font-size: 26px; }
  .jackpot-section { padding: 28px; gap: 20px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .responsible-gambling { grid-template-columns: auto 1fr; }
  .rg-licenses { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; }
  .vip-head { grid-template-columns: 1fr; gap: 24px; }
  .vip-tiers { grid-template-columns: repeat(3, 1fr); }
  .vip-tier-platinum, .vip-tier-diamond { grid-column: span 1; }
  .tournament-head { grid-template-columns: 1fr; gap: 22px; }
  .tournament-body { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile (hamburger appears) */
@media (max-width: 880px) {
  :root { --section-gap: 44px; }

  .sidebar { display: none; }
  body { padding-left: 0; }
  .shell {
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 100%;
  }

  .navbar {
    grid-template-columns: auto 1fr auto auto;
    gap: 12px;
    padding: 18px 0;
  }
  .btn-login { display: none; }
  .btn-signup { padding: 10px 18px; font-size: 13px; }
  .btn-signup span { display: none; }
  .btn-signup { padding: 10px 14px; }
  .hamburger { display: flex; }
  .wallet-widget .wallet-info { display: none; }
  .wallet-trigger { padding: 4px; }
  .search { max-width: none; padding: 9px 14px; }
  .search-kbd { display: none; }

  .hero-carousel { height: auto; min-height: 460px; }
  .hero-slide {
    grid-template-columns: 1fr;
    padding: 36px 28px;
    text-align: center;
  }
  .hero-copy { max-width: 100%; margin: 0 auto; }
  .hero-tag { font-size: 10px; }
  .hero-title { font-size: clamp(28px, 6vw, 38px); }
  .hero-amount-number { font-size: 36px; }
  .hero-actions { justify-content: center; flex-wrap: wrap; }
  .hero-art {
    height: 220px;
    margin-top: 16px;
  }
  .art-character { max-width: 220px; }
  .coin { display: none; }

  .game-row, .game-row-secondary {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
  }
  .game-row .game-card,
  .game-row-secondary .game-card {
    flex: 0 0 160px;
    scroll-snap-align: start;
  }

  .game-section-title { font-size: 18px; }
  .row-arrow { width: 34px; height: 34px; }

  .provider-strip { padding: 22px 20px; }
  .provider-strip-title { font-size: 16px; }
  .provider-logo { padding: 10px 14px; }
  .pl-text { font-size: 13px; }

  .promo-features { grid-template-columns: 1fr; }
  .promo-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 28px 24px;
  }
  .promo-card-body { max-width: 100%; margin: 0 auto; }
  .promo-card-art {
    width: 140px;
    height: 140px;
    margin: 16px auto 0;
  }

  .jackpot-section {
    grid-template-columns: 1fr;
    padding: 28px 20px;
  }
  .jackpot-center { order: -1; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .jackpot-amount { font-size: 40px; }

  .responsible-gambling {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 22px 20px;
  }
  .rg-badge { margin: 0 auto; }
  .rg-licenses { justify-content: center; }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  .footer-row {
    flex-direction: column-reverse;
    gap: 16px;
  }
  .footer-copy { text-align: center; font-size: 11px; }

  .vip-section { padding: 24px 20px; }
  .vip-title { font-size: 26px; }
  .vip-tiers { grid-template-columns: repeat(2, 1fr); }
  .vip-tier { padding: 20px 14px; }
  .vip-tier.is-current { transform: translateY(-3px); }

  .tournament-section { padding: 24px 20px; }
  .tournament-title { font-size: 24px; }
  .tournament-stats { grid-template-columns: 1fr; }
  .leaderboard-head, .lb-row {
    grid-template-columns: 44px 1fr 80px 90px;
    gap: 8px;
    padding: 12px 14px;
  }
  .lb-prize { font-size: 12px; }
  .lb-points { font-size: 12px; }

  .news-grid { grid-template-columns: 1fr; }
  .newsletter-section { padding: 36px 20px; }
  .newsletter-form { flex-direction: column; gap: 10px; }
  .newsletter-submit { width: 100%; justify-content: center; }

  .payment-strip { flex-direction: column; align-items: flex-start; gap: 14px; padding: 18px 20px; }
}

/* Small mobile */
@media (max-width: 560px) {
  .shell { padding: 0 14px; }
  .navbar { gap: 8px; }
  .logo-text { font-size: 18px; }
  .search input { font-size: 13px; }

  .hero-slide { padding: 28px 20px; }
  .hero-title { font-size: 26px; }
  .hero-amount-number { font-size: 30px; }
  .btn-claim { padding: 12px 22px; font-size: 13px; }
  .btn-ghost { padding: 12px 18px; font-size: 12px; }

  .game-row .game-card,
  .game-row-secondary .game-card {
    flex: 0 0 140px;
  }
  .game-thumb { font-size: 48px; }

  .promo-card-title { font-size: 22px; }
  .promo-card-text { font-size: 13px; }

  .jackpot-amount { font-size: 32px; }
  .btn-play-now { padding: 14px 28px; font-size: 13px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer-col-title { font-size: 12px; }

  .modal { padding: 24px 22px 22px; }
  .modal-title { font-size: 22px; }

  .rg-licenses { flex-direction: column; }
}

/* Tiny screens */
@media (max-width: 380px) {
  .hero-actions { flex-direction: column; }
  .btn-claim, .btn-ghost { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============ HERO BANNER (replaces old carousel) ============ */
.hero { margin-bottom: var(--section-gap); }
.hero-banner {
  display: block;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(34, 197, 94, 0.25);
  transition: transform .3s ease, box-shadow .3s ease;
}
.hero-banner:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card), 0 0 40px rgba(34, 197, 94, 0.25);
  border-color: rgba(34, 197, 94, 0.45);
}
.hero-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============ RESPONSIVE — comprehensive sweep ============ */

/* Small phones (≤560px) — tighten existing modals + game UI */
@media (max-width: 560px) {
  /* Sign Up / Login modals — backdrop padding */
  .modal-backdrop { padding: 16px 12px; }
  .modal { padding: 24px 22px 20px; border-radius: var(--radius-lg); }

  /* Game detail modal */
  .game-modal-hero { padding: 22px 20px; gap: 14px; }
  .gm-name { font-size: 22px; }

  /* Game section heads */
  .game-section-title { font-size: 17px; }
  .row-controls { gap: 6px; }
  .row-arrow { width: 32px; height: 32px; }

  /* Wallet pill / profile dropdown */
  .wallet-trigger { padding: 4px 10px 4px 4px; }
  .wallet-avatar { width: 32px; height: 32px; font-size: 12px; }
  .wallet-dropdown { width: calc(100vw - 32px); max-width: 260px; }

  /* Hero banner — keep aspect ratio */
  .hero-banner { border-radius: var(--radius-lg); }
}

/* Extra-narrow phones (320–380) */
@media (max-width: 380px) {
  .modal { padding: 20px 16px 18px; }
  .modal-title { font-size: 20px; }
}

/* Wide screens (1600+) */
@media (min-width: 1600px) {
  .shell { max-width: 1320px; }
}

/* ============ INDUSTRY LEADERS — FLOATING LOGOS (transparent) ============ */
.leader-logo {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  height: 56px;
  padding: 0 22px;
  background: none;
  border: none;
  text-decoration: none;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
  transition: transform .25s ease, filter .25s ease;
}
.leader-logo:hover {
  transform: translateY(-3px);
  filter: drop-shadow(0 6px 14px rgba(34, 197, 94, 0.4)) drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
}
.leader-logo img {
  height: 100%;
  width: auto;
  max-height: 56px;
  object-fit: contain;
  display: block;
}
@media (max-width: 720px) {
  .leader-logo { height: 44px; padding: 0 14px; }
  .leader-logo img { max-height: 44px; }
}

/* ============ GGAMES HERO (welcome + 2 promo cards) ============ */
.hero-ggames {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  margin-bottom: var(--section-gap);
  min-height: 360px;
}

/* Welcome card spans 2 rows */
.bm-welcome {
  grid-row: 1 / 3;
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 20px;
  padding: 32px 36px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 100% 50%, rgba(34, 197, 94, 0.25), transparent 60%),
    linear-gradient(135deg, #0f2418 0%, #142e1f 50%, #0f2418 100%);
  border: 1px solid rgba(34, 197, 94, 0.25);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.bm-welcome::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.04) 1px, transparent 0);
  background-size: 24px 24px;
  pointer-events: none;
}
.bm-welcome-copy {
  position: relative;
  z-index: 1;
}
.bm-welcome-eyebrow {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.4);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--primary-bright);
  margin-bottom: 14px;
}
.bm-welcome-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 12px;
}
.bm-welcome-brand {
  background: linear-gradient(135deg, #4ade80 0%, #22c55e 50%, #15803d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}
.bm-welcome-sub {
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 22px;
  max-width: 380px;
  line-height: 1.55;
}
.bm-welcome-art {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  height: 100%;
  min-height: 340px;
  padding: 12px 0 56px;
}
/* Levitation aura — soft radial glow well below the mascot, no hard contact */
.bm-welcome-art::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 22px;
  width: 70%;
  height: 36px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center,
    rgba(34, 197, 94, 0.45) 0%,
    rgba(34, 197, 94, 0.22) 28%,
    rgba(34, 197, 94, 0) 70%);
  filter: blur(10px);
  pointer-events: none;
  animation: bmAura 4s ease-in-out infinite;
  z-index: 0;
  mix-blend-mode: screen;
}
.bm-welcome-art img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: 340px;
  width: auto;
  height: auto;
  /* Layered drop shadows for 3D depth:
     1) close ambient shadow tucked under
     2) wider soft shadow lifting the figure
     3) outer green brand aura
     4) warm fill highlight from above */
  filter:
    drop-shadow(0 8px 14px rgba(0, 0, 0, 0.5))
    drop-shadow(0 28px 40px rgba(0, 0, 0, 0.45))
    drop-shadow(0 0 32px rgba(34, 197, 94, 0.5))
    drop-shadow(0 -3px 10px rgba(255, 220, 130, 0.22));
  animation: bmFloat 4.5s ease-in-out infinite;
  will-change: transform;
}
@keyframes bmFloat {
  0%, 100% { transform: translateY(0) rotate(-1.2deg); }
  50%      { transform: translateY(-16px) rotate(1.2deg); }
}
@keyframes bmAura {
  0%, 100% { transform: translateX(-50%) scale(1, 1);     opacity: 0.85; }
  50%      { transform: translateX(-50%) scale(0.78, 0.7); opacity: 0.5;  }
}

/* Big CTA */
.bm-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: #052e16;
  background: linear-gradient(135deg, #4ade80 0%, #22c55e 50%, #15803d 100%);
  border: none;
  cursor: pointer;
  box-shadow:
    0 12px 32px rgba(34, 197, 94, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transition: transform .2s, box-shadow .2s;
}
.bm-cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 16px 40px rgba(34, 197, 94, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

/* Promo cards (right column) */
.bm-promo {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 26px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 100% 0%, rgba(34, 197, 94, 0.22), transparent 60%),
    linear-gradient(135deg, #0f2418 0%, #142e1f 60%, #0f2418 100%);
  border: 1px solid rgba(34, 197, 94, 0.2);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.bm-promo::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.04) 1px, transparent 0);
  background-size: 20px 20px;
  pointer-events: none;
}
.bm-promo-icon {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 38px;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.5));
}
.bm-promo-eyebrow {
  position: relative;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  margin-bottom: 4px;
}
.bm-promo-title {
  position: relative;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #4ade80 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Small CTA */
.bm-cta-sm {
  position: relative;
  align-self: flex-start;
  padding: 9px 20px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: #052e16;
  background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(34, 197, 94, 0.35), inset 0 1px 0 rgba(255,255,255,0.4);
  transition: transform .2s;
}
.bm-cta-sm:hover { transform: translateY(-1px); }

/* Mobile: stack everything */
@media (max-width: 880px) {
  .hero-ggames {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  .bm-welcome {
    grid-row: auto;
    grid-template-columns: 1fr;
    text-align: center;
    padding: 28px 22px;
  }
  .bm-welcome-copy { order: 2; }
  .bm-welcome-art { order: 1; }
  .bm-welcome-sub { margin-left: auto; margin-right: auto; }
}
@media (max-width: 480px) {
  .bm-welcome { padding: 24px 18px; }
  .bm-promo { padding: 18px 20px; }
  .bm-promo-title { font-size: 20px; }
  .bm-promo-icon { font-size: 30px; }
}

/* ============ GAME PROVIDER STRIP (gp-*) ============ */
.gp-section {
  margin-bottom: var(--section-gap);
}
.gp-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.gp-section-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 0 0 4px;
}
.gp-section-sub {
  font-size: 13px;
  color: var(--text-dim);
  margin: 0;
}
.gp-section-count {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.10);
  border: 1px solid rgba(34, 197, 94, 0.35);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--primary-bright);
}
.gp-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6);
  animation: gpPulse 1.6s ease-out infinite;
}
@keyframes gpPulse {
  0%   { box-shadow: 0 0 0 0   rgba(74, 222, 128, 0.55); }
  70%  { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0);    }
  100% { box-shadow: 0 0 0 0   rgba(74, 222, 128, 0);    }
}

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

.gp-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  padding: 14px 12px 18px;
  background:
    radial-gradient(ellipse 110% 70% at 50% 0%, rgba(34, 197, 94, 0.18), transparent 65%),
    linear-gradient(180deg, #0f2418 0%, #0a1a10 100%);
  border: 1.5px solid rgba(34, 197, 94, 0.35);
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  cursor: pointer;
  outline: none;
  overflow: hidden;
  transition: transform .35s cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow .35s, border-color .35s;
}
.gp-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  pointer-events: none;
  background: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.04) 1px, transparent 0);
  background-size: 18px 18px;
  opacity: 0.6;
}
.gp-card:hover,
.gp-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(74, 222, 128, 0.75);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.55),
    0 0 28px rgba(34, 197, 94, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* GG verified badge — top-right corner pill */
.gp-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px 3px 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, #4ade80, #15803d);
  color: #052e16;
  font-family: var(--font-display);
  font-size: 9.5px;
  font-weight: 900;
  letter-spacing: 0.06em;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.45), inset 0 1px 0 rgba(255,255,255,0.4);
  z-index: 2;
}
.gp-badge svg { display: block; }

/* Top label (e.g. "PG SLOT") */
.gp-tag {
  position: relative;
  align-self: flex-start;
  padding: 3px 9px;
  margin-bottom: 6px;
  border-radius: 6px;
  background: rgba(34, 197, 94, 0.13);
  border: 1px solid rgba(34, 197, 94, 0.3);
  font-family: var(--font-display);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--primary-bright);
  z-index: 1;
}

/* Character art frame */
.gp-art {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  margin-bottom: 12px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 60%, rgba(34, 197, 94, 0.22), transparent 70%),
    linear-gradient(180deg, rgba(15, 36, 24, 0.5) 0%, rgba(10, 26, 16, 0.5) 100%);
  overflow: hidden;
  z-index: 1;
}
.gp-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.5));
  transition: transform .4s ease;
}
.gp-card:hover .gp-art img,
.gp-card:focus-visible .gp-art img {
  transform: scale(1.06);
}

/* Footer with name + stars + meta */
.gp-foot {
  position: relative;
  text-align: center;
  z-index: 1;
}
.gp-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.02em;
  margin: 0 0 3px;
  background: linear-gradient(180deg, #4ade80 0%, #22c55e 60%, #15803d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 2px 14px rgba(34, 197, 94, 0.25);
}
.gp-stars {
  font-size: 10px;
  letter-spacing: 1.5px;
  color: #facc15;
  margin-bottom: 4px;
  text-shadow: 0 1px 4px rgba(250, 204, 21, 0.4);
}
.gp-meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-dim);
  margin: 0;
}
.gp-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6);
  animation: gpPulse 1.6s ease-out infinite;
}

/* Responsive — collapse to fewer columns */
@media (max-width: 1280px) {
  .gp-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .gp-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .gp-name { font-size: 15px; }
  .gp-section-title { font-size: 20px; }
}
@media (max-width: 420px) {
  .gp-card { padding: 12px 10px 16px; }
  .gp-name { font-size: 14px; }
}

/* ============ PROVIDER GAMES PANEL ============ */
.provider-panel {
  padding: 0 var(--gutter);
  margin-bottom: 40px;
}
.provider-panel[hidden] { display: none; }
.provider-panel-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.provider-panel-back {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text);
  cursor: pointer;
  transition: background .2s;
}
.provider-panel-back:hover { background: rgba(255,255,255,0.14); }
.provider-panel-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
}
.provider-panel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 16px;
}
@media (max-width: 560px) {
  .provider-panel-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
}

/* ============ SPLIT LOGIN / SIGNUP MODAL ============ */
.modal-split {
  display: flex;
  flex-direction: row;
  max-width: 780px;
  width: 94vw;
  padding: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

/* Left: Mascot art panel */
.modal-mascot {
  flex: 0 0 44%;
  position: relative;
  display: grid;
  place-items: end center;
  background:
    radial-gradient(circle at 50% 70%, rgba(34, 197, 94, 0.3), transparent 65%),
    linear-gradient(180deg, #0a1a10 0%, #0f2418 50%, #060f08 100%);
  overflow: hidden;
  padding: 28px 16px 0;
}
.modal-mascot img {
  display: block;
  max-width: 100%;
  max-height: 360px;
  width: auto;
  height: auto;
  filter:
    drop-shadow(0 8px 24px rgba(0,0,0,0.55))
    drop-shadow(0 0 28px rgba(34, 197, 94, 0.4));
  animation: bmFloat 4.5s ease-in-out infinite;
}

/* Right: Form panel */
.modal-form-panel {
  flex: 1;
  padding: 32px 36px 28px;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #0f2418 0%, #0a1a10 100%);
  overflow-y: auto;
  max-height: 92vh;
}
.modal-split .modal-header {
  text-align: left;
  padding: 0;
  margin-bottom: 22px;
}
.modal-split .modal-icon {
  margin-bottom: 14px;
}
.modal-split .modal-icon img {
  height: 26px;
}
.modal-title-green {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--primary);
  margin-bottom: 6px;
}
.modal-split .modal-sub {
  font-size: 13px;
  color: var(--text-dim);
  text-align: left;
}
.modal-split .modal-form {
  padding: 0;
  gap: 16px;
}
.modal-split .form-field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dim);
  margin-bottom: 5px;
}

/* Password field with eye toggle */
.field-password-wrap {
  position: relative;
}
.field-password-wrap input {
  padding-right: 44px;
}
.field-eye {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: none;
  background: none;
  color: var(--text-dimmer);
  cursor: pointer;
  border-radius: 8px;
  transition: color .2s, background .2s;
}
.field-eye:hover {
  color: var(--primary);
  background: rgba(34, 197, 94, 0.1);
}

/* Social login buttons */
.modal-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.btn-social {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: background .2s, border-color .2s;
}
.btn-social-fb {
  background: rgba(24, 119, 242, 0.15);
  color: #60a5fa;
  border-color: rgba(24, 119, 242, 0.3);
}
.btn-social-fb:hover {
  background: rgba(24, 119, 242, 0.25);
  border-color: rgba(24, 119, 242, 0.5);
}
.btn-social-dc {
  background: rgba(88, 101, 242, 0.15);
  color: #818cf8;
  border-color: rgba(88, 101, 242, 0.3);
}
.btn-social-dc:hover {
  background: rgba(88, 101, 242, 0.25);
  border-color: rgba(88, 101, 242, 0.5);
}

.modal-split .modal-foot {
  margin-top: 16px;
  text-align: center;
  font-size: 13px;
}

/* Mobile: stack vertically, hide mascot */
@media (max-width: 680px) {
  .modal-split {
    flex-direction: column;
    max-width: 420px;
  }
  .modal-mascot {
    flex: none;
    height: 160px;
    padding: 16px 16px 0;
  }
  .modal-mascot img {
    max-height: 140px;
  }
  .modal-form-panel {
    padding: 24px 22px 22px;
  }
}
@media (max-width: 420px) {
  .modal-mascot { display: none; }
  .modal-split { max-width: 100%; }
  .modal-form-panel { padding: 22px 18px 20px; }
}
