/* Vodka Casino — Official Mirror Design System */
:root {
  --bg-0: #0c0f17;
  --bg-1: #121622;
  --bg-2: #1a2030;
  --bg-3: #222a3d;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #ffffff;
  --text-muted: #94a3b8;
  --lime: #00e676;
  --lime-hover: #00c853;
  --lime-glow: rgba(0, 230, 118, 0.35);
  --blue: #00b4d8;
  --gold: #f59e0b;
  --gold-light: #fbbf24;
  --danger: #ef4444;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --header-h: 72px;
  --bottom-nav-h: 60px;
  --container: 1240px;
  --font: Inter, Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow-glow: 0 0 20px rgba(0, 230, 118, 0.35);
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: var(--bg-0);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
}

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

a {
  color: var(--lime);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--lime-hover);
}

button,
input,
select {
  font: inherit;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.6em;
  line-height: 1.2;
  letter-spacing: 0.01em;
  font-weight: 800;
}

p {
  margin: 0 0 1em;
  color: var(--text-muted);
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  min-width: 44px;
  padding: 0.7rem 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  text-align: center;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), border-color var(--transition), transform 0.15s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--lime);
  color: #04140a;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  background: var(--lime-hover);
  color: #04140a;
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: rgba(0, 230, 118, 0.4);
}

.btn-secondary:hover {
  border-color: var(--lime);
  color: var(--lime);
  background: rgba(0, 230, 118, 0.08);
}

.btn-blue {
  background: var(--blue);
  color: #041018;
}

.btn-blue:hover {
  filter: brightness(1.08);
  color: #041018;
}

.btn-sm {
  min-height: 40px;
  padding: 0.55rem 1rem;
  font-size: 0.875rem;
}

.btn-block {
  width: 100%;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(12, 15, 23, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  flex-shrink: 0;
}

.logo:hover {
  color: var(--text);
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(145deg, #38bdf8, #0284c7);
  border: 2px solid var(--lime);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 1.15rem;
  color: #0c0f17;
  box-shadow: 0 0 16px rgba(0, 230, 118, 0.25);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text strong {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.logo-text span {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 500;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 4px;
  margin-left: 12px;
  flex: 1;
}

.nav-desktop a {
  color: var(--text-muted);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
}

.nav-desktop a:hover,
.nav-desktop a.is-active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.status-pill {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 230, 118, 0.1);
  border: 1px solid rgba(0, 230, 118, 0.25);
  color: var(--lime);
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 10px var(--lime);
  animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.55;
    transform: scale(0.85);
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.header-actions .btn-reg-desktop {
  display: none;
}

.burger {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-2);
  color: var(--text);
  cursor: pointer;
}

.burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  margin: 3px 0;
  border-radius: 2px;
}

.mobile-nav {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: var(--header-h);
  background: rgba(12, 15, 23, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 12px 16px 20px;
}

.mobile-nav.is-open {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 12px 14px;
  color: var(--text);
  border-radius: 10px;
  font-weight: 600;
}

.mobile-nav a:hover {
  background: var(--bg-2);
}

/* Hero */
.hero {
  position: relative;
  padding: 20px 0 8px;
}

.hero-slider {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-2);
  width: 100%;
  height: clamp(340px, 52vw, 480px);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.5s ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 20px;
  background: linear-gradient(90deg, rgba(8, 10, 16, 0.94) 0%, rgba(8, 10, 16, 0.78) 45%, rgba(8, 10, 16, 0.2) 78%, transparent 100%);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(26, 32, 48, 0.85);
  border: 1px solid var(--border-strong);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text);
}

.badge-lime {
  border-color: rgba(0, 230, 118, 0.4);
  color: var(--lime);
}

.hero h1 {
  font-size: clamp(1.45rem, 4vw, 2.4rem);
  max-width: 18ch;
  margin-bottom: 10px;
}

.hero-offer {
  font-size: clamp(1rem, 2.4vw, 1.25rem);
  color: var(--gold-light);
  font-weight: 700;
  margin-bottom: 18px;
  max-width: 36ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-more {
  margin: 12px 0 0;
  font-size: 0.9rem;
}

.hero-more a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-more a:hover {
  color: var(--lime);
}

.hero-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

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

.hero-dot.is-active {
  background: var(--lime);
  box-shadow: 0 0 10px var(--lime-glow);
}

/* Mirror status strip */
.mirror-strip {
  margin: 18px 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 230, 118, 0.25);
  background: linear-gradient(105deg, rgba(0, 230, 118, 0.08), rgba(26, 32, 48, 0.95) 45%);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
}

.mirror-strip-media {
  aspect-ratio: 16 / 7;
  max-height: 180px;
  overflow: hidden;
}

.mirror-strip-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mirror-strip-body {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
}

.mirror-strip-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--lime);
  margin: 0;
  font-size: 1rem;
}

.mirror-strip-body p {
  margin: 0;
  font-size: 0.92rem;
}

/* Section common */
.section {
  padding: 28px 0;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}

.section-head p {
  margin: 0;
  max-width: 52ch;
}

/* Filters */
.lobby-toolbar {
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
}

.chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 2px;
}

.chips::-webkit-scrollbar {
  display: none;
}

.chip {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-2);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  white-space: nowrap;
}

.chip.is-active,
.chip:hover {
  color: #04140a;
  background: var(--lime);
  border-color: var(--lime);
}

.lobby-controls {
  display: grid;
  gap: 10px;
}

.search-wrap,
.provider-wrap {
  position: relative;
}

.search-wrap input,
.provider-wrap select {
  width: 100%;
  min-height: 44px;
  padding: 0 14px 0 42px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-2);
  color: var(--text);
  outline: none;
}

.provider-wrap select {
  padding-left: 14px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2394a3b8' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.search-wrap input:focus,
.provider-wrap select:focus {
  border-color: rgba(0, 230, 118, 0.5);
  box-shadow: 0 0 0 3px rgba(0, 230, 118, 0.12);
}

.search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  pointer-events: none;
}

/* Game grid */
.games-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.game-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}

.game-card:hover {
  border-color: rgba(0, 230, 118, 0.35);
  transform: translateY(-2px);
}

.game-card.is-hidden {
  display: none;
}

.game-thumb {
  position: relative;
  aspect-ratio: 390 / 520;
  overflow: hidden;
  background: var(--bg-3);
}

.game-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(8, 10, 16, 0.72);
  opacity: 0;
  transition: opacity var(--transition);
  padding: 12px;
}

.game-card:hover .game-overlay,
.game-card.is-active .game-overlay {
  opacity: 1;
}

.game-meta {
  padding: 10px 12px 12px;
}

.game-meta h3 {
  margin: 0 0 4px;
  font-size: 0.88rem;
  font-weight: 700;
}

.game-meta span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Jackpot */
.jackpot-block {
  display: grid;
  gap: 16px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(245, 158, 11, 0.3);
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), var(--bg-2) 50%);
  overflow: hidden;
}

.jackpot-media {
  aspect-ratio: 1376 / 768;
  max-height: 280px;
}

.jackpot-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jackpot-body {
  padding: 8px 20px 22px;
}

.jackpot-label {
  color: var(--gold-light);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 6px;
}

.jackpot-value {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 900;
  color: var(--gold-light);
  text-shadow: 0 0 24px rgba(251, 191, 36, 0.35);
  margin-bottom: 14px;
  font-variant-numeric: tabular-nums;
}

.winnings-ticker {
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border);
  margin: 14px 0 16px;
}

.winnings-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: ticker 28s linear infinite;
  padding: 10px 0;
}

.win-item {
  white-space: nowrap;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.win-item strong {
  color: var(--lime);
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Promo grid */
.promo-grid {
  display: grid;
  gap: 14px;
}

.promo-card {
  display: block;
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-2);
  color: var(--text);
  min-height: 220px;
}

.promo-card:hover {
  color: var(--text);
  border-color: rgba(0, 230, 118, 0.35);
}

.promo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-card-content {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  background: linear-gradient(180deg, transparent 20%, rgba(8, 10, 16, 0.92) 78%);
}

.promo-card h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.promo-card p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
}

/* Mobile showcase */
.mobile-showcase {
  display: grid;
  gap: 18px;
  align-items: center;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--bg-2);
  overflow: hidden;
  padding: 20px;
}

.mobile-showcase img {
  width: min(100%, 360px);
  margin-inline: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.mobile-showcase-copy h2 {
  font-size: clamp(1.25rem, 3vw, 1.7rem);
}

/* SEO content */
.seo-hub {
  padding: 36px 0 20px;
}

.seo-hub article {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 24px 20px;
}

.seo-hub h2 {
  font-size: 1.35rem;
  margin-top: 1.6em;
  color: var(--text);
}

.seo-hub h2:first-child {
  margin-top: 0;
}

.seo-hub h3 {
  font-size: 1.05rem;
  margin-top: 1.2em;
  color: var(--text);
}

.seo-hub p,
.seo-hub li {
  color: var(--text-muted);
  font-size: 0.98rem;
}

.seo-hub ul {
  margin: 0 0 1em;
  padding-left: 1.2em;
  list-style: disc;
}

.seo-hub a {
  color: var(--lime);
  font-weight: 600;
}

/* FAQ */
.faq {
  padding: 20px 0 36px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-2);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 48px 16px 16px;
  font-weight: 700;
  position: relative;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--lime);
  font-size: 1.3rem;
  font-weight: 400;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item .faq-answer {
  padding: 0 16px 16px;
  color: var(--text-muted);
}

/* Auth / page heroes */
.page-hero {
  padding: 24px 0 8px;
}

.page-hero-card {
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(0, 230, 118, 0.08), var(--bg-2));
  padding: 24px 20px;
}

.page-hero-card h1 {
  font-size: clamp(1.4rem, 4vw, 2.1rem);
  margin-bottom: 10px;
}

.online-banner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0, 230, 118, 0.12);
  border: 1px solid rgba(0, 230, 118, 0.35);
  color: var(--lime);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 14px;
}

.auth-panel {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  max-width: 420px;
}

.auth-panel label {
  display: grid;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.auth-panel input {
  min-height: 44px;
  padding: 0 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-0);
  color: var(--text);
}

.feature-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.feature-item {
  display: flex;
  gap: 12px;
  padding: 14px;
  border-radius: var(--radius-md);
  background: var(--bg-2);
  border: 1px solid var(--border);
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(0, 230, 118, 0.12);
  color: var(--lime);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-weight: 800;
}

.steps {
  display: grid;
  gap: 12px;
  counter-reset: step;
}

.step {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  padding: 14px;
  border-radius: var(--radius-md);
  background: var(--bg-2);
  border: 1px solid var(--border);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--lime);
  color: #04140a;
  display: grid;
  place-items: center;
  font-weight: 800;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg-1);
  padding: 36px 0 calc(28px + var(--bottom-nav-h));
  margin-top: 20px;
}

.footer-grid {
  display: grid;
  gap: 24px;
}

.footer-brand p {
  margin-top: 10px;
  font-size: 0.9rem;
}

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

.footer-nav a {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.92rem;
}

.footer-nav a:hover {
  color: var(--lime);
}

.payments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pay-badge {
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-2);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
}

.footer-legal {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-legal p {
  margin-bottom: 8px;
  font-size: inherit;
}

/* Sticky bottom nav */
.bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1100;
  height: var(--bottom-nav-h);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(12, 15, 23, 0.94);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
}

.bottom-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: var(--text-muted);
  font-size: 0.68rem;
  font-weight: 700;
  min-height: 44px;
}

.bottom-nav a svg {
  width: 22px;
  height: 22px;
}

.bottom-nav a.is-active,
.bottom-nav a:hover {
  color: var(--lime);
}

.bottom-nav a.accent {
  color: #04140a;
  background: var(--lime);
  margin: 6px;
  border-radius: 10px;
}

.bottom-nav a.accent:hover {
  color: #04140a;
  background: var(--lime-hover);
}

/* Conversion strip */
.cta-strip {
  margin: 16px 0;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: linear-gradient(90deg, rgba(0, 230, 118, 0.15), rgba(0, 180, 216, 0.1));
  border: 1px solid rgba(0, 230, 118, 0.25);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cta-strip h2,
.cta-strip h3 {
  margin: 0;
  font-size: 1.1rem;
}

.cta-strip p {
  margin: 4px 0 0;
  font-size: 0.9rem;
}

/* Desktop */
@media (min-width: 768px) {
  .burger {
    display: none;
  }

  .nav-desktop,
  .status-pill {
    display: flex;
  }

  .header-actions .btn-reg-mobile {
    display: none;
  }

  .header-actions .btn-reg-desktop {
    display: inline-flex;
  }

  .mirror-strip {
    grid-template-columns: 220px 1fr;
    align-items: stretch;
  }

  .mirror-strip-media {
    max-height: none;
    height: 100%;
    aspect-ratio: auto;
  }

  .lobby-controls {
    grid-template-columns: 1.4fr 1fr;
  }

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

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

  .jackpot-block {
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
  }

  .jackpot-media {
    max-height: none;
    height: 100%;
  }

  .mobile-showcase {
    grid-template-columns: 0.9fr 1.1fr;
    padding: 28px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1.2fr;
  }

  .bottom-nav {
    display: none;
  }

  .site-footer {
    padding-bottom: 36px;
  }

  .seo-hub article {
    padding: 32px 36px;
  }

  .hero-overlay {
    padding: 36px 48px;
  }
}

@media (min-width: 1100px) {
  .games-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .hero-slider {
    height: clamp(420px, 32vw, 520px);
  }
}

@media (max-width: 767px) {
  .hero-slider {
    height: auto;
    min-height: 420px;
  }

  .hero-slide.is-active {
    position: relative;
    inset: auto;
  }

  .hero-overlay {
    position: relative;
    inset: auto;
    min-height: 420px;
    padding: 22px 18px;
    justify-content: flex-end;
    background: linear-gradient(180deg, rgba(8, 10, 16, 0.25) 0%, rgba(8, 10, 16, 0.82) 42%, rgba(8, 10, 16, 0.96) 100%);
  }

  .hero-slide img {
    object-position: 72% center;
  }

  .hero h1 {
    max-width: none;
  }
}

/* Utility */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.text-center { text-align: center; }
.muted { color: var(--text-muted); }
.gold { color: var(--gold-light); }
.lime { color: var(--lime); }

/* Review page */
.rating-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.stars {
  color: var(--gold-light);
  letter-spacing: 2px;
  font-size: 1.15rem;
}

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

.score-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  text-align: center;
}

.score-card-total {
  border-color: rgba(0, 230, 118, 0.35);
  background: linear-gradient(145deg, rgba(0, 230, 118, 0.12), var(--bg-2));
}

.score-value {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--lime);
  line-height: 1;
  margin-bottom: 8px;
}

.score-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

.review-split {
  display: grid;
  gap: 20px;
  align-items: center;
}

.review-photo {
  width: 100%;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--bg-2);
}

.pros-list {
  margin: 0 0 18px;
  padding-left: 1.15em;
  list-style: disc;
}

.pros-list li {
  color: var(--text-muted);
  margin-bottom: 8px;
}

.testimonials {
  display: grid;
  gap: 12px;
}

.testimonial {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px;
}

.testimonial p {
  color: var(--text);
  margin: 10px 0 14px;
}

.testimonial footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: baseline;
  font-size: 0.85rem;
}

.testimonial footer span {
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .score-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .review-split {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 28px;
  }

  .review-split-reverse {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .review-split-reverse > :first-child {
    order: 2;
  }

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