/* ═══════════════════════════════════════════════════════════
   xe8.NET — Homepage CSS
   File: style.css (root)
   Last updated: May 2026
   ═══════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────
   CSS CUSTOM PROPERTIES (Design Tokens)
───────────────────────────────────────────── */
:root {
  /* Colours */
  --navy:        #0d1b4b;
  --navy-dark:   #091236;
  --blue:        #022a99;
  --blue-mid:    #022a99;
  --orange:      #ff7f00;
  --orange-dark: #d96b00;
  --white:       #ffffff;
  --off-white:   #f5f7fa;
  --light-gray:  #eef1f8;
  --gray:        #888ea8;
  --text-dark:   #111827;
  --text-body:   #374151;
  --text-muted:  #6b7280;
  --border:      #dde3f0;

  /* Typography */
  --font-main: 'Barlow', sans-serif;
  --font-display: 'Barlow Condensed', sans-serif;

  /* Spacing */
  --section-py: clamp(60px, 8vw, 100px);
  --container-max: 1160px;
  --container-px: clamp(16px, 4vw, 40px);

  /* Border radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(13,27,75,0.08);
  --shadow-md: 0 8px 32px rgba(13,27,75,0.12);
  --shadow-lg: 0 16px 48px rgba(13,27,75,0.18);
}


/* ─────────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

/* Focus visible — accessibility */
:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}


/* ─────────────────────────────────────────────
   UTILITY CLASSES
───────────────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
}

.text-blue   { color: var(--blue); }
.text-orange { color: var(--orange); }
.text-white  { color: var(--white); }

.section-label {
  font-size: clamp(14px, 1.7vw, 17px);
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 16px;
  padding-left: 14px;
  border-left: 3px solid var(--orange);
  line-height: 1.3;
}

.section-label-light {
  font-size: clamp(14px, 1.7vw, 17px);
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 16px;
  padding-left: 14px;
  border-left: 3px solid var(--orange);
  line-height: 1.3;
}

.heading-split {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.section-subtext {
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
  color: var(--text-muted);
  font-size: clamp(15px, 2vw, 17px);
  margin-bottom: 48px;
}


/* ─────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────── */
.btn-outline {
  display: inline-block;
  padding: 12px 28px;
  border: 2px solid var(--blue);
  color: var(--blue);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 15px;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
}

.btn-outline-light {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 15px;
  transition: background 0.2s, border-color 0.2s;
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}


/* ─────────────────────────────────────────────
   HEADER
───────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
  height: 60px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo img {
  height: 36px;
  width: auto;
}

.main-nav {
  flex: 1;
}

.main-nav ul {
  display: flex;
  gap: clamp(12px, 2vw, 28px);
  align-items: center;
}

.main-nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.2s;
}

.main-nav a:hover,
.main-nav a.nav-active {
  color: var(--orange);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-login {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 4px;
  transition: color 0.2s;
}
.btn-login:hover { color: var(--blue); }

.btn-register {
  font-size: 13px;
  font-weight: 700;
  background: var(--orange);
  color: var(--white);
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.btn-register:hover { background: var(--orange-dark); }

.lang-switcher img {
  display: block;
  border-radius: 3px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 20px var(--container-px) 24px;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
}
.mobile-menu a {
  display: block;
  padding: 10px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.mobile-auth {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.mobile-auth .btn-login {
  flex: 1;
  text-align: center;
  padding: 12px;
  border: 2px solid var(--text-dark);
  border-radius: var(--radius-sm);
}
.mobile-auth .btn-register {
  flex: 1;
  text-align: center;
  padding: 12px;
}


/* ─────────────────────────────────────────────
   SECTION 1 — HERO
───────────────────────────────────────────── */
.hero {
  background: var(--navy);
  overflow: hidden;
  min-height: clamp(480px, 65vw, 620px);
}

.hero-inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: clamp(480px, 65vw, 620px);
  gap: 24px;
}

.hero-content {
  padding-block: 48px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-size: clamp(14px, 2vw, 17px);
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 6.5vw, 72px);
  font-weight: 900;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.btn-hero-login {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border: 2px solid var(--white);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}
.btn-hero-login:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-hero-register {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.btn-hero-register:hover { background: var(--orange-dark); }

.hero-body-text {
  max-width: 440px;
}
.hero-body-text p {
  font-size: clamp(14px, 1.8vw, 16px);
  color: rgb(255, 255, 255);
  line-height: 1.65;
}
.hero-body-text p + p {
  margin-top: 14px;
}

.hero-image {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
.hero-image img {
  width: 100%;
  max-width: 580px;
  object-fit: contain;
}


/* ─────────────────────────────────────────────
   SECTION 2 — WHAT IS xe8
───────────────────────────────────────────── */
.section-what {
  padding-block: var(--section-py);
  background: var(--white);
  border-bottom: 3px solid var(--orange);
}

.section-what .container {
  text-align: center;
  max-width: 860px;
}

.what-body {
  text-align: center;
}
.what-body p {
  font-size: clamp(15px, 2vw, 17px);
  color: var(--text-body);
  line-height: 1.8;
  max-width: 720px;
  margin-inline: auto;
}
.what-body p + p {
  margin-top: 16px;
}


/* ─────────────────────────────────────────────
   SECTION 3 — WHY xe8
───────────────────────────────────────────── */
.section-why {
  padding-block: var(--section-py);
  background: var(--off-white);
}

.section-why .container {
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.feature-card {
  padding: clamp(28px, 4vw, 48px) clamp(24px, 3vw, 36px);
  background: var(--white);
  border-right: 1px solid var(--border);
  text-align: left;
  display: flex;
  flex-direction: column;
}
.feature-card:last-child { border-right: none; }

.feature-card--highlight {
  background: var(--orange);
  color: var(--white);
  border-right: none;
}
.feature-card--highlight .feature-icon {
  background: var(--white);
}
.feature-card.feature-card--highlight h3 {
  color: var(--white);
  text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.feature-card.feature-card--highlight p {
  color: rgba(255,255,255,0.95);
  font-weight: 500;
  font-size: 15px;
}

.feature-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  flex-shrink: 0;
}
.feature-card:not(.feature-card--highlight) .feature-icon {
  background: var(--light-gray);
}
.feature-icon svg,
.feature-icon img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.feature-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}
.feature-card p + p { margin-top: 12px; }

.feature-link {
  display: inline-block;
  margin-top: auto;
  padding-top: 24px;
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  border-bottom: 2px solid var(--blue);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.feature-link:hover {
  color: var(--orange);
  border-color: var(--orange);
}

.feature-card--highlight .feature-link {
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.feature-card--highlight .feature-link:hover {
  color: var(--white);
  border-color: var(--white);
  opacity: 0.85;
}


/* ─────────────────────────────────────────────
   SECTION 4 — GAMES TABLE
───────────────────────────────────────────── */
.section-games {
  padding-block: var(--section-py);
  background: var(--navy);
}

.games-header {
  margin-bottom: 40px;
}

.games-header h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
}

.games-subtext {
  color: rgb(255, 255, 255);
  max-width: 640px;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 0;
  text-align: left;
}

/* Table wrapper — horizontal scroll on small screens */
.table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-md);
}

.games-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  min-width: 600px;
}

.games-table thead tr {
  background: var(--orange);
}

.games-table th {
  padding: 14px 20px;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.games-table td {
  padding: 14px 20px;
  font-size: 14px;
  color: var(--text-body);
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.games-table tbody tr:last-child td {
  border-bottom: none;
}

.games-table tbody tr:nth-child(odd) {
  background: var(--off-white);
}
.games-table tbody tr:nth-child(even) {
  background: var(--white);
}

.games-table tbody tr:hover {
  background: var(--light-gray);
}

.table-link {
  font-weight: 700;
  color: var(--blue);
  white-space: nowrap;
  transition: color 0.2s;
}
.table-link:hover { color: var(--orange); }


/* ─────────────────────────────────────────────
   SECTION 5 — HOW TO START
───────────────────────────────────────────── */
.section-steps {
  padding-block: var(--section-py);
  background: var(--white);
}

.steps-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 48px;
}

.steps-desc {
  padding-top: 40px;
  font-size: clamp(15px, 2vw, 17px);
  color: var(--text-muted);
  line-height: 1.75;
}

.steps-list {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.step-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 28px;
  align-items: start;
  padding: clamp(24px, 4vw, 40px) clamp(24px, 4vw, 48px);
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.step-item:last-child { border-bottom: none; }

.step-item--shaded { background: var(--off-white); }

.step-item--dark {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
}
.step-item--dark .step-content h3 {
  color: var(--white);
}
.step-item--dark .step-content p {
  color: rgba(255,255,255,0.88);
}

.step-icon {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
}
.step-icon svg {
  width: 72px;
  height: 72px;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.2;
}

.step-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

.steps-cta {
  margin-top: 40px;
  text-align: center;
}


/* ─────────────────────────────────────────────
   SECTION 6 — PAYMENTS / TRUST
───────────────────────────────────────────── */
.section-payments {
  padding-block: var(--section-py);
  background: var(--navy);
}

.payments-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

/* Payment table */
.payment-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.payment-table th {
  padding: 12px 16px;
  background: var(--orange);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  text-align: left;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.payment-table td {
  padding: 12px 16px;
  font-size: 14px;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.payment-table tbody tr:nth-child(odd) td {
  background: rgba(255,255,255,0.04);
}

.payment-table td.check {
  color: var(--orange);
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

/* Trust text */
.payments-trust h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
}

.payments-trust p {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
}
.payments-trust p + p { margin-top: 14px; }


/* ─────────────────────────────────────────────
   SECTION 7 — FAQ
───────────────────────────────────────────── */
.section-faq {
  padding-block: var(--section-py);
  background: var(--off-white);
}

.faq-grid {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.faq-image img {
  width: 100%;
  max-width: 420px;
  object-fit: contain;
  border-radius: var(--radius-lg);
}

.faq-content .heading-split {
  margin-bottom: 32px;
}

/* FAQ Accordion using <details> — zero JS */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  font-size: clamp(15px, 2vw, 17px);
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  list-style: none;
  gap: 16px;
}

/* Remove default marker */
.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { display: none; }

/* Custom chevron via pseudo */
.faq-question::after {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23888ea8' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
  transition: transform 0.25s;
}

details[open] .faq-question::after {
  transform: rotate(180deg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f07d00' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
}

details[open] .faq-question {
  color: var(--blue);
}

.faq-answer {
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.75;
}

.faq-answer a {
  color: var(--blue);
  text-decoration: underline;
}


/* ─────────────────────────────────────────────
   SECTION 8 — CTA BANNER
───────────────────────────────────────────── */
.section-cta {
  background: var(--off-white);
  overflow: hidden;
}

.cta-grid {
  max-width: var(--container-max);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
}

.cta-content {
  padding: clamp(48px, 7vw, 80px) clamp(24px, 5vw, 64px);
}

.cta-content .section-label { margin-bottom: 8px; }

.cta-content .heading-split { margin-bottom: 20px; }

.cta-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 460px;
}
.cta-content p + p { margin-top: 12px; }

.cta-btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
  margin-bottom: 20px;
}

.btn-cta-primary {
  display: inline-block;
  padding: 14px 32px;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.btn-cta-primary:hover { background: var(--orange-dark); }

.btn-cta-secondary {
  display: inline-block;
  padding: 14px 32px;
  border: 2px solid var(--blue);
  color: var(--blue);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}
.btn-cta-secondary:hover {
  background: var(--blue);
  color: var(--white);
}

.cta-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-links a {
  font-size: 14px;
  color: var(--blue);
  text-decoration: underline;
}

.cta-image {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  height: 100%;
  min-height: 360px;
}
.cta-image img {
  width: 100%;
  max-width: 520px;
  object-fit: cover;
  object-position: center center;
}


/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
.site-footer {
  background: var(--light-gray);
}

.footer-inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding: 60px var(--container-px) 48px;
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr;
  gap: clamp(32px, 5vw, 64px);
}

.footer-brand img {
  height: 40px;
  width: auto;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 280px;
}
.footer-brand p + p { margin-top: 10px; }

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.social-links a:hover { background: var(--orange); }
.social-links svg {
  width: 18px;
  height: 18px;
}

.footer-nav h4,

.footer-nav ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 12px;
}
.footer-nav a {
  display: block;
  padding: 5px 0;
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--orange); }



/* Responsible Gambling Banner */
.footer-rg {
  background: var(--navy);
  padding: 20px var(--container-px);
}
.footer-rg p {
  max-width: var(--container-max);
  margin-inline: auto;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}
.footer-rg strong { color: rgba(255,255,255,0.8); }

/* Copyright bar */
.footer-bottom {
  background: var(--navy-dark);
  padding: 14px var(--container-px);
  text-align: center;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (max-width: 1024px)
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {

  .main-nav ul {
    gap: 14px;
  }

  .main-nav a {
    font-size: 12px;
  }

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

  .features-grid {
    grid-template-columns: 1fr;
    border-radius: var(--radius-md);
  }
  .feature-card {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .feature-card:last-child { border-bottom: none; }

  .payments-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
  .faq-image { display: none; }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (max-width: 768px)
═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* Header */
  .main-nav,
  .header-actions { display: none; }

  .hamburger { display: flex; }

  .header-inner { gap: 0; justify-content: space-between; }

  /* Hero */
  .hero-inner {
    grid-template-columns: 1fr;
    min-height: unset;
    padding-bottom: 0;
  }

  .hero-image {
    order: -1;
    justify-content: center;
    max-height: 260px;
    overflow: hidden;
  }
  .hero-image img {
    max-width: 100%;
    max-height: 260px;
    object-fit: cover;
    object-position: top;
  }

  .hero-content {
    padding-block: 28px 36px;
  }

  .hero-h1 { font-size: clamp(28px, 8.5vw, 48px); }

  /* Steps */
  .steps-intro {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .step-item {
    grid-template-columns: 60px 1fr;
    gap: 16px;
  }
  .step-icon, .step-icon svg { width: 56px; height: 56px; }

  /* CTA */
  .cta-grid {
    grid-template-columns: 1fr;
  }
  .cta-image { display: none; }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-brand { grid-column: auto; }

  .footer-nav ul { grid-template-columns: 1fr; }

  /* Games table — redesigned mobile cards */
  .table-wrapper { overflow-x: visible; }
  .games-table,
  .games-table thead,
  .games-table tbody,
  .games-table th,
  .games-table td,
  .games-table tr { display: block; min-width: 0; }

  .games-table thead { display: none; }

  .games-table tbody tr {
    background: var(--white) !important;
    margin-bottom: 14px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.12);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.18);
    padding: 0;
  }
  .games-table tbody tr:hover { background: var(--white) !important; box-shadow: 0 4px 18px rgba(0,0,0,0.24); }

  /* Category cell → navy card header with orange accent */
  .games-table td:nth-child(1) {
    background: #0d1b4b;
    padding: 13px 16px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 16px;
    color: var(--white);
    letter-spacing: 0.02em;
    border-bottom: 3px solid var(--orange);
  }
  .games-table td:nth-child(1)::before { display: none; }
  .games-table td:nth-child(1) .table-link { color: var(--white); }
  .games-table td:nth-child(1) .table-link:hover { color: var(--orange); }

  /* Providers cell */
  .games-table td:nth-child(2) {
    padding: 10px 16px 12px;
    font-size: 12.5px;
    color: var(--text-muted);
    line-height: 1.65;
    border-bottom: 1px solid var(--border);
    background: var(--white);
  }
  .games-table td:nth-child(2)::before {
    content: "Providers";
    font-size: 10px; font-weight: 700;
    color: var(--orange); text-transform: uppercase;
    letter-spacing: 0.07em; display: block; margin-bottom: 5px;
  }

  /* Highlight cell — tinted background for visual break */
  .games-table td:nth-child(3) {
    padding: 10px 16px 12px;
    font-size: 13px;
    color: var(--text-body);
    background: rgba(26,60,170,0.04);
    border-bottom: 1px solid var(--border);
    line-height: 1.5;
  }
  .games-table td:nth-child(3)::before {
    content: "Highlight";
    font-size: 10px; font-weight: 700;
    color: var(--blue); text-transform: uppercase;
    letter-spacing: 0.07em; display: block; margin-bottom: 5px;
  }

  /* Explore cell → CTA footer strip */
  .games-table td:nth-child(4) {
    padding: 10px 16px;
    background: rgba(255,127,0,0.05);
    border-top: none;
  }
  .games-table td:nth-child(4)::before { display: none; }
  .games-table td:nth-child(4) .table-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--orange);
  }

  /* Payment table — same card approach */
  .payment-table,
  .payment-table thead,
  .payment-table tbody,
  .payment-table th,
  .payment-table td,
  .payment-table tr {
    display: block;
  }
  .payment-table thead { display: none; }
  .payment-table tbody tr {
    margin-bottom: 12px;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.08) !important;
    padding: 14px 16px;
  }
  .payment-table td {
    border-bottom: none;
    padding: 3px 0;
    text-align: left !important;
  }
  .payment-table td.check {
    display: inline;
    margin-right: 8px;
  }
}


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (max-width: 480px)
═══════════════════════════════════════════════════════════ */
@media (max-width: 480px) {

  .hero-cta-row {
    flex-direction: column;
  }
  .btn-hero-login,
  .btn-hero-register {
    justify-content: center;
    width: 100%;
    padding: 14px 20px;
  }

  .cta-btn-row {
    flex-direction: column;
  }
  .btn-cta-primary,
  .btn-cta-secondary {
    text-align: center;
  }
}


/* ─────────────────────────────────────────────
   PRINT STYLES — minimal
───────────────────────────────────────────── */
@media print {
  .site-header,
  .hamburger,
  .section-cta,
  .site-footer { display: none; }
}

/* =============================================
   NAV + FOOTER — Benchmark (guide/shared.css)
   ============================================= */

:root {
  --nav-bg:     #ffffff;
  --nav-border: #e2e4ed;
  --nav-text:   #374151;
  --grey-light: #e2e4ed;
  --grey-mid:   #8a90a8;
  --grey-dark:  #555a6e;
  --footer-bg:  #eef0f5;
  --blue-acc:   #022a99;
  --transition: 0.2s ease;
}

.navbar {
  position: sticky; top: 0; z-index: 200;
  background: var(--nav-bg);
  border-bottom: 1px solid var(--nav-border);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; max-width: 1100px; margin: 0 auto; padding: 0 20px;
}
.logo-xe { font-size: 1.55rem; font-weight: 900; color: var(--navy); letter-spacing: -0.03em; line-height: 1; }
.logo-8  { font-size: 1.55rem; font-weight: 900; color: var(--orange); letter-spacing: -0.03em; line-height: 1; }
.nav-links { display: none; gap: 2px; align-items: center; }
.nav-item { position: relative; }
.nav-item > a {
  display: block; color: var(--nav-text); font-size: 0.82rem; font-weight: 600;
  padding: 6px 11px; border-radius: var(--radius-sm);
  letter-spacing: 0.02em; text-transform: uppercase;
  transition: color var(--transition); text-decoration: none;
}
.nav-item > a:hover  { color: var(--orange); }
.nav-item > a.active { color: var(--orange); }
.nav-item.has-dropdown > a::after {
  content: ''; display: inline-block;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-left: 5px; vertical-align: middle; opacity: 0.6;
  transition: transform var(--transition);
}
.dropdown {
  display: none; position: absolute; top: calc(100% + 4px); left: 0;
  background: var(--white); border: 1px solid var(--grey-light);
  border-radius: var(--radius-md); min-width: 210px;
  box-shadow: var(--shadow-md); z-index: 300; overflow: hidden;
}
.nav-item.has-dropdown:hover .dropdown,
.nav-item.has-dropdown.open  .dropdown { display: block; }
.dropdown a {
  display: block; padding: 11px 16px; font-size: 0.82rem; font-weight: 600;
  color: var(--text-body); border-bottom: 1px solid var(--grey-light);
  transition: color var(--transition), background var(--transition);
  text-decoration: none; text-transform: none; letter-spacing: 0;
}
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover { color: var(--orange); background: var(--off-white); }
.nav-right { display: none; align-items: center; gap: 10px; }

.nav-login {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid rgba(13,27,75,0.35);
  border-radius: 6px;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.nav-login:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

@keyframes register-pulse {
  0%, 100% { box-shadow: 0 4px 14px rgba(255,127,0,0.4), 0 0 0 0 rgba(255,127,0,0.25); }
  50%       { box-shadow: 0 4px 14px rgba(255,127,0,0.4), 0 0 0 8px rgba(255,127,0,0); }
}
.nav-register {
  display: inline-flex;
  align-items: center;
  padding: 9px 22px;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  border-radius: 6px;
  white-space: nowrap;
  animation: register-pulse 2.5s ease-in-out infinite;
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
}
.nav-register:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(255,127,0,0.6);
  animation: none;
  color: var(--white);
}
.hamburger { display: flex; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all 0.25s ease; }
.mobile-menu { display: none; background: var(--white); border-top: 1px solid var(--nav-border); box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.mobile-menu.open { display: block; }
.mobile-menu > a {
  display: block; color: var(--text-dark); font-size: 0.9rem; font-weight: 600;
  padding: 13px 24px; border-bottom: 1px solid var(--grey-light);
  text-transform: uppercase; letter-spacing: 0.03em;
  transition: color var(--transition), background var(--transition); text-decoration: none;
}
.mobile-menu > a:hover  { color: var(--orange); background: var(--off-white); }
.mobile-menu > a.active { color: var(--orange); }
.mobile-sub { background: var(--off-white); border-bottom: 1px solid var(--grey-light); }
.mobile-sub a {
  display: block; color: var(--grey-dark); font-size: 0.85rem; font-weight: 600;
  padding: 10px 24px 10px 36px; border-bottom: 1px solid var(--grey-light);
  transition: color var(--transition); text-decoration: none;
}
.mobile-sub a:last-child { border-bottom: none; }
.mobile-sub a:hover  { color: var(--orange); }
.mobile-menu-actions {
  display: flex;
  gap: 10px;
  padding: 16px 20px 20px;
}
.mobile-menu-actions a {
  flex: 1;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 13px 10px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s, filter 0.2s;
}
.mobile-login {
  color: var(--navy);
  border: 2px solid rgba(13,27,75,0.35);
}
.mobile-login:hover {
  background: var(--navy);
  color: var(--white);
}
.mobile-register {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  box-shadow: 0 4px 12px rgba(255,127,0,0.35);
}
.mobile-register:hover {
  filter: brightness(1.08);
  box-shadow: 0 6px 18px rgba(255,127,0,0.5);
}
.breadcrumb { background: var(--off-white); border-bottom: 1px solid var(--grey-light); padding: 10px 0; }
.breadcrumb-inner { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; font-size: 0.8rem; color: var(--grey-mid); }
.breadcrumb-inner a { color: var(--blue-acc); text-decoration: none; }
.breadcrumb-inner a:hover { text-decoration: underline; }
.breadcrumb-inner .current { color: var(--text-dark); font-weight: 600; }
.footer { background: var(--footer-bg); border-top: 1px solid var(--grey-light); padding: 52px 0 0; color: var(--text-body); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 36px; padding-bottom: 40px; }
.footer-logo { display: flex; align-items: center; margin-bottom: 14px; }
.footer-logo .logo-xe { font-size: 1.6rem; }
.footer-logo .logo-8  { font-size: 1.6rem; }
.footer-desc { font-size: 0.875rem; color: var(--grey-dark); line-height: 1.7; margin-bottom: 18px; max-width: 280px; }
.footer-social { display: flex; gap: 10px; }
.social-btn { width: 38px; height: 38px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 0.8rem; font-weight: 700; transition: background var(--transition), transform var(--transition); text-decoration: none; }
.social-btn:hover { background: var(--orange); transform: translateY(-2px); }
.footer-col h4 { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-dark); margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.875rem; color: var(--grey-dark); transition: color var(--transition); text-decoration: none; }
.footer-col ul li a:hover { color: var(--orange); }
.footer-contact h4 { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-dark); margin-bottom: 12px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 10px; font-size: 13px; color: var(--grey-dark); line-height: 1.5; }
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--orange); }
.footer-contact-item a { color: var(--grey-dark); transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--orange); }
.footer-map { margin-top: 14px; border-radius: 8px; overflow: hidden; border: 1px solid var(--grey-light); }
.footer-map iframe { display: block; width: 100%; height: 130px; border: 0; }

.footer-bottom { border-top: 1px solid var(--grey-light); padding: 18px 0; text-align: center; font-size: 0.78rem; color: var(--grey-mid); }
@media (min-width: 768px) {
  .hamburger   { display: none; }
  .nav-links   { display: flex; }
  .nav-right   { display: flex; }
  .mobile-menu { display: none !important; }
  .footer-grid { grid-template-columns: 1.8fr 1fr 1fr 1.4fr; }
}

/* Site logo image */
.site-logo-img {
  height: 36px;
  width: auto;
  display: block;
}
.footer-logo .site-logo-img,
.footer-brand .site-logo-img {
  height: 30px;
}

/* ── Scroll-to-top button ── */
#scroll-top {
  position: fixed;
  bottom: 28px;
  right: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #ff7f00;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.2s;
  z-index: 999;
}
#scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#scroll-top:hover { background: #d96b00; }
#scroll-top:focus-visible { outline: 3px solid #ff7f00; outline-offset: 3px; }
