/* ==========================================================================
   SPORTSBELGIQUE.COM — BELGIAN CASINO & DICE GAMES GUIDE 2026
   Design Source: wanton.be — Belgian Clean Authority & Light Gold Theme
   Palette:
     --be-black: #000000
     --be-yellow: #FDDA25 (Official Belgian Yellow/Gold)
     --be-red: #EF3340 (Official Belgian Red)
     --bg-light: #f5f5f7 (Crisp Off-White/Silver Backdrop)
     --bg-card: #ffffff
     --bg-card-dark: #111111 (Logo Framing Container)
     --text-dark: #111111
     --text-muted: #666666
     --border-light: #e5e7eb
   Typography:
     Heading: 'Playfair Display', Georgia, serif
     Body: 'Montserrat', 'Noto Sans', sans-serif
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;0,800;0,900;1,600;1,700&family=Montserrat:wght@400;500;600;700;800&family=Noto+Sans:wght@400;500;600;700&display=swap');

:root {
  --be-black: #000000;
  --be-yellow: #FDDA25;
  --be-yellow-hover: #e6c422;
  --be-red: #EF3340;
  --be-red-hover: #d92b37;
  --bg-light: #f5f5f7;
  --bg-card: #ffffff;
  --bg-card-dark: #111111;
  --text-dark: #111111;
  --text-primary: #111827;
  --text-secondary: #374151;
  --text-muted: #666666;
  --border-light: #ececec;
  --border-color: #e5e7eb;
  --border-dark: #232f42;
  
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Montserrat', 'Noto Sans', system-ui, -apple-system, sans-serif;
  
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 18px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-card: 0 4px 15px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 8px 30px rgba(253, 218, 37, 0.22);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.08);
  --max-w-content: 1200px;
  --transition: all 0.25s ease;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */

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

html {
  font-family: var(--font-body);
  background: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  background: var(--bg-light);
  position: relative;
  font-family: var(--font-body);
  color: var(--text-dark);
}

/* Authentic Belgian Flag Subtle Watermark */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("foto/flag-belgium.svg") no-repeat center top / 120%;
  background-attachment: fixed;
  opacity: 0.05;
  z-index: -1;
  pointer-events: none;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  width: 100%;
}

.container {
  max-width: var(--max-w-content);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--be-black);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 34px;
  font-weight: 800;
  text-align: center;
  color: var(--be-black);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 26px;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--be-black);
  padding-bottom: 8px;
  border-bottom: 2px solid var(--be-yellow);
}

h3 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--be-black);
}

p {
  line-height: 1.7;
  color: var(--text-secondary);
  font-size: 15.5px;
  margin-bottom: 1rem;
}

strong {
  color: var(--be-black);
  font-weight: 700;
}

/* ==========================================================================
   SITE HEADER (wanton.be Inspired)
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 3px solid var(--be-yellow);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.site-header .container,
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.brand-wrap {
  display: flex;
  align-items: center;
  gap: 15px;
}

.brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.brand-logo:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.brand-logo-img {
  height: 40px;
  width: auto;
  max-width: 240px;
  display: block;
}

.author-avatar-img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--be-yellow);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Header Trust Badges */
.header-trust-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.header-trust-badges .badge,
.trust-badges .badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-dark);
  background: rgba(253, 218, 37, 0.15);
  padding: 5px 10px;
  border-radius: 20px;
  border: 1px solid var(--be-yellow);
}

.badge-icon {
  color: var(--be-red);
  font-weight: 700;
}

/* Header Navigation */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.main-nav a {
  display: inline-block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-dark);
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.main-nav a:hover {
  background: rgba(253, 218, 37, 0.15);
  color: var(--be-black);
}

.main-nav a.active {
  background: var(--be-black);
  color: var(--be-yellow);
  font-weight: 700;
}

.menu-toggle {
  display: none;
}

/* ==========================================================================
   HERO BANNER & MASTHEAD (wanton.be Style with Thematic Casino Watermark)
   ========================================================================== */

.hero-banner,
.banner,
.hero-review {
  position: relative;
  text-align: center;
  margin-top: 15px;
  margin-bottom: 30px;
  padding: 38px 28px 42px;
  background: 
    radial-gradient(ellipse 90% 70% at 50% 0%, rgba(253, 218, 37, 0.2) 0%, rgba(255, 255, 255, 0.85) 60%, #fffdf8 100%),
    linear-gradient(180deg, #ffffff 0%, #fffdf6 50%, #fffbf0 100%);
  border: 1.5px solid rgba(253, 218, 37, 0.45);
  border-top: 4px solid var(--be-yellow);
  border-radius: 20px;
  box-shadow: 
    0 12px 35px rgba(0, 0, 0, 0.04),
    0 2px 10px rgba(253, 218, 37, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  overflow: hidden;
  z-index: 1;
}

/* Semi-transparent thematic watermark with roulette, chips, and gold ambient glow */
.hero-banner::before,
.banner::before,
.hero-review::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(ellipse at center, rgba(255, 255, 255, 0.88) 15%, rgba(255, 255, 255, 0.72) 65%, rgba(255, 255, 255, 0.92) 100%),
    url('foto/hero-bg.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.22;
  filter: saturate(1.25);
  pointer-events: none;
  z-index: 0;
}

.hero-banner > *,
.banner > *,
.hero-review > * {
  position: relative;
  z-index: 1;
}

.hero-visual-card {
  position: relative;
  width: 100%;
  max-width: 100%;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 22px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2), 0 0 20px rgba(253, 218, 37, 0.12);
  border: 1px solid rgba(253, 218, 37, 0.3);
  background: #000;
  aspect-ratio: 16 / 9;
}

.hero-banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.hero-visual-card:hover .hero-banner-image {
  transform: scale(1.015);
}

.update-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--be-black);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  color: var(--be-yellow);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pulse {
  width: 8px;
  height: 8px;
  background: var(--be-yellow);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.hero-banner h1,
.banner h1,
.hero-review h1 {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 800;
  color: var(--be-black);
  margin-bottom: 14px;
  line-height: 1.22;
  letter-spacing: -0.3px;
}

.lead-text,
.banner_subtitle {
  font-size: 15.5px;
  color: var(--text-secondary);
  max-width: 780px;
  margin: 0 auto 18px;
  line-height: 1.68;
}

/* Trust Badges in Hero */
.trust-badge {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.badge-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dark);
  background: rgba(253, 218, 37, 0.2);
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid var(--be-yellow);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  backdrop-filter: blur(4px);
}

.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--be-yellow) 0%, #FFA500 100%);
  color: #000;
  font-weight: 700;
  font-size: 13.5px;
  padding: 12px 24px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(253, 218, 37, 0.35);
  transition: var(--transition);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #fff 0%, var(--be-yellow) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(253, 218, 37, 0.5);
  color: #000;
}

.btn-outline {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #111;
  font-weight: 700;
  font-size: 13.5px;
  padding: 12px 24px;
  border-radius: 10px;
  border: 1.5px solid #222;
  transition: var(--transition);
}

.btn-outline:hover {
  background: #111;
  color: #fff;
  transform: translateY(-2px);
}

/* ==========================================================================
   WANTON.BE TOP 10 CASINO CARDS
   ========================================================================== */

.cards-section {
  margin: 25px 0;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0.5rem 0;
}

.cards_wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card {
  display: grid;
  grid-template-columns: 0.45fr 1.15fr 1fr 0.45fr;
  align-items: center;
  gap: 1.25rem;
  border-radius: 14px;
  background: var(--bg-card);
  color: var(--text-dark);
  overflow: hidden;
  border: 1px solid var(--border-light);
  min-height: 130px;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
  animation: fadeInUp 0.5s ease forwards;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: var(--be-yellow);
}

/* Tiered Card Borders */
.card:nth-child(1) {
  border: 2px solid #FFD700 !important;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.28);
}
.card:nth-child(1) .card__number {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%) !important;
  color: #000 !important;
}

.card:nth-child(2) {
  border: 2px solid #C0C0C0 !important;
  box-shadow: 0 4px 15px rgba(192, 192, 192, 0.25);
}
.card:nth-child(2) .card__number {
  background: linear-gradient(135deg, #C0C0C0 0%, #A0A0A0 100%) !important;
  color: #000 !important;
}

.card:nth-child(3) {
  border: 2px solid #CD7F32 !important;
  box-shadow: 0 4px 15px rgba(205, 127, 50, 0.25);
}
.card:nth-child(3) .card__number {
  background: linear-gradient(135deg, #CD7F32 0%, #A0522D 100%) !important;
  color: #fff !important;
}

.card:nth-child(4),
.card:nth-child(5),
.card:nth-child(6),
.card:nth-child(7),
.card:nth-child(8),
.card:nth-child(9),
.card:nth-child(10) {
  border: 1px solid var(--be-yellow) !important;
}

.card:nth-child(4) .card__number,
.card:nth-child(5) .card__number,
.card:nth-child(6) .card__number,
.card:nth-child(7) .card__number,
.card:nth-child(8) .card__number,
.card:nth-child(9) .card__number,
.card:nth-child(10) .card__number {
  background: linear-gradient(135deg, var(--be-yellow) 0%, #e6c422 100%) !important;
  color: #000 !important;
}

/* Card Image & Branding Box */
.card__img {
  background: var(--bg-card-dark);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 15px;
  min-height: 125px;
  text-decoration: none;
}

.card__img img {
  object-fit: contain;
  max-width: 130px;
  max-height: 65px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.card__number {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 28px;
  height: 28px;
  background: var(--be-yellow);
  color: #000;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  z-index: 10;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.card__badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: #000;
  font-size: 9px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

/* Card Bonus & Highlights */
.card__bonus {
  padding: 12px 0;
}

.bonus-amount {
  font-size: 20px;
  font-weight: 800;
  color: var(--be-red);
  margin-bottom: 4px;
  letter-spacing: -0.3px;
}

.card__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--be-black);
  line-height: 1.4;
  text-transform: uppercase;
}

.card__title .highlight {
  color: var(--be-red);
}

.bonus-details {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Card Bullet List */
.card__list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 12.5px;
  padding: 0 0 0 18px;
  list-style: none;
}

.card__list li {
  position: relative;
  color: var(--text-muted);
}

.card__list li:first-child {
  font-weight: 700;
  font-size: 15px;
  color: var(--be-black);
}

.card__list li:first-child a {
  color: var(--be-black);
  text-decoration: none;
}

.card__list li:first-child a:hover {
  color: var(--be-red);
  text-decoration: underline;
}

.card__list li::before {
  content: "✓";
  position: absolute;
  left: -16px;
  color: var(--be-red);
  font-weight: 700;
  font-size: 11px;
}

.card__list li:first-child::before,
.card__list li.claimed-badge::before {
  content: "";
}

.card__list li.claimed-badge {
  font-size: 11px;
  color: var(--be-red);
  font-weight: 600;
  animation: claimedPulse 3s infinite;
}

@keyframes claimedPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* Card Button & Rating */
.card__btn {
  padding: 0 16px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.card .btn-bezoeken,
.card .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  background: linear-gradient(135deg, var(--be-yellow) 0%, #FFA500 100%);
  color: #000;
  font-weight: 800;
  font-size: 13px;
  padding: 12px 18px;
  border-radius: 10px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(253, 218, 37, 0.35);
  letter-spacing: 0.5px;
  min-width: 130px;
}

.card .btn-bezoeken:hover,
.card .btn:hover {
  background: linear-gradient(135deg, #fff 0%, var(--be-yellow) 100%);
  transform: scale(1.04);
  box-shadow: 0 6px 20px rgba(253, 218, 37, 0.5);
  color: #000;
}

.card .btn span {
  flex: 1;
  text-align: center;
}

.card .rate {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.card .rate > span {
  font-weight: 700;
  font-size: 13px;
  color: var(--be-black);
}

.card .stars {
  display: flex;
  gap: 1px;
}

.card .star {
  color: #FFD700;
  font-size: 14px;
}

.card .star.empty {
  opacity: 0.3;
}

/* ==========================================================================
   WANTON.BE INFO GRID SECTION
   ========================================================================== */

.info-section {
  margin-top: 40px;
  margin-bottom: 30px;
  padding: 10px 0;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 26px 22px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-card);
}

.info-card:hover {
  border-color: var(--be-yellow);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.info-icon {
  font-size: 38px;
  margin-bottom: 12px;
  display: block;
}

.info-card h3 {
  color: var(--be-black);
  margin-bottom: 10px;
  margin-top: 0;
  font-size: 18px;
  font-weight: 700;
}

.info-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ==========================================================================
   CONTENT BODY & ARTICLE COMPONENTS
   ========================================================================== */

.page-content {
  flex: 1 0 auto;
  padding-bottom: 40px;
}

.content-body {
  margin-top: 20px;
}

/* Answer Capsule (AI Overview / Google Snippet Hook) */
.answer-capsule {
  background: var(--bg-card);
  border-left: 4px solid var(--be-yellow);
  border-top: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  margin: 22px 0;
  box-shadow: var(--shadow-sm);
}

.answer-capsule strong {
  display: block;
  font-size: 15px;
  color: var(--be-black);
  margin-bottom: 6px;
}

.answer-capsule p {
  margin-bottom: 0;
  font-size: 14.5px;
  color: var(--text-secondary);
}

/* Steps List (Direct Action Flow) */
.steps-container {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin: 24px 0;
  box-shadow: var(--shadow-sm);
}

.steps-list {
  counter-reset: step-counter;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.steps-list li {
  counter-increment: step-counter;
  position: relative;
  padding-left: 42px;
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.steps-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--be-yellow) 0%, #FFA500 100%);
  color: #000;
  font-weight: 800;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* Tables (Specs, Payouts, Comparison) */
.table-responsive {
  overflow-x: auto;
  margin: 24px 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  background: var(--bg-card);
}

.specs-table,
table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
}

.specs-table th,
table th {
  background: #111827;
  color: var(--be-yellow);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 14px 18px;
  text-align: left;
}

.specs-table td,
table td {
  padding: 13px 18px;
  font-size: 14px;
  color: var(--text-secondary);
  border-bottom: 1px solid #f3f4f6;
}

.specs-table tr:last-child td,
table tr:last-child td {
  border-bottom: none;
}

.specs-table tr:nth-child(even),
table tr:nth-child(even) {
  background: #f9fafb;
}

.specs-table tr:hover,
table tr:hover {
  background: rgba(253, 218, 37, 0.08);
}

/* Pros and Cons */
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 24px 0;
}

.pros-box, .cons-box,
.pros-card, .cons-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.pros-box, .pros-card {
  border-top: 4px solid #10b981;
}

.cons-box, .cons-card {
  border-top: 4px solid var(--be-red);
}

.pros-box h4, .pros-title {
  color: #065f46;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
}

.cons-box h4, .cons-title {
  color: #991b1b;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
}

.pros-box ul li, .cons-box ul li,
.pros-list li, .cons-list li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 8px;
  line-height: 1.5;
}

.pros-box ul li::before,
.pros-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 800;
}

.cons-box ul li::before,
.cons-list li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: var(--be-red);
  font-weight: 800;
}

/* Trust Section */
.trust-section {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-left: 4px solid #10b981;
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin: 22px 0;
  box-shadow: var(--shadow-sm);
}

.trust-title {
  color: #065f46;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.trust-section p {
  margin-bottom: 0;
  font-size: 14.5px;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
  border: 1.5px solid var(--be-yellow);
  border-radius: 16px;
  padding: 30px 24px;
  margin: 32px 0;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  color: #fff;
}

.cta-banner h3,
.cta-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--be-yellow);
  margin-bottom: 10px;
}

.cta-banner p {
  max-width: 650px;
  margin: 0 auto 20px;
  font-size: 14.5px;
  color: #E5E7EB;
  line-height: 1.6;
}

.btn-secondary {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--be-yellow) 0%, #FFA500 100%);
  color: #000 !important;
  font-weight: 800;
  font-size: 14px;
  padding: 13px 30px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 14px rgba(253, 218, 37, 0.4);
  transition: all 0.25s ease;
  text-decoration: none;
  max-width: 100%;
  box-sizing: border-box;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #fff 0%, var(--be-yellow) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(253, 218, 37, 0.55);
}

/* Author Box */
.author-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--be-yellow);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex;
  gap: 18px;
  align-items: center;
  margin: 30px 0;
  box-shadow: var(--shadow-sm);
}

.author-avatar img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--be-yellow);
}

.author-info h4 {
  font-size: 17px;
  color: var(--be-black);
  margin-bottom: 2px;
}

.author-role {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--be-red);
  margin-bottom: 6px;
}

.author-bio {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Internal Links Section */
.internal-links-section {
  margin: 28px 0;
}

.links-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 12px;
  margin: 16px 0 24px;
}

.links-list li {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.links-list li:hover {
  border-color: var(--be-yellow);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.links-list a {
  color: var(--be-black);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.links-list a::before {
  content: "👉";
  font-size: 15px;
}

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
  padding: 8px 0;
}

.breadcrumbs a {
  color: var(--text-muted);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--be-black);
}

.breadcrumbs span {
  color: var(--text-dark);
  font-weight: 600;
}

/* Disclosure Box */
.disclosure-box {
  background: #fefce8;
  border: 1px solid #fef08a;
  border-radius: var(--radius-md);
  padding: 14px 20px;
  margin: 20px 0;
  font-size: 13px;
  color: #713f12;
  line-height: 1.6;
}

/* FAQ Section */
.faq-section {
  margin: 30px 0;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--be-yellow);
}

.faq-question {
  font-size: 16px;
  font-weight: 700;
  color: var(--be-black);
  margin-bottom: 8px;
  cursor: pointer;
}

.faq-answer {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* Audit Evidence Banners (Real Platform Screenshots) */
.audit-evidence-banner {
  margin: 24px 0 28px;
  border-radius: 14px;
  overflow: hidden;
  border: 1.5px solid rgba(253, 218, 37, 0.45);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.08);
  background: #0d1117;
}

.audit-evidence-banner img {
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: cover;
  display: block;
}

.audit-evidence-banner .evidence-caption {
  padding: 10px 16px;
  font-size: 12.5px;
  color: var(--text-dark);
  background: #fdfaf0;
  border-top: 1px solid rgba(253, 218, 37, 0.35);
  display: flex;
  align-items: center;
  gap: 8px;
}

.audit-evidence-banner .evidence-caption strong {
  color: #111827;
}

/* Strategic Tips Grid for Players */
.tips-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 22px 0 28px;
}

.tip-card {
  background: #ffffff;
  border: 1.5px solid rgba(253, 218, 37, 0.45);
  border-radius: 12px;
  padding: 16px 14px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.tip-card:hover {
  transform: translateY(-2px);
  border-color: var(--be-yellow);
}

.tip-icon {
  font-size: 22px;
}

.tip-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  margin: 0;
}

.tip-card p {
  font-size: 12.5px;
  color: #4b5563;
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 768px) {
  .tips-card-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* Games & Slots Grid */
.games-grid,
.games-grid-preview {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 18px;
  margin: 24px 0 32px;
}

.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.game-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--be-yellow);
}

.game-card-img,
.game-thumb {
  position: relative;
  background: #0b0e14;
  width: 100%;
  aspect-ratio: 512 / 713;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.game-card-img img,
.game-thumb img,
.game-card > a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}

.game-card:hover .game-card-img img,
.game-card:hover .game-thumb img,
.game-card:hover > a img {
  transform: scale(1.03);
}

.game-rtp-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.88);
  color: var(--be-yellow);
  border: 1px solid var(--be-yellow);
  font-weight: 800;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 12px;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

.game-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.game-provider-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.game-card-body,
.game-info {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

.game-card h4,
.game-card-body h4 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--be-black);
  margin: 0 0 6px;
  line-height: 1.35;
}

.game-card p,
.game-card-body p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0 0 12px;
}

.game-card-actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
}

.btn-game-play {
  flex: 1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, var(--be-yellow) 0%, #FFA500 100%);
  color: #000;
  font-weight: 700;
  font-size: 12px;
  padding: 8px 12px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(253, 218, 37, 0.3);
  transition: var(--transition);
}

.btn-game-play:hover {
  background: linear-gradient(135deg, #fff 0%, var(--be-yellow) 100%);
  transform: translateY(-1px);
  color: #000;
}

.btn-game-review {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  color: #111;
  font-weight: 600;
  font-size: 12px;
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid #d1d5db;
  text-decoration: none;
  transition: var(--transition);
}

.btn-game-review:hover {
  background: #111;
  color: #fff;
  border-color: #111;
}

/* ==========================================================================
   SITE FOOTER (wanton.be Black & Gold Style)
   ========================================================================== */

.site-footer,
.footer {
  padding: 45px 0 25px;
  background: var(--be-black);
  border-top: 4px solid var(--be-yellow);
  color: #fff;
  margin-top: 40px;
}

.site-footer .container,
.footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo img {
  height: 36px;
  width: auto;
  border-radius: 2px;
}

.footer-logo span {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.5px;
}

.footer-logo span .yellow {
  color: var(--be-yellow);
}

.footer-text {
  font-size: 13.5px;
  line-height: 1.7;
  max-width: 780px;
  color: #aaa;
}

.footer-text strong {
  color: var(--be-yellow);
  display: block;
  margin-top: 10px;
  font-size: 14px;
}

/* Responsible Gaming Warning Box */
.responsible-gaming {
  background: rgba(239, 51, 64, 0.15);
  border: 1px solid rgba(239, 51, 64, 0.35);
  border-radius: 10px;
  padding: 15px 25px;
  margin-top: 10px;
  width: 100%;
  max-width: 820px;
}

.responsible-gaming p {
  color: #ff6b6b;
  font-size: 13.5px;
  font-weight: 600;
  margin: 0;
}

.responsible-gaming a {
  color: var(--be-yellow);
  text-decoration: underline;
}

/* Compliance Badges Strip */
.footer__icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 18px 30px;
  border: 1px solid #333;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  margin-top: 10px;
}

.footer__icons .icon-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #ddd;
  background: rgba(255, 255, 255, 0.08);
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid #444;
}

.footer__icons img {
  height: 28px;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.footer__icons img:hover {
  opacity: 1;
}

.footer-links {
  display: flex;
  gap: 25px;
  margin-top: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: #888;
  font-size: 13px;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--be-yellow);
}

.footer-disclaimer-small {
  font-size: 12px;
  color: #666;
  max-width: 760px;
  line-height: 1.6;
  margin-top: 10px;
}

/* ==========================================================================
   MOBILE STICKY CTA BAR (High-Converting Psychological Trigger)
   ========================================================================== */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(11, 15, 23, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1.5px solid rgba(253, 218, 37, 0.6);
  padding: 10px 16px;
  padding-bottom: max(10px, env(safe-area-inset-bottom, 10px));
  z-index: 999;
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.6);
}

.sticky-cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  max-width: 600px;
  margin: 0 auto;
}

.sticky-cta-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
  flex: 1 1 auto;
}

.sticky-cta-name {
  font-family: var(--font-heading);
  font-size: 14.5px;
  font-weight: 800;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 0.2px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.sticky-cta-name .gift-icon {
  display: inline-block;
  font-size: 16px;
  transform-origin: center bottom;
  animation: giftWobble 3.2s infinite ease-in-out;
}

@keyframes giftWobble {
  0%, 65%, 100% {
    transform: rotate(0deg) scale(1);
  }
  70% {
    transform: rotate(-12deg) scale(1.18);
  }
  75% {
    transform: rotate(10deg) scale(1.18);
  }
  80% {
    transform: rotate(-8deg) scale(1.1);
  }
  85% {
    transform: rotate(6deg) scale(1.05);
  }
  90% {
    transform: rotate(0deg) scale(1);
  }
}

.sticky-cta-name .highlight {
  color: #FFD700;
  font-weight: 900;
  text-shadow: 0 0 12px rgba(255, 215, 0, 0.5);
}

.sticky-cta-badge {
  font-size: 11px;
  font-weight: 600;
  color: #9CA3AF;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pulse-dot {
  position: relative;
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #10B981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10B981;
  flex-shrink: 0;
}

.pulse-dot::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 50%;
  border: 1.5px solid #10B981;
  animation: radarWave 2s infinite ease-out;
}

@keyframes radarWave {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

/* Psychological High-Converting Button with Dynamic Light Sweep & Glow */
.btn-sticky {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: linear-gradient(135deg, #FFE066 0%, #FFB800 45%, #FF8C00 100%);
  color: #0d1117 !important;
  font-weight: 900;
  font-size: 13px;
  padding: 10px 18px;
  border-radius: 24px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 18px rgba(255, 184, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease;
  flex-shrink: 0;
  overflow: hidden;
  animation: stickyPulse 2.8s infinite ease-in-out;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.btn-sticky .btn-arrow {
  display: inline-block;
  font-size: 14px;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Luminous Gleam / Shimmer sweeping across the button */
.btn-sticky::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.65), transparent);
  transform: skewX(-20deg);
  animation: ctaShimmer 3s infinite;
}

@keyframes ctaShimmer {
  0%, 60% {
    left: -100%;
  }
  100% {
    left: 200%;
  }
}

@keyframes stickyPulse {
  0%, 100% {
    box-shadow: 0 4px 18px rgba(255, 184, 0, 0.5);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 6px 26px rgba(255, 184, 0, 0.85), 0 0 12px rgba(255, 224, 102, 0.5);
    transform: scale(1.025);
  }
}

.btn-sticky:hover {
  transform: scale(1.06) translateY(-1px);
  box-shadow: 0 8px 28px rgba(255, 184, 0, 0.9);
}

.btn-sticky:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-sticky:active {
  transform: scale(0.96);
  box-shadow: 0 2px 10px rgba(255, 184, 0, 0.4);
}

/* ==========================================================================
   RESPONSIVE DESIGN & MOBILE ADAPTATION
   ========================================================================== */

@media (max-width: 992px) {
  .card {
    grid-template-columns: 0.5fr 1fr 1fr 0.5fr;
  }
  .card__title {
    font-size: 12px;
  }
  .bonus-amount {
    font-size: 17px;
  }
  .pros-cons-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 74px; /* safe bottom space so sticky CTA never covers footer */
  }

  h1 {
    font-size: 24px;
    line-height: 1.25;
  }
  h2 {
    font-size: 20px;
    line-height: 1.3;
  }

  /* Header on Mobile */
  .site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 2px solid var(--be-yellow);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  .header-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    position: relative;
  }
  .brand-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .brand-logo-img {
    height: 34px;
    width: auto;
    max-width: 190px;
    object-fit: contain;
  }
  .header-trust-badges {
    display: none; /* Keep header compact on mobile */
  }

  /* Hamburger Menu Toggle */
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 38px;
    height: 38px;
    padding: 7px;
    background: rgba(253, 218, 37, 0.15);
    border: 1.5px solid var(--be-yellow);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.25s ease;
  }
  .menu-toggle:hover {
    background: rgba(253, 218, 37, 0.25);
  }
  .hamburger-bar {
    display: block;
    width: 20px;
    height: 2px;
    background: #111827;
    border-radius: 2px;
    transition: all 0.3s ease;
  }
  .menu-toggle.is-active .hamburger-bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .menu-toggle.is-active .hamburger-bar:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.is-active .hamburger-bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  /* Mobile Navigation Drawer */
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 3px solid var(--be-yellow);
    padding: 16px 20px 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    z-index: 999;
  }
  .main-nav.is-open {
    display: block;
    animation: fadeInDown 0.25s ease forwards;
  }
  .main-nav ul {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
    padding: 0;
    margin: 0;
  }
  .main-nav li {
    width: 100%;
  }
  .main-nav a {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
    background: #F9FAFB;
    box-sizing: border-box;
  }
  .main-nav a:hover,
  .main-nav a.active {
    background: #111827;
    color: var(--be-yellow);
    border-color: #111827;
    font-weight: 700;
  }

  /* Hero Banner & Actions on Mobile */
  .banner,
  .hero-banner,
  .hero-review {
    padding: 24px 16px 28px;
    margin-top: 10px;
    border-radius: 16px;
  }
  .lead-text,
  .banner_subtitle {
    font-size: 14px;
    line-height: 1.55;
  }
  .hero-visual-card {
    border-radius: 12px;
    margin-bottom: 16px;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  .btn-primary,
  .btn-outline {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 18px;
    font-size: 14px;
    text-align: center;
  }

  /* Stacked Cards for Mobile */
  .card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    padding-bottom: 14px;
    border-radius: 14px;
    gap: 0;
    overflow: hidden;
  }
  .card__img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 85px;
    position: relative;
    background: #0d1117;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .card__img img {
    max-height: 48px;
    width: auto;
    object-fit: contain;
  }
  .card__number {
    top: 8px;
    left: 8px;
  }
  .card__badge {
    top: 8px;
    right: 8px;
  }
  .card__bonus {
    padding: 14px 16px 6px;
  }
  .bonus-amount {
    font-size: 18px;
    margin-bottom: 4px;
  }
  .card__title {
    font-size: 12.5px;
  }
  .card__list {
    padding: 4px 16px 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .card__list li {
    font-size: 12px;
  }
  .card__btn {
    padding: 6px 16px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    box-sizing: border-box;
  }
  .card .btn-bezoeken {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    justify-content: center;
    padding: 12px 16px;
    font-size: 14px;
    border-radius: 10px;
  }
  .card .rate {
    justify-content: center;
  }

  /* Games Grid on Mobile */
  .games-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  /* Tables & Wrappers */
  table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .footer__icons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 14px 12px;
  }
  .footer__icons .icon-badge {
    font-size: 11px;
    padding: 7px 8px;
    justify-content: center;
    text-align: center;
  }

  .footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 14px;
    text-align: left;
    padding: 0 8px;
  }

  .author-box {
    flex-direction: column;
    text-align: center;
    padding: 20px 16px;
  }

  .sticky-cta {
    display: block;
  }
}

@media (max-width: 520px) {
  .cta-extra {
    display: none !important;
  }
  .sticky-cta {
    padding: 8px 12px;
    padding-bottom: max(8px, env(safe-area-inset-bottom, 8px));
  }
  .sticky-cta-content {
    gap: 8px;
  }
  .sticky-cta-name {
    font-size: 13.5px;
    letter-spacing: 0;
  }
  .sticky-cta-name .gift-icon {
    font-size: 15px;
  }
  .sticky-cta-badge {
    font-size: 10.5px;
    gap: 5px;
  }
  .btn-sticky {
    font-size: 12px;
    padding: 8px 13px;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 14px rgba(255, 184, 0, 0.45);
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 21px;
  }
  h2 {
    font-size: 18px;
  }
  .games-grid {
    grid-template-columns: 1fr !important;
  }
  .footer__icons {
    grid-template-columns: 1fr;
  }
  .footer-links {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .card__img {
    height: 75px;
  }
  .bonus-amount {
    font-size: 16.5px;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

