@import url('https://fonts.googleapis.com/css2?family=Grenze+Gotisch:wght@300;400;500;600;700;900&display=swap');

:root {
  --clr-header: #8e73a8;
  --clr-header-dark: #7a5f94;
  --clr-btn-gold: #efc33b;
  --clr-btn-gold-dark: #d9af20;
  --clr-btn-blue: #424586;
  --clr-btn-blue-dark: #353876;
  --clr-bg: #6f1611;
  --clr-bg-dark: #5a1009;
  --clr-surface: rgba(255,255,255,0.06);
  --clr-surface2: rgba(255,255,255,0.10);
  --clr-border: rgba(239,195,59,0.25);
  --clr-text: #f5e9cc;
  --clr-text-muted: #c9b8a0;
  --clr-accent: #efc33b;
  --clr-white: #ffffff;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --transition: 0.25s ease;
  --font-main: 'Grenze Gotisch', serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; background-color: var(--clr-bg); }

body {
  font-family: var(--font-main);
  background-color: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

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

a { color: var(--clr-accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: #fff; }

h1, h2, h3, h4, h5 { font-family: var(--font-main); font-weight: 700; line-height: 1.2; color: var(--clr-white); }
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 0.85rem; }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); margin-bottom: 0.7rem; }

p { margin-bottom: 1rem; color: var(--clr-text); }
ul, ol { padding-left: 1.5rem; margin-bottom: 1rem; }
li { margin-bottom: 0.4rem; }

.x9f2a { display: none; }
.wp-block-placeholder { visibility: hidden; height: 0; overflow: hidden; }

.site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-fluid { width: 100%; padding: 0 20px; }

/* ===== HEADER ===== */
.site-header {
  background: var(--clr-header);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0,0,0,0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  min-height: 70px;
}

.header-logo a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
}

.header-logo .site-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-white);
  line-height: 1.2;
  display: none;
}

.header-nav { display: flex; align-items: center; gap: 6px; }

.header-nav a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--clr-white);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}

.header-nav a:hover { background: rgba(255,255,255,0.15); color: var(--clr-accent); }

.header-nav svg { width: 16px; height: 16px; flex-shrink: 0; }

.header-jackpot {
  background: linear-gradient(135deg, rgba(239,195,59,0.2), rgba(66,69,134,0.3));
  border: 1px solid var(--clr-accent);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 0.78rem;
  color: var(--clr-accent);
  font-weight: 700;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}

.header-jackpot .jk-amount { font-size: 0.95rem; color: #fff; }

.header-cta { display: flex; align-items: center; gap: 8px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 30px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-gold {
  background: linear-gradient(135deg, #efc33b, #d4a82a);
  color: #1a1a1a;
  box-shadow: 0 3px 12px rgba(239,195,59,0.4);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #f5d060, #efc33b);
  color: #000;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(239,195,59,0.5);
}

.btn-blue {
  background: linear-gradient(135deg, #424586, #353876);
  color: #fff;
  box-shadow: 0 3px 12px rgba(66,69,134,0.4);
}

.btn-blue:hover {
  background: linear-gradient(135deg, #5557a0, #424586);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(66,69,134,0.5);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--clr-accent);
  color: var(--clr-accent);
}

.btn-outline:hover {
  background: var(--clr-accent);
  color: #1a1a1a;
}

.btn-sm { padding: 6px 14px; font-size: 0.8rem; }
.btn-lg { padding: 14px 28px; font-size: 1.05rem; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.burger span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 999;
  backdrop-filter: blur(2px);
}

.mobile-overlay.active { display: block; }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100%;
  background: var(--clr-header-dark);
  z-index: 1001;
  padding: 80px 24px 24px;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.mobile-menu.active { display: block; transform: translateX(0); }

.mobile-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--clr-white);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 1rem;
}

.mobile-menu a:hover { color: var(--clr-accent); }
.mobile-menu svg { width: 18px; height: 18px; }

.mobile-menu-cta { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.mobile-menu-cta a { border-bottom: none; justify-content: center; }

/* ===== HERO ===== */
.site-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #3a0a08 0%, var(--clr-bg) 50%, #2d0e42 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/img/banner.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(111,22,17,0.92) 40%, rgba(66,69,134,0.5) 100%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 0;
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(239,195,59,0.15);
  border: 1px solid var(--clr-accent);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 0.8rem;
  color: var(--clr-accent);
  margin-bottom: 20px;
  animation: fadeInDown 0.6s ease both;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
  animation: fadeInDown 0.7s ease 0.1s both;
}

.hero-title .hl { color: var(--clr-accent); }

.hero-desc {
  font-size: 1.05rem;
  color: var(--clr-text);
  margin-bottom: 28px;
  animation: fadeInDown 0.7s ease 0.2s both;
}

.hero-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  animation: fadeInDown 0.7s ease 0.3s both;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(239,195,59,0.3);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
}

.hero-stat .val { font-size: 1.3rem; font-weight: 900; color: var(--clr-accent); }
.hero-stat .lbl { font-size: 0.72rem; color: var(--clr-text-muted); }

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  animation: fadeInDown 0.7s ease 0.4s both;
}

.hero-img {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  max-width: 45%;
  object-fit: contain;
  object-position: right bottom;
  opacity: 0.6;
  animation: floatImg 4s ease-in-out infinite;
}

@keyframes floatImg {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs-wrap {
  background: rgba(0,0,0,0.3);
  border-bottom: 1px solid var(--clr-border);
  padding: 10px 0;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--clr-text-muted);
}

.breadcrumbs a { color: var(--clr-text-muted); }
.breadcrumbs a:hover { color: var(--clr-accent); }
.breadcrumbs .sep { color: rgba(255,255,255,0.3); }
.breadcrumbs .current { color: var(--clr-text); }

/* ===== SECTIONS ===== */
.section {
  padding: 50px 0;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--clr-border);
}

.section-title svg { color: var(--clr-accent); flex-shrink: 0; }
.section-title h2 { margin-bottom: 0; }

.block-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 28px;
  backdrop-filter: blur(4px);
  transition: border-color var(--transition);
}

.block-card:hover { border-color: rgba(239,195,59,0.5); }

/* ===== TABLE OF CONTENTS ===== */
.toc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}

.toc-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--clr-surface2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--clr-text);
  transition: all var(--transition);
}

.toc-item:hover {
  background: rgba(239,195,59,0.12);
  border-color: var(--clr-accent);
  color: var(--clr-accent);
  transform: translateX(4px);
}

.toc-item svg { color: var(--clr-accent); flex-shrink: 0; width: 18px; height: 18px; }

/* ===== DEMO + GAME DETAILS ===== */
.demo-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  align-items: start;
}

.demo-frame-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--clr-border);
  background: #000;
}

.demo-frame-wrap iframe {
  width: 100%;
  height: 480px;
  border: none;
  display: block;
}

.demo-overlay-cta {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.game-details-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.game-details-table tr {
  border-bottom: 1px solid rgba(239,195,59,0.12);
  transition: background var(--transition);
}

.game-details-table tr:hover { background: rgba(255,255,255,0.04); }

.game-details-table td {
  padding: 10px 8px;
  vertical-align: top;
}

.game-details-table td:first-child {
  color: var(--clr-text-muted);
  width: 40%;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-weight: 500;
}

.game-details-table td:last-child {
  color: var(--clr-text);
  font-weight: 600;
}

.gd-icon { width: 16px; height: 16px; color: var(--clr-accent); flex-shrink: 0; margin-top: 2px; }

.rtp-bar {
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  margin-top: 6px;
}

.rtp-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--clr-accent), #f5a623);
  border-radius: 3px;
}

/* ===== MOBILE APP ===== */
.mobile-app-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: start;
}

.phone-frame {
  position: relative;
  width: 200px;
  margin: 0 auto;
}

.phone-frame-img {
  width: 100%;
  background: linear-gradient(135deg, #2a2a3e, #3d2060);
  border-radius: 36px;
  padding: 14px 10px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.6), inset 0 0 0 1px rgba(255,255,255,0.1);
  border: 2px solid rgba(239,195,59,0.3);
}

.phone-screen {
  background: linear-gradient(135deg, #1a0a30, #0d0d1e);
  border-radius: 26px;
  overflow: hidden;
  aspect-ratio: 9/16;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 26px;
}

.phone-screen-placeholder {
  text-align: center;
  color: var(--clr-text-muted);
  font-size: 0.8rem;
  padding: 20px;
}

.app-badges { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }

.app-badge-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  color: var(--clr-white);
  font-size: 0.82rem;
  transition: all var(--transition);
}

.app-badge-btn:hover {
  background: rgba(239,195,59,0.12);
  border-color: var(--clr-accent);
  color: var(--clr-accent);
}

.app-badge-btn svg { width: 22px; height: 22px; flex-shrink: 0; }

.app-badge-btn .abl { font-size: 0.68rem; color: var(--clr-text-muted); display: block; }
.app-badge-btn .abt { font-size: 0.9rem; font-weight: 700; color: var(--clr-white); }

.app-info-table { width: 100%; border-collapse: collapse; }
.app-info-table td { padding: 9px 10px; border-bottom: 1px solid rgba(239,195,59,0.12); font-size: 0.88rem; }
.app-info-table td:first-child { color: var(--clr-text-muted); width: 45%; }
.app-info-table td:last-child { color: var(--clr-text); font-weight: 600; }

/* ===== JACKPOTS ===== */
.jackpot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.jackpot-card {
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all var(--transition);
}

.jackpot-card:hover { transform: translateY(-4px); }

.jackpot-card.bronze {
  background: linear-gradient(135deg, #3d2010, #5c3015);
  border-color: #cd7f32;
}

.jackpot-card.silver {
  background: linear-gradient(135deg, #1f2035, #2d3050);
  border-color: #c0c0c0;
}

.jackpot-card.gold {
  background: linear-gradient(135deg, #2d1a00, #4a2d00);
  border-color: var(--clr-accent);
  box-shadow: 0 0 30px rgba(239,195,59,0.2);
}

.jackpot-crown {
  font-size: 2.2rem;
  margin-bottom: 10px;
  display: block;
}

.jackpot-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.jackpot-card.bronze .jackpot-name { color: #cd7f32; }
.jackpot-card.silver .jackpot-name { color: #c0c0c0; }
.jackpot-card.gold .jackpot-name { color: var(--clr-accent); }

.jackpot-amount {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  text-shadow: 0 0 20px rgba(239,195,59,0.4);
}

.jackpot-players { list-style: none; padding: 0; }

.jackpot-players li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8rem;
}

.jackpot-players li:last-child { border-bottom: none; }

.player-nick { color: var(--clr-text); }
.player-win { color: var(--clr-accent); font-weight: 700; }

/* ===== STRATEGIES ===== */
.strategies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.strategy-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.strategy-card:hover {
  transform: translateY(-4px);
  border-color: var(--clr-accent);
  box-shadow: 0 8px 30px rgba(239,195,59,0.15);
}

.strategy-thumb {
  height: 140px;
  background: linear-gradient(135deg, #2d0e42, #42185e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}

.strategy-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(239,195,59,0.1) 0%, transparent 70%);
}

.strategy-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.strategy-name { font-size: 1rem; font-weight: 700; color: var(--clr-white); margin-bottom: 8px; }
.strategy-desc { font-size: 0.83rem; color: var(--clr-text-muted); margin-bottom: 16px; flex: 1; }

/* ===== CONTENT BLOCK (bare HTML styling) ===== */
.content-text { line-height: 1.8; }

.content-text h2, .content-text h3, .content-text h4 { color: var(--clr-white); margin-bottom: 12px; margin-top: 24px; }
.content-text p { color: var(--clr-text); margin-bottom: 1rem; }
.content-text ul, .content-text ol { color: var(--clr-text); padding-left: 1.5rem; margin-bottom: 1rem; }
.content-text li { margin-bottom: 0.5rem; }
.content-text a { color: var(--clr-accent); }
.content-text a:hover { color: #fff; }
.content-text strong, .content-text b { color: var(--clr-white); }
.content-text em, .content-text i { color: var(--clr-text-muted); font-style: italic; }

.content-text table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  display: table;
  overflow-x: auto;
}

.content-text table th {
  background: var(--clr-header);
  color: #fff;
  padding: 10px 12px;
  text-align: left;
  font-weight: 700;
}

.content-text table td {
  padding: 9px 12px;
  border-bottom: 1px solid var(--clr-border);
  color: var(--clr-text);
}

.content-text table tr:hover td { background: rgba(255,255,255,0.04); }

.content-text blockquote {
  border-left: 4px solid var(--clr-accent);
  padding: 12px 20px;
  margin: 1.5rem 0;
  background: rgba(239,195,59,0.06);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--clr-text-muted);
  font-style: italic;
}

.content-text hr {
  border: none;
  border-top: 1px solid var(--clr-border);
  margin: 2rem 0;
}

.content-text img {
  max-width: 100%;
  border-radius: var(--radius-sm);
  margin: 1rem 0;
}

.content-text pre, .content-text code {
  background: rgba(0,0,0,0.4);
  border-radius: var(--radius-sm);
  padding: 2px 6px;
  font-family: monospace;
  font-size: 0.9em;
  color: var(--clr-accent);
}

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 10px; }

.faq-item {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.open { border-color: rgba(239,195,59,0.5); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--clr-white);
  transition: color var(--transition);
  user-select: none;
}

.faq-q:hover { color: var(--clr-accent); }

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--clr-accent);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  color: var(--clr-text);
  font-size: 0.9rem;
  line-height: 1.7;
}

.faq-item.open .faq-a {
  padding: 0 18px 16px;
  max-height: 500px;
}

/* ===== AUTHOR ===== */
.author-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  align-items: start;
}

.author-photo-wrap { text-align: center; }

.author-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--clr-accent);
  margin: 0 auto 12px;
  background: linear-gradient(135deg, var(--clr-header), #2d0e42);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  overflow: hidden;
}

.author-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-name { font-size: 1.2rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.author-title { font-size: 0.82rem; color: var(--clr-accent); font-weight: 600; }

.author-meta { display: flex; flex-direction: column; gap: 8px; }
.author-meta-row { display: flex; gap: 8px; align-items: flex-start; font-size: 0.88rem; }
.author-meta-label { color: var(--clr-text-muted); min-width: 110px; }
.author-meta-val { color: var(--clr-text); }

.author-bio { font-size: 0.9rem; color: var(--clr-text); line-height: 1.7; margin: 12px 0; }

.author-links { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }

.author-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--clr-border);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  transition: all var(--transition);
}

.author-link:hover {
  background: rgba(239,195,59,0.12);
  border-color: var(--clr-accent);
  color: var(--clr-accent);
}

.author-link svg { width: 14px; height: 14px; }

.article-dates { font-size: 0.8rem; color: var(--clr-text-muted); margin-top: 12px; }
.article-dates span { color: var(--clr-text); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--clr-header);
  margin-top: auto;
  border-top: 2px solid rgba(239,195,59,0.2);
}

.footer-top {
  padding: 48px 0 32px;
  display: grid;
  grid-template-columns: 240px 1fr 1fr;
  gap: 32px;
}

.footer-brand img { height: 54px; width: auto; margin-bottom: 12px; }

.footer-brand p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 0;
}

.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--clr-accent);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 0.85rem; color: rgba(255,255,255,0.65); }
.footer-col ul li a:hover { color: var(--clr-accent); }

.footer-socials { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: #fff;
  transition: all var(--transition);
}

.social-icon:hover {
  background: var(--clr-accent);
  color: #1a1a1a;
  transform: translateY(-2px);
}

.social-icon svg { width: 16px; height: 16px; }

.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.12); margin: 0; }

.footer-mid {
  padding: 20px 0;
}

.footer-logos {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.footer-payment-logo {
  height: 30px;
  width: auto;
  opacity: 0.7;
  filter: grayscale(0.3) brightness(1.2);
  transition: opacity var(--transition);
}

.footer-payment-logo:hover { opacity: 1; }

.footer-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
}

.trust-badge svg { width: 14px; height: 14px; }

.footer-bottom {
  background: rgba(0,0,0,0.25);
  padding: 16px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin: 0;
  line-height: 1.6;
}

.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: var(--clr-accent); }

.footer-flag { display: inline; font-size: 1rem; }

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #d32f2f;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 900;
  color: #fff;
  vertical-align: middle;
}

/* ===== BONUS WIDGET ===== */
.bonus-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: linear-gradient(90deg, #424586, #8e73a8);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.bonus-widget.visible { transform: translateY(0); }

.bonus-widget-text {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}

.bonus-widget-text span { color: var(--clr-accent); }

.bonus-widget-close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
  transition: background var(--transition);
}

.bonus-widget-close:hover { background: rgba(255,255,255,0.3); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

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

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

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.animate-in {
  opacity: 1;
  transform: none;
}

.js-anim .animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js-anim .animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .js-anim .animate-in { opacity: 1; transform: none; transition: none; }
}

.jackpot-amount {
  animation: pulse 2s ease-in-out infinite;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #2a0d0a; }
::-webkit-scrollbar-thumb { background: var(--clr-header); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--clr-accent); }

/* ===== TABLE SCROLL ===== */
.table-scroll { overflow-x: auto; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .demo-layout { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .header-jackpot { display: none; }
  .header-cta { display: none; }
  .burger { display: flex; margin-left: auto; }

  .hero-img { display: none; }
  .hero-content { max-width: 100%; }

  .jackpot-grid { grid-template-columns: 1fr; }
  .strategies-grid { grid-template-columns: 1fr 1fr; }
  .toc-grid { grid-template-columns: 1fr 1fr; }
  .mobile-app-layout { grid-template-columns: 1fr; }
  .phone-frame { width: 160px; }
  .author-card { grid-template-columns: 1fr; }
  .author-photo-wrap { display: flex; align-items: center; gap: 16px; text-align: left; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .demo-frame-wrap iframe { height: 360px; }
}

@media (max-width: 480px) {
  .strategies-grid { grid-template-columns: 1fr; }
  .toc-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .bonus-widget { flex-direction: column; gap: 10px; padding: 14px 40px 14px 14px; }
  .section { padding: 36px 0; }
}

/* ===== WP GHOST ELEMENTS (for fingerprinting) ===== */
.wp-block-group, .post-content { display: contents; }
.elementor-section, .elementor-container, .elementor-row { display: contents; }
