/* ==========================================================================
   Greenbet Multipage-Plus Design System (2026 Edition)
   Brand: Greenbet | Domain: greenbet.cc
   Palette: bg: #090d16 | surface: #111827 | text: #f3f4f6 | accent: #10b981 | border: #1f2937
   Fonts: Heading: Outfit | Body: Inter
   ========================================================================== */

:root {
  --color-bg: #090d16;
  --color-surface: #111827;
  --color-surface-hover: #1f293d;
  --color-text: #f3f4f6;
  --color-text-muted: #9ca3af;
  --color-accent: #10b981;
  --color-accent-hover: #059669;
  --color-accent-glow: rgba(16, 185, 129, 0.35);
  --color-gold: #fbbf24;
  --color-border: #1f2937;
  --color-border-light: #374151;
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-accent: 0 4px 18px rgba(16, 185, 129, 0.4);
  --max-width: 1200px;
  --header-height: 72px;
}

/* Reset & Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #090d16;
  color: #f3f4f6;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: #f3f4f6;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.85rem;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
  border-left: 4px solid #10b981;
  padding-left: 0.75rem;
}

h3 {
  font-size: 1.35rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1.15rem;
  color: var(--color-text-muted);
}

a {
  color: #10b981;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

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

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

ul, ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
  color: var(--color-text-muted);
}

li {
  margin-bottom: 0.5rem;
}

/* Layout Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Header & Navigation */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(9, 13, 22, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #1f2937;
  height: 72px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #f3f4f6;
  letter-spacing: -0.01em;
}

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

.logo-brand span.brand-dot {
  color: #10b981;
}

nav.main-nav {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links a {
  color: #d1d5db;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.45rem 0.95rem;
  border-radius: var(--radius-full);
  position: relative;
  text-decoration: none;
  transition: all 0.2s ease;
}

.nav-links a:hover {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.08);
}

.nav-links a.active {
  color: #10b981;
  background-color: rgba(16, 185, 129, 0.12);
}

/* Mobile drawer content is strictly hidden on desktop */
@media (min-width: 901px) {
  .mobile-drawer-content,
  .mobile-drawer-lang,
  .mobile-drawer-cta {
    display: none !important;
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Language Dropdown Selector (Popup Menu) */
.lang-selector {
  position: relative;
  display: inline-flex;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background-color: #111827;
  border: 1px solid #1f2937;
  border-radius: var(--radius-full);
  padding: 0.4rem 0.8rem;
  color: #e5e7eb;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  outline: none;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
}

.lang-globe {
  color: #10b981;
  flex-shrink: 0;
}

.lang-current {
  letter-spacing: 0.04em;
  font-weight: 800;
  color: #ffffff;
}

.lang-arrow {
  color: #9ca3af;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.lang-selector:hover .lang-btn,
.lang-selector.is-active .lang-btn {
  border-color: rgba(16, 185, 129, 0.5);
  background-color: #162032;
  box-shadow: 0 0 14px rgba(16, 185, 129, 0.25);
  color: #ffffff;
}

.lang-selector:hover .lang-arrow,
.lang-selector.is-active .lang-arrow {
  transform: rotate(180deg);
  color: #10b981;
}

/* Invisible bridge so moving cursor between button and menu never drops hover */
.lang-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}

.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 105px;
  background: rgba(14, 20, 34, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(16, 185, 129, 0.12);
  padding: 0.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.2s cubic-bezier(0.16, 1, 0.3, 1), transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.2s;
  z-index: 1000;
}

.lang-selector:hover .lang-dropdown-menu,
.lang-selector.is-active .lang-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem 0.65rem;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.85rem;
  color: #cbd5e1;
  font-weight: 600;
  transition: all 0.15s ease;
}

.lang-flag {
  font-size: 1.15rem;
  line-height: 1;
  display: inline-flex;
}

.lang-code {
  font-size: 0.85rem;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: 0.05em;
  transition: all 0.15s ease;
}

.lang-option:hover {
  background-color: rgba(16, 185, 129, 0.15);
}

.lang-option:hover .lang-code {
  color: #ffffff;
}

.lang-option.active {
  background-color: rgba(16, 185, 129, 0.2);
}

.lang-option.active .lang-code {
  color: #10b981;
  font-weight: 800;
}

.header-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #090d16;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.92rem;
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius-full);
  min-height: 42px;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
  transition: all 0.2s ease;
  text-decoration: none;
}

.header-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.55);
  color: #090d16;
}

/* Burger Menu Toggle */
.burger-menu,
.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid #1f2937;
  border-radius: var(--radius-sm);
  color: #f3f4f6;
  font-size: 1.4rem;
  padding: 0.4rem 0.6rem;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
}

/* Hero Banner Section (Gold-Standard Verde Pattern) */
section.hero-banner,
[data-block="hero_banner"] {
  position: relative;
  background: radial-gradient(circle at 82% 20%, rgba(16, 185, 129, 0.16) 0%, transparent 55%),
              radial-gradient(circle at 12% 85%, rgba(5, 150, 105, 0.12) 0%, transparent 50%),
              #07120e;
  border-bottom: 1px solid #13241b;
  padding: 4rem 0 3.25rem;
  overflow: hidden;
}

.hero-banner-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-visual,
.hero-visual-col {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(16, 185, 129, 0.25);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6), 0 0 32px rgba(16, 185, 129, 0.12);
  background-color: #090d16;
  aspect-ratio: 16/10;
}

.hero-visual img,
.hero-visual-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-visual .hero-vignette,
.hero-visual-col .hero-vignette {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 13, 22, 0.05) 0%, rgba(9, 13, 22, 0.6) 100%);
  pointer-events: none;
}

.hero-content,
.hero-text-col {
  display: flex;
  flex-direction: column;
}

.hero-content h1 {
  font-size: 2.75rem;
  line-height: 1.18;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
  color: #ffffff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6);
}

.hero-intro,
.hero-intro-text {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  max-width: 620px;
}

.hero-offer-badge,
.offer-glass-card {
  background: linear-gradient(135deg, rgba(17, 24, 39, 0.95), rgba(24, 34, 53, 0.85));
  border: 1px solid rgba(16, 185, 129, 0.35);
  border-left: 5px solid #10b981;
  border-radius: var(--radius-md);
  padding: 1.25rem 1.6rem;
  margin-bottom: 1.75rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  max-width: 520px;
}

.hero-offer-badge .offer-match,
.offer-badge-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #10b981;
  font-weight: 700;
}

.hero-offer-badge .offer-val,
.offer-headline-figure {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 800;
  color: #fbbf24;
  line-height: 1.2;
}

.offer-details-sub {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin-top: 0.35rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #090d16;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  padding: 0.9rem 2.25rem;
  border-radius: var(--radius-full);
  min-height: 52px;
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.45);
  transition: all 0.25s ease;
  text-decoration: none;
}

.hero-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(16, 185, 129, 0.65);
  color: #090d16;
}

.hero-sec-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(17, 24, 39, 0.8);
  color: #f3f4f6;
  border: 1px solid #374151;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.85rem 1.85rem;
  border-radius: var(--radius-full);
  min-height: 52px;
  transition: all 0.2s ease;
  text-decoration: none;
}

.hero-sec-btn:hover {
  background-color: #1f293d;
  border-color: #10b981;
  color: #10b981;
}

/* NavBoost Quick Action Grid */
section.quick-actions-bar,
section.quick-actions,
[data-block="quick_actions"] {
  background-color: #090d16;
  padding: 1.5rem 0;
  border-bottom: 1px solid #1f2937;
}

.quick-actions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.quick-action-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background-color: #111827;
  border: 1px solid #1f2937;
  border-radius: var(--radius-md);
  padding: 0.95rem 1.25rem;
  color: #f3f4f6;
  font-weight: 600;
  font-size: 0.95rem;
  min-height: 54px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.quick-action-item:hover {
  background-color: var(--color-surface-hover);
  border-color: #10b981;
  color: #10b981;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.action-icon,
.quick-action-icon {
  font-size: 1.3rem;
  color: #10b981;
}

/* Games Grid Section */
section.featured-games-section,
section.games-grid,
[data-block="games_grid"] {
  padding: 3.5rem 0;
  background-color: #090d16;
}

.games-grid-container {
  display: grid;
  grid-template-columns: repeat(5, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.game-card {
  background-color: #111827;
  border: 1px solid #1f2937;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.game-card:hover {
  transform: translateY(-4px);
  border-color: #10b981;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.25);
}

.game-card-poster {
  position: relative;
  width: 100%;
  aspect-ratio: 400/600;
  overflow: hidden;
  background-color: #090d16;
}

.game-card-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.game-card:hover .game-card-poster img {
  transform: scale(1.06);
}

.game-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(9, 13, 22, 0.5);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
}

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

.game-card-overlay .btn-play-sm {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #090d16;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.88rem;
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.game-card-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.game-card-title {
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 700;
  color: #f3f4f6;
  margin-bottom: 0.35rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  overflow-wrap: break-word;
  hyphens: auto;
}

.game-card-note {
  font-size: 0.84rem;
  color: var(--color-text-muted);
  line-height: 1.45;
  margin-bottom: 0.9rem;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.game-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #1a2333;
  color: #10b981;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(16, 185, 129, 0.25);
  min-height: 42px;
  width: 100%;
  margin-top: auto;
  text-decoration: none;
  transition: all 0.2s ease;
}

.game-card-link:hover {
  background-color: #10b981;
  color: #090d16;
  border-color: #10b981;
}

/* Interactive Wagering Calculator */
section.calculator-widget,
[data-block="calculator"] {
  padding: 3.5rem 0;
  background-color: #0d131f;
  border-top: 1px solid #1f2937;
  border-bottom: 1px solid #1f2937;
  margin: 3rem 0;
}

.calculator-card {
  background: linear-gradient(135deg, #111827, #0f1624);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 860px;
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 1.75rem;
  align-items: center;
}

.calc-inputs {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.calc-field label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: #f3f4f6;
  margin-bottom: 0.45rem;
}

.calc-field input[type="number"] {
  width: 100%;
  background-color: #090d16;
  border: 1px solid #374151;
  border-radius: var(--radius-md);
  color: #f3f4f6;
  padding: 0.75rem 1rem;
  font-size: 1.1rem;
  font-family: var(--font-heading);
  font-weight: 700;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.calc-field input[type="number"]:focus {
  outline: none;
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

/* Preset Chips */
.calc-presets {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.65rem;
}

.preset-btn {
  background: #111827;
  border: 1px solid #1f2937;
  color: var(--color-text-muted);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
}

.preset-btn:hover,
.preset-btn.active {
  background: #10b981;
  color: #090d16;
  border-color: #10b981;
}

.calc-results {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(9, 13, 22, 0.85));
  border: 1px solid rgba(16, 185, 129, 0.35);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.result-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(31, 41, 55, 0.8);
}

.result-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.result-label {
  font-size: 0.92rem;
  color: var(--color-text-muted);
}

.result-val {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: #fbbf24;
}

/* Rich Tables */
.table-section {
  padding: 3rem 0;
  background-color: #090d16;
}

.table-wrapper {
  overflow-x: auto;
  margin: 1.75rem 0;
  border: 1px solid #1f2937;
  border-radius: var(--radius-lg);
  background-color: #111827;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.95rem;
}

thead th {
  background-color: #0c121e;
  color: #f3f4f6;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 1.1rem 1.5rem;
  border-bottom: 2px solid rgba(16, 185, 129, 0.3);
}

tbody td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #1f2937;
  color: #d1d5db;
  font-size: 0.95rem;
}

tbody tr:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.015);
}

tbody tr:hover {
  background-color: rgba(16, 185, 129, 0.05);
}

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

/* Pros and Cons */
.pros-cons-section {
  padding: 3rem 0;
}

.pros-cons-grid,
[data-block="pros_cons"] .pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 0;
  width: 100%;
}

.pro-box {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.06), #111827);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-md);
  padding: 1.75rem;
}

.pro-box .card-title,
.pro-box h4 {
  color: #10b981;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.con-box {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.06), #111827);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--radius-md);
  padding: 1.75rem;
}

.con-box .card-title,
.con-box h4 {
  color: #f87171;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.pro-box ul,
.con-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pro-box li,
.con-box li {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #d1d5db;
}

/* Steps / Ordered List (Desktop Roadmap Cards) */
.steps-section {
  padding: 3rem 0;
}

[data-block="list_steps"] ol {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  list-style: none;
  counter-reset: custom-counter;
  padding: 0;
  margin-top: 1.75rem;
}

[data-block="list_steps"] li {
  counter-increment: custom-counter;
  background: #111827;
  border: 1px solid #1f2937;
  border-radius: var(--radius-md);
  padding: 1.5rem 1.15rem 1.25rem;
  position: relative;
  font-size: 0.92rem;
  color: #d1d5db;
  line-height: 1.55;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

[data-block="list_steps"] li:hover {
  transform: translateY(-3px);
  border-color: #10b981;
}

[data-block="list_steps"] li::before {
  content: counter(custom-counter);
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #090d16;
  font-weight: 800;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

/* Content Sections & Article */
article.main-content {
  padding: 3rem 0;
}

.content-block {
  margin-bottom: 2.5rem;
  max-width: 960px;
}

.content-block h2 {
  font-size: 1.85rem;
  line-height: 1.25;
  margin-top: 2.25rem;
  margin-bottom: 1.2rem;
  position: relative;
  padding-left: 1rem;
  border-left: 4px solid #10b981;
}

.content-block p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: #9ca3af;
  margin-bottom: 1.25rem;
}

.content-lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #f3f4f6;
  margin-bottom: 1.5rem;
}

/* Author / Fact-Checking Box */
.author-box-section {
  padding: 2.5rem 0;
}

.author-box,
[data-block="author_box"] .author-box {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background-color: #111827;
  border: 1px solid #1f2937;
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
  margin: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  width: 100%;
}

.author-avatar {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #10b981, #059669);
  color: #090d16;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.author-meta .author-title,
.author-meta h5 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: #f3f4f6;
  margin-bottom: 0.25rem;
  font-weight: 700;
}

.author-meta p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

/* FAQ Accordion */
.faq-section {
  padding: 3.5rem 0;
}

.faq-list,
[data-block="faq"] .faq-list {
  margin: 2rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.faq-item {
  background-color: #111827;
  border: 1px solid #1f2937;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s ease;
  width: 100%;
}

.faq-item:hover,
details[open].faq-item {
  border-color: rgba(16, 185, 129, 0.4);
}

.faq-question {
  padding: 1.25rem 1.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.08rem;
  color: #f3f4f6;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.2s ease;
}

.faq-question:hover {
  background-color: #151d2d;
}

.faq-answer {
  padding: 0 1.5rem 1.35rem;
  color: var(--color-text-muted);
  font-size: 0.98rem;
  line-height: 1.65;
  border-top: 1px solid rgba(31, 41, 61, 0.4);
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

/* In-Content CTA Button */
.cta-banner-section {
  padding: 3rem 0;
}

.cta-banner,
[data-block="cta"] .cta-banner {
  background: linear-gradient(135deg, #111827 0%, #172336 100%);
  border: 1px solid #10b981;
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  margin: 3.5rem 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 24px rgba(16, 185, 129, 0.15);
}

.cta-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.cta-banner p {
  max-width: 640px;
  margin: 0 auto 1.75rem;
  font-size: 1.05rem;
  color: var(--color-text-muted);
}

.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #090d16;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  padding: 0.95rem 2.75rem;
  border-radius: var(--radius-full);
  min-height: 52px;
  box-shadow: 0 6px 22px rgba(16, 185, 129, 0.5);
  transition: all 0.25s ease;
  text-decoration: none;
}

.cta-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(16, 185, 129, 0.7);
  color: #090d16;
}

/* Mobile Sticky CTA Bar (Strictly Mobile Only) */
.sticky-cta-bar,
.sticky-cta,
[data-block="sticky_cta"] {
  display: none; /* Hidden on desktop */
  z-index: 999;
  background-color: rgba(9, 13, 22, 0.96);
  border-top: 1px solid #10b981;
  padding: 0.75rem 0;
  backdrop-filter: blur(10px);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.6);
}

.sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.sticky-cta-text {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fbbf24;
  line-height: 1.25;
  flex: 1 1 auto;
  min-width: 0;
  overflow-wrap: break-word;
}

.sticky-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #10b981;
  color: #090d16;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-full);
  min-height: 44px;
  white-space: nowrap;
}

/* Footer & Statutory Disclaimers */
footer.site-footer,
[data-block="disclosure"] {
  background-color: #090d16;
  border-top: 1px solid #1f2937;
  padding: 3rem 0 2rem;
  margin-top: 4rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-col h5 {
  font-size: 1rem;
  color: #f3f4f6;
  margin-bottom: 0.75rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 0.35rem;
}

.footer-disclaimer-box {
  background-color: #111827;
  border: 1px solid #1f2937;
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  font-size: 0.82rem;
  line-height: 1.6;
}

.footer-disclaimer-box p {
  margin-bottom: 0.5rem;
}

.footer-disclaimer-box p:last-child {
  margin-bottom: 0;
}

.footer-rg-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  font-weight: 600;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid #1f2937;
  font-size: 0.8rem;
}

/* FAQ Marker Enhancement */
.faq-question {
  padding: 1.1rem 1.25rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: #f3f4f6;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

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

.faq-question::after {
  content: "+";
  font-size: 1.4rem;
  color: #10b981;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.2s ease, color 0.2s ease;
  margin-left: 0.75rem;
  flex-shrink: 0;
}

details[open] .faq-question::after {
  content: "−";
  color: #fbbf24;
}

/* ==========================================================================
   Responsive Media Queries & Mobile Adaptation (2026 Edition)
   Breakpoints: 900px (tablet/mobile navigation), 600px (mobile), 360px (compact)
   ========================================================================== */

@media (max-width: 900px) {
  :root {
    --header-height: 64px;
  }

  header.site-header {
    height: var(--header-height);
    background-color: rgba(9, 13, 22, 0.98);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    z-index: 1000;
  }

  .header-inner {
    padding: 0 0.5rem;
  }

  .logo-brand img {
    height: 32px;
  }

  .logo-brand {
    font-size: 1.25rem;
  }

  .header-actions {
    gap: 0.65rem;
  }

  /* Compact header action button */
  .header-btn {
    font-size: 0.82rem;
    padding: 0.45rem 0.85rem;
    min-height: 40px;
  }

  /* Hide header lang bar on mobile; placed inside drawer */
  .header-actions .lang-selector {
    display: none;
  }

  /* Burger Menu Button */
  .burger-menu,
  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #111827;
    border: 1px solid #1f2937;
    border-radius: var(--radius-sm);
    color: #f3f4f6;
    font-size: 1.35rem;
    width: 44px;
    height: 44px;
    padding: 0;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .burger-menu:hover,
  .burger-menu:focus-visible {
    border-color: #10b981;
    color: #10b981;
  }

  /* Mobile Navigation Drawer */
  nav.main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(9, 13, 22, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 998;
    padding: 1.5rem 1.25rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 1.5rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    border-top: 1px solid #1f2937;
  }

  body.nav-open nav.main-nav,
  nav.main-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  body.nav-open {
    overflow: hidden;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
    width: 100%;
  }

  .nav-links li {
    margin: 0;
  }

  .nav-links a {
    display: flex;
    align-items: center;
    padding: 0.85rem 1.15rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: #f3f4f6;
    background-color: #111827;
    border: 1px solid #1f2937;
    border-radius: var(--radius-md);
    min-height: 48px;
    transition: all 0.2s ease;
  }

  .nav-links a:hover,
  .nav-links a.active {
    background-color: #1f293d;
    border-color: #10b981;
    color: #10b981;
  }

  .mobile-drawer-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    width: 100%;
    margin-top: 0.5rem;
  }

  /* Drawer Languages Section */
  .mobile-drawer-lang {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    padding-top: 1rem;
    border-top: 1px solid #1f2937;
  }

  .mobile-drawer-lang-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-muted);
    font-weight: 700;
  }

  .mobile-drawer-lang-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.5rem;
  }

  .mobile-drawer-lang-grid a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 0.2rem;
    min-height: 44px;
    font-size: 0.88rem;
    font-weight: 700;
    background-color: #111827;
    border: 1px solid #1f2937;
    border-radius: var(--radius-sm);
    color: var(--color-text-muted);
    transition: all 0.2s ease;
  }

  .mobile-drawer-lang-grid a.active,
  .mobile-drawer-lang-grid a:hover {
    background-color: #10b981;
    border-color: #10b981;
    color: #090d16;
  }

  /* Mobile Drawer CTA Button */
  .mobile-drawer-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.85rem 1.25rem;
    min-height: 48px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #090d16;
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-accent);
    text-decoration: none;
    transition: transform 0.2s ease;
  }

  .mobile-drawer-cta:hover {
    color: #090d16;
    transform: translateY(-1px);
  }

  /* Hero Section Stacking */
  section.hero-banner,
  [data-block="hero_banner"] {
    padding: 2.25rem 0 2rem;
  }

  .hero-banner-inner {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .hero-visual,
  .hero-visual-col {
    max-width: 520px;
    margin: 0 auto;
  }

  .quick-actions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .calc-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .pros-cons-grid,
  [data-block="pros_cons"] .pros-cons-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  [data-block="list_steps"] ol {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* Mobile Sticky Bottom CTA Bar */
  .sticky-cta-bar,
  .sticky-cta,
  [data-block="sticky_cta"] {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 990;
    background-color: rgba(9, 13, 22, 0.96);
    border-top: 1px solid rgba(16, 185, 129, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.7);
  }

  .sticky-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }

  .sticky-cta-text {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fbbf24;
    line-height: 1.25;
    flex: 1 1 auto;
    min-width: 0;
    overflow-wrap: break-word;
  }

  .sticky-cta-btn {
    flex-shrink: 0;
    min-height: 44px;
    padding: 0.55rem 1.25rem;
    font-size: 0.9rem;
    white-space: nowrap;
  }

  body {
    padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px));
  }
}

@media (min-width: 901px) {
  .sticky-cta-bar,
  .sticky-cta,
  [data-block="sticky_cta"] {
    display: none;
  }
}

/* Standard Mobile (<= 600px) */
@media (max-width: 600px) {
  .container {
    padding: 0 1rem;
  }

  h1 {
    font-size: 1.7rem;
    line-height: 1.25;
    margin-bottom: 0.85rem;
  }

  h2 {
    font-size: 1.35rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-left: 0.65rem;
    border-left-width: 3px;
  }

  h3 {
    font-size: 1.15rem;
  }

  p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }

  /* Hero Section Adjustments */
  .hero-intro {
    font-size: 0.92rem;
    margin-bottom: 1rem;
  }

  .hero-offer-badge,
  .offer-glass-card {
    padding: 1rem 1.15rem;
    margin-bottom: 1.25rem;
  }

  .hero-offer-badge .offer-val {
    font-size: 1.45rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-cta-btn,
  .hero-sec-btn {
    width: 100%;
    min-height: 48px;
    text-align: center;
    justify-content: center;
  }

  /* Quick Actions Grid */
  .quick-actions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
  }

  .quick-action-item {
    padding: 0.75rem 0.65rem;
    gap: 0.5rem;
    font-size: 0.82rem;
    min-height: 48px;
  }

  .action-icon {
    font-size: 1.15rem;
  }

  /* Game Cards: Native Horizontal App Feed Layout */
  .games-grid-container {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    margin-top: 1.15rem;
  }

  .game-card {
    flex-direction: row;
    align-items: center;
    padding: 0.75rem;
    gap: 0.85rem;
  }

  .game-card-poster {
    width: 92px;
    min-width: 92px;
    height: 130px;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
  }

  .game-card-body {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
    min-width: 0;
  }

  .game-card-title {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .game-card-note {
    font-size: 0.8rem;
    line-height: 1.35;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .game-card-link {
    min-height: 40px;
    padding: 0.45rem 0.85rem;
    font-size: 0.82rem;
    width: 100%;
    max-width: 170px;
  }

  /* Wagering Calculator */
  .calculator-card {
    padding: 1.25rem 1rem;
  }

  .calc-field input[type="number"] {
    font-size: 16px; /* Prevents iOS auto-zoom */
    min-height: 48px;
    padding: 0.75rem 1rem;
  }

  .calc-results {
    padding: 1rem;
  }

  .result-val {
    font-size: 1.15rem;
  }

  /* Specifications Table Responsive Touch Scrolling */
  .table-wrapper {
    margin: 1.25rem 0;
    -webkit-overflow-scrolling: touch;
    box-shadow: inset -12px 0 12px -12px rgba(16, 185, 129, 0.35);
  }

  .table-wrapper::after {
    content: "Scroll ➔";
    position: absolute;
    right: 8px;
    top: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #10b981;
    background: rgba(9, 13, 22, 0.88);
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius-sm);
    pointer-events: none;
    transition: opacity 0.2s ease;
  }

  .table-wrapper.has-scrolled::after {
    display: none;
  }

  table {
    min-width: 560px;
  }

  thead th,
  tbody td {
    padding: 0.7rem 0.8rem;
    font-size: 0.84rem;
  }

  /* FAQ Accordion Mobile Touch Targets */
  .faq-question {
    padding: 0.95rem 1rem;
    font-size: 0.95rem;
    min-height: 48px;
  }

  .faq-answer {
    padding: 0 1rem 1rem;
    font-size: 0.9rem;
  }

  /* Author Box & Content CTA */
  .author-box,
  [data-block="author_box"] .author-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1.15rem;
    margin: 1.75rem 0;
  }

  .cta-banner,
  [data-block="cta"] .cta-banner {
    padding: 1.75rem 1.15rem;
    margin: 2rem 0;
  }

  .cta-title {
    font-size: 1.3rem;
  }

  .cta-btn-primary {
    width: 100%;
    min-height: 48px;
  }

  /* Steps List */
  [data-block="list_steps"] li {
    padding-left: 2.5rem;
    font-size: 0.92rem;
  }

  [data-block="list_steps"] li::before {
    width: 28px;
    height: 28px;
    font-size: 0.85rem;
  }
}

/* Compact Mobile (<= 360px) */
@media (max-width: 360px) {
  .header-btn {
    padding: 0.4rem 0.65rem;
    font-size: 0.78rem;
  }

  .quick-actions-grid {
    grid-template-columns: 1fr;
  }

  .game-card-poster {
    width: 80px;
    min-width: 80px;
    height: 115px;
  }

  .sticky-cta-inner {
    gap: 0.5rem;
  }

  .sticky-cta-text {
    font-size: 0.75rem;
  }

  .sticky-cta-btn {
    padding: 0.45rem 0.85rem;
    font-size: 0.82rem;
  }
}
