.input-error {
  border-color: #f44336 !important;
}

@keyframes pulse-error {
  0% { transform: scale(1); }
  50% { transform: scale(1.02); }
  100% { transform: scale(1); }
}

.error-pulse {
  animation: pulse-error 0.5s ease-in-out infinite;
  border-radius: 4px;
}

:root {
  /* Deep purple theme (sidebar + app chrome) */
  --bg-main: #140f1f;
  --bg-footer: #1a1428;
  --sidebar-bg: #261c3d;
  --surface-modal: #231933;
  --surface-bar: #120d1c;
  --surface-faq: #0f0a18;
  --faq-row-bg: #211a32;
  --faq-row-border: #3a3058;
  --faq-row-hover: #2c2445;
  --ink-on-accent: #1a1428;
  --border-panel: #3d3258;
  --txt: #fff;
  --muted: #d3d3d3;
  --accent: #f8c51b;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  background: var(--bg-main);
  color: var(--txt);
  font-family: "Red Hat Display", Helvetica, Arial, sans-serif;
}

a {
  color: inherit;
}

.page {
  min-height: 100vh;
  display: flex;
}

.sidebar-v2 {
  position: fixed;
  inset: 0;
  z-index: 10050;
  visibility: hidden;
  display: flex;
  pointer-events: none;
}

.sidebar-active .sidebar-v2 {
  visibility: visible;
  pointer-events: auto;
}

.sidebar-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
  /* No backdrop-filter: it blurs the open drawer on mobile Safari and stacks badly */
}

.sidebar-active .sidebar-overlay {
  opacity: 1;
}

.sidebar-panel-close {
  position: absolute;
  top: max(10px, env(safe-area-inset-top, 0px));
  right: 10px;
  z-index: 6;
  width: 44px;
  height: 44px;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.sidebar-active .sidebar-panel-close {
  display: flex;
}

.sidebar-panel-close:hover {
  background: rgba(255, 255, 255, 0.22);
}

.sidebar-panel-close:active {
  transform: scale(0.96);
}

.sidebar-content {
  width: min(300px, 88vw);
  max-width: 100%;
  height: 100%;
  min-height: 100dvh;
  background: #120d1c;
  background-image: 
    linear-gradient(rgba(18, 13, 28, 0.95), rgba(18, 13, 28, 0.95)),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M54.627 0l.83.83L.83 55.457l-.83-.83L54.627 0zm-54.627 0l.83-.83L60 59.17l-.83.83L0 0z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
  position: relative;
  z-index: 2;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 10px 0 40px rgba(0, 0, 0, 0.5);
}

.sidebar-active .sidebar-content {
  transform: translateX(0);
}

.sidebar-header {
  padding: 52px 30px 40px;
  text-align: center;
}

.sidebar-brand-img {
  width: 160px;
  margin-bottom: 30px;
}

.sidebar-auth {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.btn-register-v2 {
  background: #7b2cf3;
  color: #fff;
  height: 48px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(123, 44, 243, 0.3);
}

.link-login-v2 {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  text-transform: lowercase;
  opacity: 0.8;
  text-align: center;
}

.sidebar-nav-v2 {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  padding: 0 10px;
}

.nav-item-v2 {
  color: #ccc;
  text-decoration: none;
  padding: 14px 25px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: color 0.2s, background 0.2s;
}

.nav-item-v2:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.02);
}

.nav-item-v2 svg {
  opacity: 0.6;
}

.nav-search {
  cursor: pointer;
}

.nav-has-arrow svg {
  opacity: 0.4;
}

.sidebar-footer-v2 {
  margin-top: auto;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-login-v2 {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.lang-selector-v2 {
  background: rgba(255, 255, 255, 0.08);
  padding: 4px 10px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
}

/* Header V2 — opaque bar only: backdrop-filter blurs hero/logo behind bar → “ghost” logo on mobile */
.main-header {
  min-height: calc(64px + env(safe-area-inset-top, 0));
  background: #120c1c;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: env(safe-area-inset-top, 0) max(16px, env(safe-area-inset-right)) 0 max(16px, env(safe-area-inset-left));
  position: sticky;
  top: 0;
  z-index: 1002;
  flex-shrink: 0;
  isolation: isolate;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.menu-toggle, .search-toggle {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  transition: background 0.2s;
}

.menu-toggle:hover, .search-toggle:hover {
  background: rgba(255, 255, 255, 0.05);
}

body.sidebar-active .main-header .menu-toggle,
body.sidebar-active .main-header .search-toggle {
  display: none;
}

.brand--center {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
  padding: 0 8px;
}

.brand-fv-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: 0;
}

.fv-logo-icon {
  width: 28px;
  height: 28px;
}

.fv-logo-icon svg {
  width: 100%;
  height: 100%;
}

.fv-logo-text {
  color: #fff;
  font-size: clamp(17px, 4.2vw, 24px);
  font-weight: 800;
  letter-spacing: -0.5px;
  text-transform: lowercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 42vw;
}

.btn-user-login {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  text-transform: lowercase;
  opacity: 0.9;
  transition: opacity 0.2s;
}

.btn-user-login:hover {
  opacity: 1;
}

.btn-user-login svg {
  opacity: 0.8;
}
.header-right {
  display: flex;
  align-items: center;
}

/* Hide original sidebar related stuff if still present */
.sidebar, .mobile-header, .top-header { display: none !important; }

.content-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.promotions-wrapper {
  background: var(--bg-main);
  color: var(--txt);
  padding: 40px 20px;
}

.top-license-strip {
  background: var(--bg-main);
  border-bottom: 1px solid var(--border-panel);
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
}

.igaming-logo-top {
  height: 35px;
  color:white
}

.license-text {
  font-size: 11px;
  font-weight: 600;
  color: #fff;
}

.footer-area {
  background: var(--bg-footer);
  border-top: 1px solid var(--border-panel);
  display: flex;
  justify-content: center;
}

.hero-and-lobby-wrap {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  background: var(--bg-main);
}

.hero {
  background: url('assets/bg.png') center/cover no-repeat !important;
  aspect-ratio: 21 / 9;
  min-height: 480px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-promo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 5;
  margin-top: -30px; /* Nudge up to fit the black box better */
}

.bonus-percent {
  font-size: clamp(70px, 10vw, 130px);
  font-weight: 800;
  line-height: 0.9;
  color: #fff;
  margin-bottom: 0px;
  text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.bonus-title {
  font-size: clamp(20px, 4vw, 42px);
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 12px;
  text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.bonus-subtitle {
  font-size: clamp(13px, 2.5vw, 18px);
  font-weight: 600;
  color: rgba(255,255,255,0.95);
  line-height: 1.4;
  margin-bottom: 35px;
}

.hero-btn-container {
  display: inline-flex;
  align-items: center;
  background: #7b2cf3; 
  border-radius: 60px;
  padding: 6px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 20px rgba(0,0,0,0.6);
  cursor: pointer;
  text-decoration: none;
}

.hero-btn-container:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 8px 25px rgba(123, 44, 243, 0.4);
}

.btn-hero-promo {
  color: #fff;
  font-weight: 800;
  font-size: clamp(18px, 2.5vw, 24px);
  padding: 10px 45px 10px 55px;
  text-decoration: none;
}

.hero-btn-check {
  background: rgba(255,255,255,0.22);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.hero-overlay-box h3 {
  grid-column: 1 / -1;
  margin: 0 0 4px;
  color: #f8c51b;
  font-size: 20px;
}

.hero-overlay-box p {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
  color: #eee;
}

.hero-overlay-box p a {
  color: #f8c51b;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.hero-btn-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.btn-hero {
  background: #f8c51b;
  color: #111;
  padding: 0 48px;
  height: 48px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 800;
  border: none;
  box-sizing: border-box;
}

.hero-btn-wrap span {
  font-size: 11px;
  opacity: 0.8;
}

.search-area {
  position: relative;
  padding: 60px 20px;
  background: var(--bg-main);
  border-bottom: 1px solid var(--border-panel);
}

.search-container {
  max-width: 800px;
  margin: 0 auto;
}

.search-input-wrap {
  position: relative;
  width: 100%;
}

.search-input-wrap input {
  width: 100%;
  height: 56px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-panel);
  border-radius: 40px;
  color: #fff;
  padding: 0 50px 0 25px;
  font-size: 18px;
  transition: all 0.3s;
}

.search-input-wrap input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(248, 197, 27, 0.1);
}

.search-ico {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
}

.search-empty-state {
  position: absolute;
  left: 24px;
  right: 24px;
  top: 98px;
  min-height: 240px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  color: #fff;
  padding-top: 40px;
  display: flex;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s ease;
}

.search-empty-state.show {
  opacity: 1;
  visibility: visible;
}

.search-empty-state h2 {
  margin: 0 0 10px;
  font-size: 28px;
  font-weight: 700;
}

.search-empty-state p {
  margin: 0;
  font-size: 18px;
  color: #c9c9c9;
}

.footer {
  width: min(980px, 100%);
  text-align: center;
  padding: 34px 24px 46px;
}

.footer-nav {
  margin: 20px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 22px;
}

.footer-nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  opacity: 0.8;
}

.footer-nav a:hover {
  opacity: 1;
}

.social {
  list-style: none;
  margin: 18px 0 18px;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 24px;
  color: var(--accent);
}

.social a {
  text-decoration: none;
  color: var(--accent);
  display: inline-flex;
  width: 26px;
  height: 26px;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 600;
}

.social img,
.social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.legal {
  max-width: 1230px;
  margin: 0 auto;
  color: #fff;
}

.legal p {
  margin: 0 0 10px;
  font-size: 12px;
  line-height: 1.35;
}

.legal a {
  text-decoration: underline;
}

.payments {
  margin-top: 18px;
}

.payments strong {
  font-size: 14px;
  display: block;
  margin-bottom: 12px;
  color: #fff;
}

.payment-logos {
  margin-top: 4px;
  display: flex;
  justify-content: center;
  gap: 12px;
  align-items: center;
  font-weight: 800;
}

.payment-logos span:nth-child(1) { font-size: 50px; }
.visa-word { font-size: 26px; font-style: italic; letter-spacing: -0.02em; }
.mc-ico {
  width: 30px;
  height: 18px;
  position: relative;
  display: inline-block;
}
.mc-ico::before,
.mc-ico::after {
  content: "";
  position: absolute;
  top: 1px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
}
.mc-ico::before {
  left: 0;
  background: #fff;
  opacity: 0.95;
}
.mc-ico::after {
  right: 0;
  background: #dbdbdb;
  opacity: 0.9;
}
.interac-ico {
  font-size: 8px;
  border: 1px solid #fff;
  padding: 3px 5px;
  border-radius: 2px;
  line-height: 1;
  text-transform: lowercase;
}

.regs {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.regs img {
  height: 22px;
  width: auto;
}

.ontario-only {
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
}

.rg-circle {
  width: 22px;
  height: 22px;
  border: 1px solid #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 10px;
}

.rg-check {
  background: var(--border-panel);
  color: #fff;
  padding: 2px 4px;
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  line-height: 0.9;
  font-weight: 800;
  font-size: 7px;
  position: relative;
  width: 24px;
  height: 22px;
  justify-content: center;
}

.rg-check .rg-sub-text {
  font-size: 5px;
  font-weight: 800;
}

.rg-check .rg-text {
  font-size: 9px;
  font-weight: 800;
  margin-bottom: -1px;
}

.rg-check .check-mark {
  position: absolute;
  right: -3px;
  top: -3px;
  line-height: 1;
  color: #fff;
  background: #d8c99a;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  display: grid;
  place-items: center;
  font-size: 8px;
}

.bottom-fill {
  display: none;
}

.mobile-bottom-nav {
  display: none;
}

@media (max-width: 1023px) {
  .sidebar {
    display: none;
  }

  .top-license-strip {
    height: 32px;
    padding: 0 12px;
  }

  .license-text {
    font-size: 10px;
  }

  .mobile-header {
    display: flex;
    height: 64px;
    background: var(--surface-bar);
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
    border-bottom: 2px solid var(--border-panel);
    margin-bottom: 24px;
  }

  .promo-page-content {
    padding-top: 24px !important;
    padding-bottom: 40px !important;
  }

  .search-area {
    padding-top: 24px !important;
    padding-bottom: 60px !important;
  }

  .hero {
    margin-top: 20px;
  }

  .leaderboard-hero {

    margin-top: 24px;
  }

  .ranking-container {
    margin-bottom: 40px;
  }

  .promotions-hero {
    margin-top: 20px;
  }

  .promotions-wrapper {
    padding-top: 20px !important;
    padding-bottom: 40px !important;
  }



  .header-btns {
    display: flex;
    gap: 8px;
  }

  .header-btns .btn {
    height: 40px;
    padding: 0 14px;
    font-size: 13px;
  }

  .sidebar {
    display: flex;
    position: fixed;
    top: 0;
    bottom: 0;
    left: -260px;
    z-index: 1001;
    transition: left 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 10px 0 30px rgba(0,0,0,0.5);
  }

  .sidebar-active .sidebar {
    left: 0;
  }

  .sidebar-active:not(:has(.sidebar-v2))::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 1000;
  }

  .sidebar-close {
    display: flex;
    position: absolute;
    right: 12px;
    top: 12px;
    width: 32px;
    height: 32px;
    background: var(--border-panel);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    cursor: pointer;
    z-index: 10;
  }

  .sidebar-inner {
    padding-top: 50px;
  }

  .mobile-header .brand-logo-img {
    height: 24px;
    max-width: min(150px, 50vw);
  }

  .top-actions {
    display: flex;
    grid-column: 2 / 3;
    grid-row: 2;
    justify-content: flex-end;
    margin-left: 0;
  }

  .top-actions .btn {
    height: 40px;
    font-size: 12px;
    padding: 0 20px;
    border-radius: 6px;
  }

  .footer {
    padding: 28px 14px 36px;
  }

  .header-nav {
    display: none;
  }

  .top-left-brand .brand-wordmark {
    font-size: 20px;
  }

  .hero {
    aspect-ratio: 16 / 9;
    background-position: top center;
  }

  .hero-overlay-box {
    margin: 0;
    width: 100%;
  }

  .search-area {
    padding: 24px 16px 150px;
  }

  .search-container {
    max-width: 100%;
  }

  .search-empty-state {
    left: 16px;
    right: 16px;
    top: 78px;
    min-height: 180px;
    padding-top: 28px;
  }

  .search-empty-state h2 {
    font-size: 22px;
  }

  .search-empty-state p {
    font-size: 16px;
  }

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

  .social {
    margin: 18px 0 16px;
  }

  .social a {
    width: 30px;
    height: 30px;
  }

  .social img,
  .social svg {
    width: 22px;
    height: 22px;
  }

  .payments strong {
    font-size: 16px;
  }

  .visa-word { font-size: 48px; }
  .mc-ico {
    width: 42px;
    height: 26px;
  }
  .mc-ico::before,
  .mc-ico::after {
    width: 22px;
    height: 22px;
  }
  .interac-ico {
    font-size: 12px;
    padding: 5px 6px;
  }

  .regs {
    margin-top: 16px;
    gap: 10px;
    flex-wrap: wrap;
  }

  .regs img {
    height: 22px;
  }

  .ontario-only {
    font-size: 15px;
  }

  /* Bottom tab bar removed on tablet/phone — use header + sidebar instead */
  .mobile-bottom-nav {
    display: none !important;
  }
}
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100000;
  backdrop-filter: blur(4px);
}

.modal-overlay.active {
  display: flex;
}

.modal-container {
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  background: var(--surface-modal);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.9);
}

.modal-header {
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-panel);
}

.modal-title {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  flex: 1;
  text-align: center;
}

.modal-close, .modal-back {
  cursor: pointer;
  color: #fff;
  opacity: 0.8;
  transition: opacity 0.2s;
  padding: 10px;
}

.modal-close:hover, .modal-back:hover {
  opacity: 1;
}

.modal-body {
  padding: 30px;
  flex: 1;
  overflow-y: auto;
}

.modal-body::-webkit-scrollbar {
  width: 6px;
}
.modal-body::-webkit-scrollbar-track {
  background: var(--surface-bar);
}
.modal-body::-webkit-scrollbar-thumb {
  background: #5c4d7a;
  border-radius: 10px;
}

.step-indicator {
  display: flex;
  gap: 8px;
  padding: 0 30px 20px;
}

.step-tab {
  height: 4px;
  flex: 1;
  background: #4a3f68;
  border-radius: 2px;
}

.step-tab.completed { background: #4caf50; }
.step-tab.active { background: #f8c51b; }

.form-group {
  margin-bottom: 20px;
}

.input-row {
  display: flex;
  gap: 12px;
}

.input-row .form-group { flex: 1; }

.cta-input-wrap {
  position: relative;
}

.cta-input {
  width: 100%;
  height: 52px;
  background: var(--border-panel);
  border: 1px solid #3a3c3d;
  border-radius: 6px;
  padding: 0 40px 0 16px;
  color: #fff;
  font-size: 14px;
  transition: border-color 0.2s;
}

.cta-input:focus {
  outline: none;
  border-color: #f8c51b;
}

.cta-input.valid { border-color: #4caf50; }
.cta-input.error { border-color: #f44336; }

.input-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  display: none;
}

.valid + .input-icon.valid-ico { display: block; color: #4caf50; }
.error + .input-icon.error-ico { display: block; color: #f44336; }

.gender-select {
  display: flex;
  gap: 24px;
  margin: 10px 0 20px;
}

.gender-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: #fff;
  font-size: 14px;
}

.gender-label input { display: none; }

.radio-dot {
  width: 20px;
  height: 20px;
  border: 2px solid #3a3c3d;
  border-radius: 50%;
  position: relative;
}

.gender-label input:checked + .radio-dot {
  border-color: #f8c51b;
}

.gender-label input:checked + .radio-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: #f8c51b;
  border-radius: 50%;
}

.dob-hint {
  font-size: 12px;
  color: #888;
  margin-top: 6px;
}

.custom-select {
  appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 16px center !important;
}

.error-text {
  color: #f44336;
  font-size: 12px;
  margin-top: 6px;
  display: none;
}

.cta-input.error ~ .error-text { display: block; }

.checkbox-group {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.checkbox-label {
  flex: 1;
  font-size: 13px;
  line-height: 1.5;
  color: #ccc;
  cursor: pointer;
}

.checkbox-label b { color: #f8c51b; }

.check-box {
  width: 18px;
  height: 18px;
  border: 2px solid #3a3c3d;
  border-radius: 4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkbox-group input { display: none; }

.checkbox-group input:checked + .check-box {
  background: #f8c51b;
  border-color: #f8c51b;
}

.checkbox-group input:checked + .check-box::after {
  content: '✓';
  color: #111;
  font-weight: 900;
  font-size: 12px;
}

.nested-box {
  background: var(--border-panel);
  padding: 16px;
  border-radius: 6px;
  margin-top: 10px;
}

.btn-continue {
  width: 100%;
  height: 52px;
  background: #f8c51b;
  color: #111;
  border: none;
  border-radius: 6px;
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
  margin-top: 20px;
  text-transform: uppercase;
}

.play-responsibly-modal {
  text-align: center;
  font-size: 12px;
  color: #888;
  margin-top: 20px;
  display: block;
}

.prefix-input-wrap {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
}

.pw-requirements {
  background: var(--border-panel);
  padding: 16px;
  border-radius: 6px;
  margin-top: 10px;
  margin-bottom: 20px;
  transition: all 0.3s;
}
.pw-requirements.hidden {
  display: none;
}

.additional-info-section {
  display: none;
}
.additional-info-section.active {
  display: block;
}

.pep-sub-fields {
  display: none;
  margin-top: 15px;
  padding-left: 10px;
  border-left: 2px solid #f8c51b;
}
.pep-sub-fields.active {
  display: block;
}

.dob-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-bottom: 15px;
}
.pw-requirements strong {
  display: block;
  font-size: 13px;
  color: #fff;
  margin-bottom: 8px;
}
.pw-requirements ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pw-requirements li {
  font-size: 13px;
  color: #aaa;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.pw-requirements li::before {
  content: '●';
  font-size: 8px;
  color: #fff;
}

/* —— Login modal —— */
.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;
}

.login-modal-container {
  max-width: 440px;
  background: #212121;
}

.login-modal-body {
  padding: 28px 32px 36px;
}

.login-subtitle {
  text-align: center;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  margin: 0 0 28px;
  line-height: 1.4;
}

.login-input-email {
  border: 2px solid #f8c51b !important;
  background: var(--border-panel);
}

.login-input-email:focus {
  outline: none;
  border-color: #f8c51b !important;
  box-shadow: 0 0 0 1px rgba(248, 197, 27, 0.25);
}

.login-input-password {
  border: 2px solid #4caf50 !important;
  background: var(--border-panel);
  padding-right: 48px;
}

.login-input-password:focus {
  outline: none;
  border-color: #4caf50 !important;
  box-shadow: 0 0 0 1px rgba(76, 175, 80, 0.25);
}

.login-password-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #fff;
  opacity: 0.95;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}

.login-password-toggle:hover {
  opacity: 1;
}

.login-eligible-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  margin: 4px 0 24px;
  color: #fff;
  font-size: 14px;
  line-height: 1.45;
}

.login-eligible-label input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.login-checkbox-box {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 2px solid #fff;
  margin-top: 2px;
  flex-shrink: 0;
  position: relative;
  transition: background 0.15s, border-color 0.15s;
}

.login-eligible-label input:checked + .login-checkbox-box {
  background: #f8c51b;
  border-color: #f8c51b;
}

.login-eligible-label input:checked + .login-checkbox-box::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid #111;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.login-eligible-text {
  flex: 1;
}

.login-eligible-highlight {
  color: #f8c51b;
  font-weight: 700;
}

.login-info-icon {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 50%;
  border: 1px solid #fff;
  font-size: 11px;
  font-style: italic;
  font-family: Georgia, "Times New Roman", serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  margin-top: 1px;
  flex-shrink: 0;
  opacity: 0.95;
}

.btn-login-submit {
  width: 100%;
  height: 52px;
  background: #f8c51b;
  color: #111;
  border: none;
  border-radius: 8px;
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0.02em;
  transition: filter 0.15s;
}

.btn-login-submit:hover {
  filter: brightness(1.05);
}

.login-footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

.login-footer-links a {
  color: #f8c51b;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}

.login-footer-links a:hover {
  text-decoration: underline;
}

@media (max-width: 480px) {
  .login-modal-body {
    padding: 22px 20px 32px;
  }
}

.lobby-nav-banner {
  background: var(--bg-main);
  padding: 40px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lobby-nav-container {
  display: flex;
  gap: 20px;
  max-width: none;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 40px;
}
.lobby-nav-item {
  background: var(--faq-row-bg);
  border-radius: 12px;
  padding: 0 20px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 240px;
  flex: 1;
  position: relative;
  cursor: pointer;
  border: 1px solid var(--faq-row-border);
  transition: all 0.2s;
  overflow: visible; /* Required for dropdown to show outside */
}
.lobby-nav-item:hover {
  background: var(--faq-row-hover);
  border-color: var(--border-panel);
}
.lobby-nav-item > span {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  z-index: 2;
  flex-grow: 1;
}
.nav-img {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 100px;
  border-radius: 0 12px 12px 0;
  z-index: 1;
  opacity: 0.8;
  mask-image: linear-gradient(to right, transparent, black 40%);
  -webkit-mask-image: linear-gradient(to right, transparent, black 40%);
}
.live-casino-img { background: none; }
.casino-img { background: none; }
.more-games-img { background: none; }
.providers-img { background: none; }

.dropdown-chevron {
  z-index: 2;
  margin-left: 10px;
  transition: transform 0.3s;
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  width: 100%;
  background: var(--faq-row-bg);
  border: 1px solid var(--faq-row-border);
  border-radius: 12px;
  padding: 10px 0;
  display: none;
  flex-direction: column;
  z-index: 100;
  box-shadow: 0 10px 30px rgba(0,0,0,0.8);
}
.lobby-nav-item.has-dropdown:hover .nav-dropdown-menu,
.lobby-nav-item.has-dropdown.is-open .nav-dropdown-menu {
  display: flex;
}
.lobby-nav-item.has-dropdown:hover .dropdown-chevron,
.lobby-nav-item.has-dropdown.is-open .dropdown-chevron {
  transform: rotate(180deg);
}
.nav-dropdown-menu a {
  color: #ddd;
  padding: 12px 20px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: background 0.2s, color 0.2s;
}
.nav-dropdown-menu a:hover {
  background: var(--border-panel);
  color: #fff;
}

/* Category lobby tiles: horizontal slider on width (mobile / tablet) */
@media (max-width: 900px) {
  .lobby-nav-banner {
    padding: 24px 0;
    align-items: stretch;
  }
  .lobby-nav-container {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    gap: 12px;
    padding: 0 16px 10px;
    max-width: none;
    width: 100%;
    scrollbar-width: none;
  }
  .lobby-nav-container::-webkit-scrollbar {
    display: none;
  }
  .lobby-nav-item {
    flex: 0 0 auto;
    min-width: 200px;
    width: auto;
    max-width: min(280px, 78vw);
    scroll-snap-align: start;
  }
  /* Scroll parent clips overflow; fixed panel escapes horizontal strip */
  .lobby-nav-item.has-dropdown:not(.is-open):hover .nav-dropdown-menu {
    display: none !important;
  }
  .lobby-nav-item.has-dropdown:not(.is-open):hover .dropdown-chevron {
    transform: none !important;
  }
  .lobby-nav-banner .nav-dropdown-menu {
    position: fixed;
    left: max(12px, env(safe-area-inset-left));
    right: max(12px, env(safe-area-inset-right));
    top: var(--lobby-dd-top, 120px);
    width: auto;
    min-width: 0;
    max-height: min(52vh, 400px);
    overflow-y: auto;
    z-index: 15000;
    -webkit-overflow-scrolling: touch;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9);
  }
}

/* Drawer menu links: single horizontal swipe row on small screens */
@media (max-width: 768px) {
  .sidebar-nav-v2 {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 8px;
    padding: 0 14px 20px;
    margin-top: 12px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }
  .sidebar-nav-v2::-webkit-scrollbar {
    display: none;
  }
  .sidebar-nav-v2 .nav-item-v2 {
    flex: 0 0 auto;
    border-bottom: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    padding: 12px 18px;
    font-size: 14px;
    scroll-snap-align: start;
    white-space: nowrap;
  }
}

.popular-games-section-wrap {
  width: 100%;
  max-width: none;
  margin-top: 50px;
  padding: 0 40px;
}
.popular-games-header {
  margin-bottom: 20px;
}
.popular-games-title {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pg-accent {
  color: #f8c51b;
  font-weight: 800;
}
.pg-carousel-container {
  position: relative;
  display: flex;
  align-items: center;
}
.pg-carousel-track::-webkit-scrollbar {
  display: none;
}
.pg-carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
  flex-grow: 1;
}
.pg-card {
  flex: 0 0 calc(20% - 12px);
  scroll-snap-align: start;
  background: var(--faq-row-bg);
  border: 1px solid var(--faq-row-border);
  border-radius: 20px;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.2s;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
  position: relative;
  aspect-ratio: 1;
}
.pg-card:hover {
  transform: translateY(-5px);
}
.pg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pg-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px 16px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.pg-title {
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8), 0 1px 1px rgba(0,0,0,1);
  text-transform: uppercase;
}
.pg-prov {
  color: rgba(255, 255, 255, 0.75);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0,0,0,0.8);
}
.pg-nav-right {
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 99;
  background: rgba(0,0,0,0.8);
  border-radius: 50%;
  transition: transform 0.2s;
  pointer-events: auto;
}
.pg-nav-right:hover {
  transform: translateY(-50%) scale(1.1);
}

.pg-nav-left {
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 99;
  background: rgba(0,0,0,0.8);
  border-radius: 50%;
  transition: transform 0.2s;
  pointer-events: auto;
}
.pg-nav-left:hover {
  transform: translateY(-50%) scale(1.1);
}

@media (max-width: 1250px) {
  .pg-nav-right { right: 0; background: rgba(0,0,0,0.9); }
  .pg-nav-left { left: 0; background: rgba(0,0,0,0.9); }
}

@media (max-width: 1024px) {
  .pg-card { flex: 0 0 calc(25% - 11.25px); }
  .pg-nav-right, .pg-nav-left { display: none; }
}
@media (max-width: 768px) {
  .pg-card { flex: 0 0 calc(33.333% - 10px); }
}
@media (max-width: 480px) {
  .pg-card { flex: 0 0 calc(50% - 7.5px); }
}

.arrow-hidden {
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Provider Carousel specific styles */
.prov-card {
  aspect-ratio: auto !important;
  height: 210px !important;
  display: flex !important;
  flex-direction: column;
  background: var(--faq-row-bg) !important;
  padding: 0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.6);
  border: 1px solid var(--faq-row-border) !important;
}
.prov-img-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.prov-img {
  max-width: 190%;
  max-height: 100px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  clip-path: inset(0 0 0 50%);
  transform: translateX(-25%);
  transition: opacity 0.3s, transform 0.3s;
}

.prov-card:hover .prov-img {
  opacity: 1;
  transform: translateX(-25%) scale(1.05);
}

.prov-info {
  padding: 15px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
}
.prov-card .pg-title {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 2px;
  text-transform: uppercase;
}
.prov-card .pg-prov {
  font-size: 12px;
  color: #aaa;
  font-weight: 400;
  text-transform: none;
}
/* Section Title Arrow Clickable */
.popular-games-title {
  display: flex !important;
  align-items: center !important;
  gap: 8px;
  line-height: 1;
}
.popular-games-title a {
  display: flex;
  align-items: center;
}
.popular-games-title svg {
  cursor: pointer;
  transition: transform 0.2s, color 0.2s;
  padding: 4px;
  width: 24px !important;
  height: 24px !important;
  stroke-width: 3px !important;
  opacity: 1 !important;
}
.popular-games-title svg:hover {
  transform: translateX(3px);
  color: #f8c51b;
}

/* Card Register Button on Hover */
.pg-card {
  position: relative;
  overflow: hidden;
}
.pg-card-register-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(2px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
  pointer-events: none;
}
.pg-card:hover .pg-card-register-overlay {
  opacity: 1;
  pointer-events: auto;
}
.btn-card-register {
  background: #f8c51b;
  color: #000;
  border: none;
  display: block;
  width: 150px;
  padding: 12px 0;
  border-radius: 25px;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(248, 197, 27, 0.4);
  transform: translateY(10px);
  transition: transform 0.3s ease;
}
.pg-card:hover .btn-card-register {
  transform: translateY(0);
}
.btn-card-register:hover {
  background: #fff;
  transform: scale(1.05) !important;
}

.btn-card-login {
  background: rgba(42, 44, 45, 0.9);
  color: #fff;
  border: 2px solid #f8c51b;
  display: block;
  width: 150px;
  padding: 10px 0;
  border-radius: 25px;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  transform: translateY(15px);
  transition: transform 0.3s ease, background 0.2s, border-color 0.2s;
}
.pg-card:hover .btn-card-login {
  transform: translateY(0);
}
.btn-card-login:hover {
  background: #f8c51b;
  color: #111;
}

/* For Provider Cards */
.prov-card .pg-card-register-overlay {
  border-radius: 20px;
}

/* Live Chat Button */
.live-chat-status {
  cursor: pointer;
  transition: opacity 0.2s;
}
.live-chat-status:hover {
  opacity: 0.8;
}

/* Chat Modal Styles */
.chat-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: transparent;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 30px;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  pointer-events: none;
}
.chat-modal-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.chat-window {
  width: 100%;
  max-width: 380px;
  background: #fff;
  border-radius: 12px;
  padding: 40px 30px;
  position: relative;
  box-shadow: 0 10px 50px rgba(0,0,0,0.25);
  transform: translateY(30px);
  transition: 0.3s ease;
  pointer-events: auto;
}
.chat-modal-overlay.active .chat-window {
  transform: translateY(0);
}
.chat-close {
  position: absolute;
  top: 15px; right: 15px;
  cursor: pointer;
  color: #666;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chat-logo {
  display: block;
  width: 180px;
  margin: 0 auto 30px;
}
.chat-window h2 {
  color: #333;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 25px;
  text-align: left;
}
.chat-field {
  margin-bottom: 25px;
  position: relative;
}
.chat-field input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #eee;
  padding: 10px 0;
  font-size: 16px;
  color: #333;
  outline: none;
  font-family: inherit;
  background: transparent;
}
.chat-field input:focus {
  border-bottom-color: #000;
}
.chat-actions-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.chat-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  margin-bottom: 8px;
}
.chat-notif-circle {
  width: 48px;
  height: 48px;
  background: var(--border-panel);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}
.chat-notif-circle svg {
  width: 20px;
  height: 20px;
}
.chat-notif-badge {
  position: absolute;
  top: -2px; right: -2px;
  background: #fff;
  color: #1a1528;
  font-size: 10px;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  border: 1px solid #ddd;
}
.chat-send-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.chat-tooltip {
  background: #444;
  color: #fff;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  position: absolute;
  top: -42px;
  right: 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.chat-tooltip::after {
  content: "";
  position: absolute;
  bottom: -6px;
  right: 25px;
  border-width: 6px 6px 0 6px;
  border-style: solid;
  border-color: #444 transparent transparent transparent;
}
.chat-send-btn {
  width: 64px;
  height: 64px;
  background: var(--border-panel);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
  box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}
.chat-send-btn svg.paper-plane-filled {
  width: 32px;
  height: 32px;
  color: #fff;
  transform: rotate(0) translate(2px, 0);
}
.chat-send-btn:hover {
  transform: scale(1.05);
  background: var(--surface-bar);
}
.chat-ontario-footer {
  text-align: right;
  font-size: 12px;
  color: #999;
  margin-top: 12px;
  width: 100%;
}

/* Promotion Image Fixes */
.promo-header-img {
  height: 250px !important;
  object-fit: cover !important;
  object-position: center !important;
  width: 100% !important;
}

.promo-card img.banner {
  height: 180px !important;
  object-fit: cover !important;
  object-position: center !important;
}

.promo-container {
  overflow: hidden;
}

.footer-area {
  margin-top: 100px;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 40px;
}

.modal-legal-footer {
  text-align: center;
  margin-top: 30px;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.modal-legal-footer a {
  color: #fff;
  font-size: 13px;
  text-decoration: underline;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.modal-legal-footer a:hover {
  opacity: 1;
}

/* —— Info / legal page shell —— */
.custom-page-content {
  background: var(--bg-main);
  color: #fff;
  padding: clamp(2rem, 5vw, 3.75rem) clamp(1rem, 4vw, 1.25rem);
  min-height: 50vh;
}

.custom-page-content--flush {
  padding: 0;
  background: transparent;
  min-height: 0;
}

.page-content-inner {
  max-width: 1000px;
  margin: 0 auto;
  line-height: 1.8;
  font-size: 16px;
}

.terms-legal pre {
  color: #e8e8e8;
  font-size: clamp(13px, 2.8vw, 15px);
}

/* —— Responsible gaming (responsive banded layout) —— */
.rg-page {
  --rg-blue: #1a5fb4;
  --rg-blue-dark: #0d3d6b;
  --rg-cream: #f2ebe3;
  --rg-cream-border: #e0d5c8;
  --rg-yellow: #f8c51b;
  --rg-text-dark: #1a1d20;
  --rg-muted: #5c5c5c;
  color: var(--rg-text-dark);
  font-size: 16px;
  line-height: 1.5;
}

.rg-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;
}

.rg-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, var(--rg-blue) 0%, var(--rg-blue-dark) 55%, #0a2f52 100%);
  color: #fff;
  padding: clamp(2rem, 6vw, 4rem) clamp(1rem, 4vw, 2.5rem) clamp(2.5rem, 7vw, 4.5rem);
}

.rg-hero__decor::before,
.rg-hero__decor::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 3px solid rgba(248, 197, 27, 0.28);
  pointer-events: none;
}

.rg-hero__decor::before {
  width: min(280px, 55vw);
  height: min(280px, 55vw);
  top: -12%;
  right: -8%;
}

.rg-hero__decor::after {
  width: min(180px, 40vw);
  height: min(180px, 40vw);
  top: 8%;
  right: min(12%, 80px);
}

.rg-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.rg-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 1.25rem;
}

.rg-badge {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 4px;
}

.rg-badge--outline {
  border: 1px solid rgba(255, 255, 255, 0.85);
  color: #fff;
  background: transparent;
}

.rg-badge--solid {
  background: var(--rg-yellow);
  color: var(--rg-text-dark);
  border: 1px solid var(--rg-yellow);
}

.rg-hero__title {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.rg-hero__lede {
  margin: 0;
  font-size: clamp(15px, 2.5vw, 18px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
  max-width: 52ch;
}

.rg-band-title {
  margin: 0;
  padding: 14px clamp(1rem, 4vw, 2rem);
  background: var(--rg-yellow);
  color: var(--rg-text-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
}

.rg-panel {
  background: var(--rg-cream);
}

.rg-tools {
  padding: 0;
}

.rg-tool {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(12px, 3vw, 24px);
  align-items: center;
  padding: clamp(16px, 3vw, 22px) clamp(1rem, 4vw, 2rem);
  border-bottom: 1px solid var(--rg-cream-border);
}

.rg-tool--last {
  border-bottom: none;
}

.rg-tool__icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(26, 95, 180, 0.12);
  color: var(--rg-blue);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.rg-tool__icon svg {
  display: block;
}

.rg-tool__title {
  margin: 0 0 4px;
  font-size: clamp(16px, 2.5vw, 18px);
  font-weight: 700;
  color: var(--rg-blue);
}

.rg-tool__desc {
  margin: 0;
  font-size: 14px;
  color: var(--rg-muted);
  line-height: 1.45;
  max-width: 56ch;
}

.rg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.rg-btn--primary {
  background: var(--rg-blue);
  color: #fff;
}

.rg-btn--primary:hover {
  background: var(--rg-blue-dark);
}

.rg-btn--dark {
  background: var(--rg-text-dark);
  color: #fff;
}

.rg-btn--dark:hover {
  background: #000;
}

.rg-btn--on-blue {
  background: var(--rg-yellow);
  color: var(--rg-text-dark);
  font-weight: 800;
}

.rg-btn--on-blue:hover {
  filter: brightness(1.05);
}

.rg-support-band {
  background: var(--rg-yellow);
  color: var(--rg-text-dark);
  padding: clamp(2rem, 5vw, 3rem) clamp(1rem, 4vw, 2rem);
  text-align: center;
}

.rg-support-band__inner {
  max-width: 560px;
  margin: 0 auto;
}

.rg-support-band__title {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 3.5vw, 1.75rem);
  font-weight: 800;
}

.rg-support-band__text {
  margin: 0 0 1.5rem;
  font-size: 15px;
  line-height: 1.5;
}

.rg-support-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.rg-external {
  padding: clamp(1.5rem, 4vw, 2rem) 0;
}

.rg-org {
  display: grid;
  grid-template-columns: minmax(72px, 100px) 1fr auto;
  gap: clamp(12px, 3vw, 20px);
  align-items: center;
  padding: clamp(16px, 3vw, 22px) clamp(1rem, 4vw, 2rem);
  border-bottom: 1px solid var(--rg-cream-border);
}

.rg-org--last {
  border-bottom: none;
}

.rg-org__logo {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  background: var(--rg-blue);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  display: grid;
  place-items: center;
  text-align: center;
  line-height: 1.2;
  padding: 6px;
  flex-shrink: 0;
}

.rg-org__title {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 700;
  color: var(--rg-blue);
}

.rg-org__desc {
  margin: 0;
  font-size: 14px;
  color: var(--rg-muted);
  line-height: 1.45;
}

.rg-accredit {
  background: linear-gradient(145deg, var(--rg-blue) 0%, var(--rg-blue-dark) 100%);
  color: #fff;
  padding: clamp(2rem, 5vw, 3rem) clamp(1rem, 4vw, 2rem);
}

.rg-accredit__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: center;
  justify-content: center;
  text-align: left;
}

.rg-accredit__mark {
  width: 88px;
  height: 88px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(248, 197, 27, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
}

.rg-accredit__mark span {
  font-size: 28px;
  line-height: 1;
}

.rg-accredit__mark small {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.9;
}

.rg-accredit__copy {
  flex: 1;
  min-width: min(100%, 280px);
}

.rg-accredit__title {
  margin: 0 0 10px;
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 800;
}

.rg-accredit__copy p {
  margin: 0 0 1.25rem;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
}

.rg-accordions {
  background: var(--bg-main);
  padding: 0;
}

.rg-accordion {
  border-bottom: 1px solid var(--border-panel);
  color: #fff;
}

.rg-accordion summary {
  list-style: none;
  cursor: pointer;
  padding: 18px clamp(1rem, 4vw, 2rem);
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.rg-accordion summary::-webkit-details-marker {
  display: none;
}

.rg-accordion summary::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  flex-shrink: 0;
  opacity: 0.7;
  transition: transform 0.2s ease;
}

.rg-accordion[open] summary::after {
  transform: rotate(-135deg);
}

.rg-accordion__body {
  padding: 0 clamp(1rem, 4vw, 2rem) 20px;
  font-size: 14px;
  line-height: 1.6;
  color: #c9c9c9;
}

.rg-accordion__body p {
  margin: 0;
}

@media (max-width: 768px) {
  .rg-tool {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .rg-tool__text {
    order: 1;
  }

  .rg-tool__icon {
    order: 0;
  }

  .rg-tool .rg-btn {
    order: 2;
    width: 100%;
    max-width: 320px;
    white-space: normal;
  }

  .rg-org {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .rg-org .rg-btn {
    width: 100%;
    max-width: 320px;
    white-space: normal;
  }

  .rg-accredit__inner {
    text-align: center;
    flex-direction: column;
  }

  .rg-support-band__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .rg-support-band__actions .rg-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .rg-tool__icon {
    width: 44px;
    height: 44px;
  }

  .rg-org__logo {
    width: 64px;
    height: 64px;
  }
}

/* —— FAQ hub & category pages —— */
.faq-hub,
.faq-detail {
  background: var(--surface-faq);
  color: #fff;
  min-height: 50vh;
}

.faq-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;
}

.faq-hero {
  position: relative;
  padding: clamp(1.75rem, 5vw, 3rem) clamp(1rem, 4vw, 2rem) clamp(1.5rem, 4vw, 2.25rem);
  overflow: hidden;
  border-bottom: 1px solid #222;
}

.faq-hero__pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 92% 18%, rgba(248, 197, 27, 0.14) 0%, transparent 42%),
    radial-gradient(circle at 88% 8%, transparent 36%, rgba(248, 197, 27, 0.08) 37%, rgba(248, 197, 27, 0.08) 40%, transparent 41%),
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 40px,
      rgba(248, 197, 27, 0.04) 40px,
      rgba(248, 197, 27, 0.04) 41px
    );
  pointer-events: none;
}

.faq-hero__top {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.faq-hero__title {
  margin: 0;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.faq-hero__contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.faq-hero__contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  opacity: 0.92;
}

.faq-hero__contact:hover {
  color: #f8c51b;
}

.faq-hero__contact-ico {
  color: #f8c51b;
  display: flex;
}

.faq-search {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 720px;
}

.faq-search__input {
  width: 100%;
  height: 52px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(32, 26, 52, 0.95);
  color: #fff;
  padding: 0 48px 0 18px;
  font-size: 16px;
  font-family: inherit;
}

.faq-search__input::placeholder {
  color: #888;
}

.faq-search__input:focus {
  outline: none;
  border-color: #f8c51b;
  box-shadow: 0 0 0 2px rgba(248, 197, 27, 0.2);
}

.faq-search__icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #aaa;
  pointer-events: none;
}

.faq-cat-list {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(1rem, 3vw, 1.5rem) clamp(1rem, 4vw, 2rem) clamp(2.5rem, 6vw, 4rem);
}

.faq-cat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  margin-bottom: 10px;
  background: var(--faq-row-bg);
  border: 1px solid var(--faq-row-border);
  border-radius: 6px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.faq-cat-row:hover {
  background: var(--faq-row-hover);
  border-color: #f8c51b;
  color: #fff;
}

.faq-cat-row__chev {
  font-size: 22px;
  font-weight: 400;
  color: #f8c51b;
  line-height: 1;
}

.faq-hub__empty {
  text-align: center;
  color: #888;
  font-size: 15px;
  padding: 0 1.5rem 2rem;
  max-width: 720px;
  margin: -1rem auto 0;
}

.faq-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 1.25rem;
  opacity: 0.9;
}

.faq-back:hover {
  color: #f8c51b;
}

.faq-detail {
  padding: clamp(1.25rem, 4vw, 2rem) clamp(1rem, 4vw, 2rem) clamp(3rem, 8vw, 5rem);
  max-width: 800px;
  margin: 0 auto;
}

.faq-detail__head {
  margin-bottom: 1.75rem;
}

.faq-detail__title {
  margin: 0 0 8px;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
}

.faq-detail__sub {
  margin: 0;
  color: #b0b0b0;
  font-size: 15px;
  line-height: 1.5;
}

.faq-acc-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-acc {
  background: var(--faq-row-bg);
  border: 1px solid var(--faq-row-border);
  border-radius: 6px;
  overflow: hidden;
}

.faq-acc summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  line-height: 1.35;
}

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

.faq-acc summary::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid #f8c51b;
  border-bottom: 2px solid #f8c51b;
  transform: rotate(45deg);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-acc[open] summary::after {
  transform: rotate(-135deg);
}

.faq-acc__body {
  padding: 0 20px 18px;
  font-size: 14px;
  line-height: 1.65;
  color: #c8c8c8;
}

.faq-acc__body--prose h4.faq-subh {
  margin: 1.25rem 0 0.5rem;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.faq-acc__body--prose h4.faq-subh:first-child {
  margin-top: 0;
}

.faq-acc__body--prose ol {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.faq-acc__body--prose li {
  margin-bottom: 0.35rem;
}

.faq-acc__body a {
  color: #f8c51b;
  font-weight: 600;
}

.faq-acc__body a:hover {
  text-decoration: underline;
}

.faq-help-strip {
  background: var(--surface-bar);
  border: 1px solid var(--faq-row-border);
  border-radius: 6px;
  margin-bottom: 1.25rem;
}

.faq-help-strip__summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
}

.faq-help-strip__summary::-webkit-details-marker {
  display: none;
}

.faq-help-strip__summary::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  opacity: 0.7;
}

.faq-help-strip[open] .faq-help-strip__summary::after {
  transform: rotate(-135deg);
}

.faq-help-strip__hint {
  padding: 0 20px 16px;
  font-size: 14px;
  color: #999;
}

.faq-help-banner {
  position: relative;
  background: #f8c51b;
  color: var(--ink-on-accent);
  border-radius: 8px;
  overflow: hidden;
  padding: clamp(1.75rem, 4vw, 2.5rem) clamp(1.25rem, 4vw, 2rem);
}

.faq-help-banner__decor::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -5%;
  width: min(200px, 50vw);
  height: min(200px, 50vw);
  border: 14px solid var(--ink-on-accent);
  border-radius: 50%;
  opacity: 0.12;
  pointer-events: none;
}

.faq-help-banner__decor::after {
  content: "";
  position: absolute;
  top: 5%;
  right: 8%;
  width: min(140px, 40vw);
  height: min(140px, 40vw);
  border: 10px solid var(--ink-on-accent);
  border-radius: 50%;
  opacity: 0.1;
  pointer-events: none;
}

.faq-help-banner__inner {
  position: relative;
  z-index: 1;
  max-width: 420px;
}

.faq-help-banner__title {
  margin: 0 0 8px;
  font-size: clamp(1.35rem, 3.5vw, 1.75rem);
  font-weight: 800;
  line-height: 1.2;
}

.faq-help-banner__lede {
  margin: 0 0 1.25rem;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.45;
}

.faq-help-banner__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  background: var(--ink-on-accent);
  color: #f8c51b;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.15s ease, filter 0.15s ease;
}

.faq-help-banner__cta:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .faq-hero__top {
    flex-direction: column;
  }

  .faq-help-banner__inner {
    max-width: none;
  }

  .faq-help-banner__cta {
    width: 100%;
    text-align: center;
  }
}

/* Contact / About Page Styling */
.about-page-wrap {
  background: #000;
  min-height: 100vh;
  padding-bottom: 60px;
}

.about-hero {
  background: #000;
  padding: 80px 20px 40px;
  position: relative;
  text-align: center;
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 2px 2px, #fec107 1px, transparent 0);
  background-size: 32px 32px;
  opacity: 0.2;
}

.about-hero-title {
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  position: relative;
  z-index: 2;
}

.about-container {
  max-width: 800px;
  margin: -40px auto 0;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  z-index: 10;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.about-header {
  background: #1a1a1a;
  padding: 40px;
  text-align: center;
}

.about-header h1 {
  color: #fec107;
  font-size: 42px;
  font-weight: 900;
  margin: 0;
  letter-spacing: -0.02em;
}

.about-logo {
  height: 50px;
  width: auto;
  margin-bottom: 20px;
}

.about-content {
  padding: 40px;
  color: #333;
}

.about-section {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 50px;
}

.about-section-icon {
  width: 60px;
  min-width: 60px;
  text-align: center;
}

.about-section-icon img {
  width: 100%;
  height: auto;
}

.about-section-title {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 15px;
  line-height: 1.1;
  color: #000;
}

.about-section-text {
  font-size: 15px;
  line-height: 1.5;
  color: #444;
}

.about-buttons {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.btn-about {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1.5px solid #0056b3;
  color: #0056b3;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-about:hover {
  background: #0056b3;
  color: #fff;
}

.provider-row {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  background: #fff;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  flex-wrap: wrap;
  gap: 40px;
}

.provider-logo {
  height: 45px;
  width: auto;
  opacity: 0.8;
  filter: grayscale(1);
  transition: opacity 0.3s, filter 0.3s;
}

.provider-logo:hover {
  opacity: 1;
  filter: grayscale(0);
}

.about-customers-section {
  padding: 40px;
  text-align: center;
}

.about-customers-title {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 30px;
  color: #000;
}

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

.customer-box {
  background: #ffc107;
  padding: 30px 15px;
  border-radius: 12px;
  text-align: center;
}

.customer-box-icon {
  width: 40px;
  margin: 0 auto 15px;
}

.customer-box-text {
  font-size: 13px;
  font-weight: 700;
  color: #000;
  line-height: 1.4;
}

.about-get-in-touch {
  background: #fff;
  padding: 80px 40px;
  text-align: center;
  color: #000;
  position: relative;
  border-top: 1px solid #eee;
}

.get-in-touch-left {
  max-width: 600px;
  margin: 0 auto;
}

.get-in-touch-left h2 {
  font-size: 72px;
  line-height: 0.85;
  font-weight: 900;
  margin: 0 0 15px;
  color: #000;
  text-transform: uppercase;
}

.get-in-touch-left h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 15px;
  color: #000;
}

.get-in-touch-left p {
  font-size: 16px;
  color: #555;
  margin-bottom: 35px;
  max-width: none;
}

.btn-live-chat {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 999px;
  background: #0056b3;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
  transition: transform 0.2s, background 0.2s;
}

.btn-live-chat:hover {
  background: #004494;
  transform: scale(1.05);
}

.message-us {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
  font-weight: 800;
  font-size: 15px;
  color: #000;
}

.message-us a svg {
  fill: #000;
  transition: transform 0.2s;
}

.message-us a:hover svg {
  transform: scale(1.2);
}

.message-us a svg {
  fill: #000;
}

.legal-footer-simple {
  padding: 40px;
  font-size: 12px;
  color: #ffc107;
  text-align: center;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .customer-grid {
    grid-template-columns: 1fr;
  }
  .about-section {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  .about-get-in-touch {
    flex-direction: column;
    text-align: center;
  }
  .ontario-map-wrap {
    margin-top: 40px;
  }
  .message-us {
    position: static;
    margin-top: 30px;
    justify-content: center;
  }
}

/* --- FireVegas lobby blocks (below providers) --- */
.firevegas-lobby-stack {
  width: 100%;
  padding: 0 40px 60px;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 5vw, 56px);
}

.fv-block {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.fv-experience-section.fv-block {
  max-width: min(1280px, 100%);
}

/* Welcome Offer Terms — full-bleed charcoal band, soft gray type (reference) */
.fv-welcome-offer-terms.fv-block {
  max-width: none;
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  box-sizing: border-box;
}

.fv-welcome-offer-terms {
  margin-top: clamp(28px, 5vw, 56px);
  margin-bottom: 0;
  padding: clamp(28px, 5vw, 52px) clamp(20px, 8vw, 120px) clamp(36px, 6vw, 72px);
  background: #111116;
  border-radius: 0;
}

.fv-welcome-terms-inner {
  max-width: min(920px, 100%);
  margin: 0 auto;
  padding: 0;
}

.fv-welcome-terms-heading {
  margin: 0 0 1.05em;
  font-size: clamp(13px, 1.85vw, 15px);
  font-weight: 500;
  color: #8a8a8e;
  text-align: left;
  line-height: 1.55;
  letter-spacing: 0.01em;
}

.fv-welcome-terms-list {
  margin: 0;
  padding: 0 0 0 1.35rem;
  list-style: decimal;
  list-style-position: outside;
  color: #8a8a8e;
  font-size: clamp(13px, 1.85vw, 15px);
  font-weight: 400;
  line-height: 1.55;
  text-align: left;
}

.fv-welcome-terms-list li {
  margin: 0 0 0.7em;
  padding-left: 0.4em;
}

.fv-welcome-terms-list li::marker {
  color: #8a8a8e;
  font-weight: 400;
}

.fv-welcome-terms-list a {
  color: #8a8a8e;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 400;
}

.fv-welcome-terms-list a:hover {
  color: #a8a8ac;
}

.fv-jackpot-toolbar {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.fv-see-all-games {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: #0a0a0c;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 28px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

.fv-see-all-games:hover {
  background: #16161a;
  border-color: rgba(248, 197, 27, 0.45);
}

.fv-see-all-games:active {
  transform: scale(0.98);
}

.fv-jackpot-section.fv-jackpot-vegas {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding: clamp(28px, 5vw, 48px) clamp(20px, 4vw, 48px) clamp(36px, 6vw, 56px);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(18, 12, 28, 0.92) 0%, rgba(12, 9, 20, 0.96) 50%, rgba(20, 15, 31, 0.9) 100%);
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.25);
}

.fv-jackpot-stage-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
}

.fv-jackpot-stage {
  position: relative;
  width: 100%;
  max-width: min(960px, 100%);
  margin: 0 auto;
  line-height: 0;
}

.fv-jackpot-total-img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: top;
}

/* Overlay: marquee interior — centered band matching dark panel (ref: even side margins) */
.fv-jackpot-sign-overlay {
  position: absolute;
  left: 37%;
  right: 10.5%;
  top: 20.5%;
  bottom: 15.5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  pointer-events: none;
}

.fv-jackpot-sign-inner {
  width: 92%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  text-align: center;
  padding: 0 clamp(6px, 1.8vw, 16px);
  box-sizing: border-box;
}

.fv-jackpot-sign-top {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(4px, 0.8vw, 10px);
  /* Clear coin pile / top bulbs */
  padding-top: clamp(34px, 6vw, 62px);
  padding-bottom: clamp(6px, 1.2vw, 12px);
}

.fv-jackpot-label {
  font-size: clamp(9px, 1.35vw, 12px);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9);
}

.fv-jackpot-value {
  font-size: clamp(0.95rem, 2.5vw, 1.85rem);
  font-weight: 900;
  color: #fff;
  text-shadow: 0 0 24px rgba(255, 255, 255, 0.12), 0 2px 10px rgba(0, 0, 0, 0.95);
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.fv-jackpot-divider {
  flex: 0 0 auto;
  height: 1px;
  margin: 0 auto clamp(8px, 1.5vw, 14px);
  width: 88%;
  max-width: 320px;
  background: linear-gradient(90deg, transparent, rgba(180, 80, 255, 0.9), rgba(236, 72, 153, 0.85), transparent);
  box-shadow: 0 0 12px rgba(180, 100, 255, 0.55);
}

.fv-jackpot-winners-on-sign {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  align-self: stretch;
  width: 100%;
  min-height: 0;
  text-align: left;
  padding: 0 clamp(2px, 0.6vw, 8px);
  box-sizing: border-box;
}

.fv-winners-heading--sign {
  margin: 0 0 clamp(6px, 1.2vw, 10px);
  font-size: clamp(9px, 1.25vw, 11px);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  text-align: center;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.fv-winner-row--sign {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  justify-items: stretch;
  column-gap: clamp(8px, 1.4vw, 14px);
  padding: clamp(6px, 1.1vw, 10px) clamp(2px, 0.5vw, 6px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: auto;
}

.fv-winner-row--sign:first-of-type {
  border-top: none;
  padding-top: 0;
}

.fv-winner-row--sign img {
  width: clamp(36px, 7vw, 52px);
  height: clamp(36px, 7vw, 52px);
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.fv-winner-meta {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  text-align: left;
}

.fv-winner-line--sign {
  margin: 0;
  font-size: clamp(10px, 1.45vw, 13px);
  font-weight: 600;
  color: #fff;
  line-height: 1.35;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.85);
}

.fv-winner-line--sign strong {
  font-weight: 800;
  color: #fff;
}

.fv-winner-name {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.fv-winner-game-inline {
  font-weight: 700;
  opacity: 0.92;
}

.fv-play-btn {
  flex-shrink: 0;
  appearance: none;
  background: #0a0a0c;
  color: #fff;
  font-family: inherit;
  font-size: clamp(10px, 1.2vw, 12px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1;
  padding: clamp(6px, 1.1vw, 9px) clamp(12px, 2vw, 18px);
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.22);
  transition: background 0.2s, border-color 0.2s;
  pointer-events: auto;
  align-self: center;
}

.fv-play-btn--sign:hover {
  background: #16161c;
  border-color: rgba(255, 255, 255, 0.35);
}

.fv-live-section {
  position: relative;
  background: transparent;
}

/* Plain strip: no card chrome, centered content */
.fv-live-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  width: 100%;
  max-width: min(1080px, 100%);
  margin-left: auto;
  margin-right: auto;
  padding: clamp(28px, 5vw, 52px) 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.fv-section-kicker {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #f8c51b;
}

.fv-live-kicker {
  margin: 0 0 12px;
  font-size: clamp(13px, 1.4vw, 15px);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}

.fv-live-lead {
  margin: 0 0 14px;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
}

.fv-live-body {
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  max-width: 34em;
}

.fv-live-u {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  font-weight: 600;
  color: #fff;
}

.fv-live-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.fv-live-thumbs img {
  width: 104px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(139, 92, 246, 0.45);
  box-shadow:
    0 0 0 1px rgba(99, 60, 180, 0.35),
    0 0 14px rgba(124, 77, 255, 0.2);
}

.fv-live-cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 18px;
}

.fv-live-login-btn {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #0a0a0c;
  color: #fff;
  font-family: inherit;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.fv-live-login-btn:hover {
  background: #141418;
  border-color: rgba(255, 255, 255, 0.22);
}

.fv-live-cta-or {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  text-transform: lowercase;
}

.fv-register-btn {
  display: inline-flex;
  align-items: center;
  gap: 0;
  appearance: none;
  border: none;
  background: linear-gradient(135deg, #6d4dc4, #4a3290);
  color: #fff;
  font-family: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 4px 4px 22px;
  border-radius: 999px;
  cursor: pointer;
  transition: filter 0.2s, transform 0.15s;
  box-shadow: none;
}

.fv-register-btn__label {
  padding-right: 12px;
}

.fv-register-btn__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(35, 22, 62, 0.95);
  flex-shrink: 0;
}

.fv-register-btn__badge svg {
  stroke: #fff;
}

.fv-register-btn:hover {
  filter: brightness(1.06);
}

.fv-register-btn:active {
  transform: scale(0.98);
}

.fv-live-visual img {
  display: block;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  height: auto;
}

.fv-experience-section {
  position: relative;
  background: transparent;
  margin-top: clamp(24px, 4vw, 48px);
}

.fv-experience-stack {
  max-width: min(1280px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.fv-experience-hero {
  position: relative;
  line-height: 0;
  background: var(--bg-main);
  overflow: visible;
}

/* Full-bleed asset: no clip-path or scale so coins / bottom border aren’t cut off */
.fv-experience-hero-img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: top;
  filter: drop-shadow(0 4px 28px rgba(212, 175, 55, 0.16));
}

/* Copy fills inner black panel: minimal gutter, wrap only — nothing past frame */
.fv-experience-frame-copy {
  position: absolute;
  z-index: 1;
  left: 28%;
  right: 28%;
  top: 36%;
  bottom: 1%;
  box-sizing: border-box;
  width: auto;
  max-width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  min-height: 0;
  padding: clamp(5px, 1vw, 12px) clamp(4px, 0.85vw, 10px) clamp(8px, 1.6vw, 16px)
    clamp(5px, 0.95vw, 11px);
  text-align: left;
  background: transparent;
  overflow-x: hidden;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  overflow-wrap: break-word;
  word-break: normal;
  line-height: normal;
}

.fv-exp-h {
  margin: 0 0 12px;
  text-align: left;
  font-size: clamp(1rem, 2.2vw, 1.5rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.1;
  max-width: 100%;
}

.fv-exp-sub {
  margin: 16px 0 6px;
  font-size: clamp(0.95rem, 1.8vw, 1.35rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.15;
  text-align: left;
  max-width: 100%;
}

.fv-exp-p {
  margin: 0 0 10px;
  font-size: clamp(12px, 1.45vw, 14px);
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
  text-align: left;
  max-width: 100%;
}

.fv-exp-p:last-child {
  margin-bottom: 0;
}

.fv-exp-p strong {
  font-weight: 800;
  color: #fff;
}

@media (max-width: 600px) {
  .fv-experience-hero-img {
    filter: drop-shadow(0 3px 16px rgba(212, 175, 55, 0.14));
  }

  .fv-experience-frame-copy {
    left: 16.5%;
    right: 16.5%;
    top: 39%;
    bottom: 7%;
    padding: clamp(4px, 1.2vw, 8px) clamp(3px, 1vw, 8px) clamp(6px, 1.5vw, 12px)
      clamp(4px, 1.1vw, 9px);
  }

  .fv-exp-p {
    font-size: clamp(8px, 2.8vw, 12px);
    line-height: 1.42;
    font-weight: 600;
  }

  .fv-exp-h {
    font-size: clamp(0.58rem, 3.2vw, 0.82rem);
  }

  .fv-exp-sub {
    font-size: clamp(0.52rem, 2.8vw, 0.72rem);
  }
}

@media (max-width: 900px) {
  .fv-jackpot-sign-overlay {
    left: 35%;
    right: 9%;
    top: 20%;
    bottom: 14.5%;
  }

  .fv-jackpot-sign-inner {
    width: 90%;
    padding: 0 clamp(5px, 1.6vw, 14px);
  }

  .fv-jackpot-sign-top {
    padding-top: clamp(28px, 5.2vw, 52px);
  }

  .fv-live-inner {
    grid-template-columns: 1fr;
  }

  .fv-live-visual {
    order: -1;
  }

  .fv-live-visual img {
    max-width: 400px;
  }
}

@media (max-width: 600px) {
  .firevegas-lobby-stack {
    padding: 0 16px 28px;
  }

  .fv-jackpot-section.fv-jackpot-vegas {
    padding-left: 12px;
    padding-right: 12px;
    border-radius: 14px;
  }

  .fv-jackpot-sign-overlay {
    left: 33%;
    right: 7.5%;
    top: 19%;
    bottom: 13%;
  }

  .fv-jackpot-sign-inner {
    width: 88%;
    padding: 0 clamp(4px, 1.2vw, 10px);
  }

  .fv-jackpot-sign-top {
    padding-top: clamp(24px, 4.8vw, 44px);
  }

  .fv-winner-row--sign {
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-rows: auto auto;
    row-gap: 8px;
  }

  .fv-winner-row--sign img {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
  }

  .fv-winner-row--sign .fv-winner-meta {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
  }

  .fv-winner-row--sign .fv-play-btn--sign {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    max-width: 100%;
    justify-self: stretch;
  }
}

