:root {
  --color-primary: #f8b00d;
  --color-primary-hover: #e5a000;
  --color-primary-text: #0c0c0b;
  --color-accent: #5bc0f8;
  --color-bg: #1c0323;
  --color-surface: #1c0323;
  --color-surface-alt: #320a3c;
  --color-text: #ffffff;
  --color-text-muted: #d8c8dc;
  --color-border: #612270;
  --color-header-bg: #1c0323;
  --color-button-outline: #612270;
  --color-testimonial-card-bg: #60216f;
  --color-footer-divider: #612270;
  --color-payments-table-border: #612270;
  --font-heading: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --container: 1200px;
  --radius-sm: 4px;
  --radius-md: 12px;
  --header-h: 72px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  font-size: 16px;
}

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

a { color: inherit; text-decoration: none; }

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  background: var(--color-primary);
  color: var(--color-primary-text);
  padding: 8px 16px;
}
.skip-link:focus { left: 16px; }

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

.section-tone-a { background: var(--color-surface); }
.section-tone-b { background: var(--color-surface-alt); }

.section { padding: 56px 0; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  margin: 0 0 20px;
  color: var(--color-text);
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.375rem);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

h2 {
  font-size: 26px;
  font-weight: 500;
}

h3 {
  font-size: 20px;
  font-weight: 500;
}

h4 {
  font-size: 18px;
  font-weight: 700;
}

.section-text {
  color: var(--color-text);
  margin: 0 0 20px;
}

.section-text p { margin: 0 0 16px; }

/* SG-008: universal html fields may carry lists directly; style them like the
   dedicated .bullet-list / .steps-list elements they replaced. */
.section-text ul,
.section-text ol {
  padding-left: 1.25rem;
  margin: 0 0 16px;
}

.section-text li { margin-bottom: 10px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-header-bg);
  min-height: var(--header-h);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 16px;
  padding: 12px 0;
}

.header-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2px;
  margin-right: auto;
  min-width: 0;
}

.header-nav:empty { display: none; }

.header-nav-item {
  display: inline-block;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--color-text);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
}

.header-nav-item:hover {
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
}

.header-nav-item.active { color: var(--color-primary); }

.header-lang-switcher { flex-shrink: 0; }

@media (max-width: 900px) {
  .header-nav,
  .header-lang-switcher { display: none; }
}

.burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--color-text);
  cursor: pointer;
  margin-left: auto;
}

.burger svg { width: 24px; height: 24px; }

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
  z-index: 200;
}

.mobile-nav-overlay.visible {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100%;
  background: var(--color-header-bg);
  transform: translateX(100%);
  transition: transform 0.25s ease;
  z-index: 201;
  box-shadow: -8px 0 24px rgba(0, 0, 0, 0.25);
}

.mobile-nav.open { transform: translateX(0); }

.mobile-nav-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: var(--color-text);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
}

.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 64px 20px 24px;
}

.mobile-nav-item {
  display: block;
  padding: 12px 14px;
  border-radius: 8px;
  color: var(--color-text);
  text-decoration: none;
}

.mobile-nav-item:hover { background: rgba(255, 255, 255, 0.06); }

.mobile-nav-item.active { color: var(--color-primary); }

body.menu-open { overflow: hidden; }

@media (max-width: 900px) {
  .burger { display: inline-flex; }
}

.brand {
  display: flex;
  align-items: center;
  gap: 0;
  color: var(--color-text);
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo {
  height: 30px;
  width: auto;
}

.brand-logo:not([src]), .brand-logo[src=""] { display: none; }

.brand:has(.brand-logo[src]:not([src=""])) .brand-name { display: none; }

.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  text-transform: uppercase;
}

.brand-name:empty { display: none; }

.header-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
  line-height: 1;
}

.btn-lg {
  font-family: var(--font-display);
  font-size: 19px;
  padding: 14px 34px;
  border-radius: var(--radius-sm);
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-primary-text);
  border-color: var(--color-primary);
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  text-decoration: none;
}

.btn-outline {
  background: var(--color-bg);
  color: var(--color-text);
  border: 1px double var(--color-button-outline);
}

.btn-outline:hover {
  border-color: var(--color-primary);
  text-decoration: none;
}

.btn-animate-pulse { animation: btnPulse 1.5s ease-in-out infinite; }
.btn-animate-blink { animation: btnBlink 1s step-start infinite; }
.btn-animate-glow { animation: btnGlow 1.5s ease-in-out infinite; }
.btn-animate-shake { animation: btnShake 0.6s ease-in-out infinite; }

@keyframes btnPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}
@keyframes btnBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}
@keyframes btnGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(248, 176, 13, 0.55); }
  50% { box-shadow: 0 0 24px 4px rgba(248, 176, 13, 0.35); }
}
@keyframes btnShake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-3px); }
  75% { transform: translateX(3px); }
}

.hero-block {
  position: relative;
  overflow: hidden;
  background: #fff359;
  padding: 24px 0 0;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  pointer-events: none;
  z-index: 0;
}

.hero-bg {
  display: none;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 24px;
  align-items: center;
  min-height: 520px;
  padding: 24px 0 40px;
}

.hero-content {
  max-width: 560px;
  padding: 70px 40px;
}

.hero-disclaimer-list {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--color-text-muted);
  font-size: 14px;
}

.hero-disclaimer-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text-muted);
  text-decoration: underline;
}

.hero-disclaimer-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}

.hero-desc {
  margin: 0 0 20px;
  color: var(--color-text);
  font-size: 16px;
}

.hero-bonus {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 20px;
}

.hero-cta-wrap { margin-bottom: 16px; }

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 360px;
}

.hero-mascot {
  width: min(100%, 420px);
  height: auto;
  object-fit: contain;
}

.hero-mascot:not([src]), .hero-mascot[src=""] { display: none; }

.hero-promo {
  position: relative;
  z-index: 1;
  padding: 0 0 40px;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.legal-page-back {
  margin: 0 0 24px;
}
.legal-page-back a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
}
.legal-page-back a:hover {
  text-decoration: underline;
}
.legal-page-body h1:first-child {
  margin-top: 0;
}

.legal-page,
.seo-static-main {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 24px;
  color: var(--color-text);
  line-height: 1.6;
}

.legal-page h1,
.legal-page h2,
.legal-page h3 {
  color: var(--color-text);
}

.seo-static-header {
  padding: 16px 24px;
  background: var(--color-header-bg, #1c0335);
}

.seo-static-header a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 700;
}

.seo-static-back {
  max-width: 900px;
  margin: 0 auto 40px;
  padding: 0 24px;
}

.seo-static-back a {
  color: var(--color-primary);
}

.promo-card {
  position: relative;
  min-height: 180px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: linear-gradient(135deg, #3a1248 0%, #1c0335 100%);
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

.promo-card--with-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(28, 3, 35, 0.94) 0%, rgba(28, 3, 35, 0.72) 40%, rgba(28, 3, 35, 0.15) 68%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.promo-card-content {
  position: relative;
  z-index: 2;
  flex: 1;
  min-width: 0;
  max-width: 58%;
  padding: 20px 16px 20px 24px;
}

.promo-card-art-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.promo-card-art {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  display: block;
}

.promo-card h3,
.promo-title {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 700;
}

.promo-prize {
  font-size: 28px;
  font-weight: 800;
  color: var(--color-primary);
  margin: 0 0 16px;
}

.bullet-list {
  padding-left: 1.25rem;
  margin: 0;
  color: var(--color-text);
}

.bullet-list li { margin-bottom: 10px; }

.games-featured {
  padding-top: 48px;
  padding-bottom: 20px;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 5px 3px;
  min-height: 325px;
  align-items: center;
}

.flip-box {
  perspective: 1000px;
  aspect-ratio: 275 / 413;
  display: block;
  color: inherit;
  text-decoration: none;
}

.flip-box-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
  transform-style: preserve-3d;
}

.flip-box:hover .flip-box-inner { transform: rotateY(180deg); }

.flip-box-front,
.flip-box-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: 10px;
  overflow: hidden;
}

.flip-box-front {
  background: #320a3c;
  border: none;
}

.flip-box-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flip-box-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  text-align: center;
  font-size: 13px;
  color: var(--color-text-muted);
}

.flip-box-back {
  transform: rotateY(180deg);
  background-color: #00194c;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 16px;
  text-align: center;
}

.flip-box-back h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
}

.flip-box-back .btn {
  font-size: 12px;
  padding: 10px 18px;
}

.content-block { margin-bottom: 40px; }
.content-block:last-child { margin-bottom: 0; }

.testimonials-grid {
  max-width: 1117px;
  margin: 24px auto 0;
}

.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  align-items: stretch;
}

.testimonial-card {
  background: var(--color-testimonial-card-bg);
  border: none;
  border-left: 3px solid var(--color-primary);
  border-radius: 10px;
  padding: 30px 20px 24px;
  min-height: 100%;
}

.testimonial-author {
  font-weight: 700;
  margin-bottom: 8px;
}

.testimonial-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 12px;
}

.star-icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
}

.star-icon svg {
  width: 100%;
  height: 100%;
  fill: var(--color-primary);
}

.star-icon.star-empty svg {
  fill: rgba(248, 176, 13, 0.25);
}

.star-icon.star-half svg {
  fill: var(--color-primary);
  clip-path: inset(0 50% 0 0);
}

.testimonial-text {
  color: var(--color-text);
  font-style: italic;
  margin: 0;
}

.bonus-welcome {
  margin: 24px 0 32px;
}

.bonus-welcome-body ul,
.bonus-welcome-body ol {
  padding-left: 1.25rem;
}

.bonus-section {
  margin-bottom: 32px;
}

.bonus-section:last-child { margin-bottom: 0; }

.newsletter-inner {
  max-width: none;
}

.newsletter-form {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 12px;
  align-items: stretch;
  margin-top: 20px;
}

.newsletter-field {
  min-width: 0;
}

.newsletter-form input {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-text);
  font: inherit;
}

.newsletter-form .btn {
  white-space: nowrap;
  width: 100%;
  min-height: 48px;
}

.site-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1000;
  max-width: min(360px, calc(100vw - 48px));
  padding: 14px 18px;
  border-radius: 12px;
  background: var(--color-surface-alt, #320a3c);
  color: var(--color-text, #fff);
  border: 1px solid var(--color-border, #612270);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  font-size: 0.95rem;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

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

.payments {
  position: relative;
}

.payments-inner {
  position: relative;
}

.payments-banner {
  position: relative;
  margin-top: 24px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.payments-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
}

.payments-icons {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
}

.payments-strip-icon {
  height: 44px;
  width: auto;
  max-width: 72px;
  object-fit: contain;
  flex-shrink: 0;
}

.payments-table-wrap { overflow-x: auto; }

.payments-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid color-mix(in srgb, var(--color-payments-table-border) 45%, transparent);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.payments-table th,
.payments-table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid color-mix(in srgb, var(--color-payments-table-border) 35%, transparent);
}

.payments-table th {
  background: rgba(0, 0, 0, 0.15);
  font-weight: 600;
}

.payment-method-cell {
  display: flex;
  align-items: center;
  gap: 12px;
}

.payment-icon {
  width: 36px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
}

.steps-list {
  padding-left: 1.25rem;
  margin: 0;
}

.steps-list li { margin-bottom: 10px; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 12px;
}

.faq-item {
  padding: 15px;
  background: transparent;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 0;
  margin: 0;
  background: transparent;
  border: none;
  color: var(--color-primary);
  font: inherit;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-item.open .faq-question {
  color: var(--color-accent);
}

.faq-toggle-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.faq-toggle-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.faq-icon-open { display: none; }
.faq-item.open .faq-icon-closed { display: none; }
.faq-item.open .faq-icon-open { display: block; }

.faq-answer {
  display: none;
  padding: 12px 0 0;
  color: var(--color-text-muted);
}

.faq-item.open .faq-answer { display: block; }

.sportsbook-features ul {
  padding-left: 1.25rem;
  margin: 0;
}

.sportsbook-features li { margin-bottom: 10px; }

.site-footer {
  padding: 48px 0 32px;
  border-top: 1px solid color-mix(in srgb, var(--color-footer-divider) 45%, transparent);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.footer-col {
  min-width: 0;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.footer-brand .brand-logo {
  height: 30px;
}

.footer-links-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-list a {
  color: var(--color-text);
  text-decoration: none;
}

.footer-links-list a:hover {
  color: var(--color-primary);
}

.footer-divider {
  height: 1px;
  background: color-mix(in srgb, var(--color-footer-divider) 45%, transparent);
}

.footer-bottom {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  justify-content: center;
}

.footer-links a {
  color: var(--color-text);
  text-decoration: underline;
}

.footer-license {
  font-size: 13px;
  color: var(--color-text-muted);
  max-width: none;
}

.footer-copy,
.footer-email {
  color: var(--color-text-muted);
  font-size: 14px;
  margin: 0;
}

.footer-email {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  text-decoration: none;
}

.footer-email:hover {
  color: var(--color-primary);
}

.footer-email-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}

.lang-switcher {
  display: flex;
  justify-content: flex-start;
}

.lang-switcher[hidden] { display: none; }

.lang-switcher-list {
  display: flex;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.lang-switcher-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  width: 32px;
  height: 24px;
  padding: 0;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid transparent;
  opacity: 0.72;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: opacity 0.2s, border-color 0.2s;
}

.lang-switcher-item a:hover {
  opacity: 1;
  text-decoration: none;
}

.lang-switcher-item.active a {
  opacity: 1;
  border-color: var(--color-primary);
}

.lang-switcher-item img {
  width: 21px;
  height: 15px;
  object-fit: cover;
  display: block;
}

[data-section].hidden,
.hidden { display: none !important; }

@media (max-width: 1100px) {
  .games-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 900px) {
  .hero-layout {
    grid-template-columns: 1fr;
    min-height: auto;
    text-align: center;
  }

  .hero-content {
    padding: 20px 0;
    max-width: none;
    margin-inline: auto;
    text-align: center;
  }

  .hero-disclaimer-link {
    justify-content: center;
  }

  .hero-visual { min-height: 240px; }

  .hero-visual:not(:has(.hero-mascot[src]:not([src=""]))) {
    display: none;
  }

  .hero-mascot { width: min(80%, 320px); }

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

}

@media (max-width: 768px) {
  :root { --header-h: 64px; }

  .container { width: min(var(--container), 100% - 24px); }

  .section { padding: 40px 0; }

  .hero-promo { padding-bottom: 24px; }

  .promo-grid { grid-template-columns: 1fr; }

  .games-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

  .header-inner {
    padding: 8px 0;
    gap: 10px;
  }

  .brand-logo { height: 26px; }

  .header-actions {
    gap: 8px;
    flex-wrap: nowrap;
  }

  .header-actions .btn {
    padding: 10px 12px;
    font-size: 11px;
  }

  .btn { padding: 12px 14px; font-size: 12px; }

  .newsletter-inner { max-width: none; }
}

@media (max-width: 640px) {
  .payments-table thead { display: none; }

  .payments-table tr {
    display: block;
    border-bottom: 1px solid color-mix(in srgb, var(--color-payments-table-border) 35%, transparent);
  }

  .payments-table td {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    border: none;
    padding: 10px 16px;
  }

  .payments-table td::before {
    content: attr(data-label);
    font-weight: 600;
    color: var(--color-text-muted);
  }

  .payments-icons {
    gap: 8px 12px;
    padding: 12px 14px;
  }

  .payments-strip-icon {
    height: 36px;
    max-width: 60px;
  }

  .newsletter-form { grid-template-columns: 1fr; }

  .testimonials-track { grid-template-columns: 1fr; }

  .footer-top,
  .footer-bottom {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand-col,
  .footer-email {
    justify-content: center;
    align-items: center;
  }

  .lang-switcher {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .games-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}
