@import url('https://fonts.googleapis.com/css2?family=Luckiest+Guy&family=Open+Sans:wght@400;600;700&display=swap');

:root {
  --clr-header: #45220c;
  --clr-header-dark: #321808;
  --clr-btn-gold: #f6be26;
  --clr-btn-green: #3ce638;
  --clr-btn-green-hover: #28c924;
  --clr-bg: #bca56d;
  --clr-bg-light: #d4bc8a;
  --clr-bg-card: #f5ead4;
  --clr-text-dark: #1a0e05;
  --clr-text-light: #fff8ee;
  --clr-accent: #f6be26;
  --clr-border: #a08040;
  --radius-lg: 16px;
  --radius-md: 10px;
  --radius-sm: 6px;
  --shadow: 0 4px 20px rgba(69,34,12,.22);
  --shadow-card: 0 2px 12px rgba(69,34,12,.15);
  --transition: .22s cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; background: var(--clr-bg); }

body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: var(--clr-bg);
  color: var(--clr-text-dark);
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
}

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

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

a { color: var(--clr-btn-gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: #d4a010; }

h1,h2,h3,h4,h5,h6 {
  font-family: 'Luckiest Guy', cursive;
  color: var(--clr-header);
  line-height: 1.2;
  letter-spacing: .04em;
}

p { margin-bottom: 1rem; }

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

.box { border-radius: var(--radius-lg); }

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

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

.site-logo img {
  height: 52px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.4));
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.header-nav a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--clr-text-light);
  font-size: .88rem;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}

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

.header-nav a:hover {
  background: rgba(255,255,255,.12);
  color: var(--clr-btn-gold);
}

.jackpot-ticker {
  background: linear-gradient(90deg, #3a1a06 0%, #5a2e10 50%, #3a1a06 100%);
  border: 1px solid var(--clr-btn-gold);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: .82rem;
  color: var(--clr-btn-gold);
  font-weight: 700;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}

.jackpot-ticker span { font-family: 'Luckiest Guy', cursive; font-size: 1rem; letter-spacing: .05em; }

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: 'Luckiest Guy', cursive;
  font-size: .92rem;
  letter-spacing: .06em;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  padding: 9px 18px;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), filter var(--transition);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,.3); }
.btn:active { transform: translateY(0); }

.btn-play {
  background: var(--clr-btn-green);
  color: #0a3308;
  box-shadow: 0 3px 10px rgba(60,230,56,.35);
}
.btn-play:hover { background: var(--clr-btn-green-hover); color: #0a3308; filter: brightness(1.08); }

.btn-bonus {
  background: var(--clr-btn-gold);
  color: #2a1600;
  box-shadow: 0 3px 10px rgba(246,190,38,.35);
}
.btn-bonus:hover { background: #e5ac15; color: #2a1600; filter: brightness(1.08); }

.btn-outline {
  background: transparent;
  border: 2px solid var(--clr-btn-gold);
  color: var(--clr-btn-gold);
}
.btn-outline:hover { background: var(--clr-btn-gold); color: #2a1600; }

.btn-secondary {
  background: var(--clr-btn-gold);
  color: #2a1600;
}
.btn-secondary:hover { background: #e5ac15; color: #2a1600; }

.burger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
}

.burger-btn span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--clr-text-light);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.burger-btn.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger-btn.active span:nth-child(2) { opacity: 0; }
.burger-btn.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  background: var(--clr-header-dark);
  border-top: 1px solid rgba(255,255,255,.1);
}

.mobile-menu.open { display: block; }

.mobile-nav {
  list-style: none;
  padding: 12px 0;
}

.mobile-nav li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  color: var(--clr-text-light);
  font-size: .95rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background var(--transition), color var(--transition);
}

.mobile-nav li a svg { width: 18px; height: 18px; flex-shrink: 0; }
.mobile-nav li a:hover { background: rgba(246,190,38,.15); color: var(--clr-btn-gold); }

/* ========== HERO ========== */
.hero-section {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #1a0800;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26,8,0,.88) 0%, rgba(26,8,0,.5) 55%, rgba(26,8,0,.2) 100%);
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--clr-btn-gold);
  color: #2a1600;
  font-size: .78rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-title {
  font-family: 'Luckiest Guy', cursive;
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,.7);
  margin-bottom: 16px;
  letter-spacing: .04em;
  line-height: 1.1;
}

.hero-title em { color: var(--clr-btn-gold); font-style: normal; }

.hero-desc {
  color: #ffe9cc;
  font-size: 1.08rem;
  margin-bottom: 28px;
  line-height: 1.6;
}

.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 20px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.hero-stat {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(246,190,38,.3);
  border-radius: var(--radius-md);
  padding: 10px 18px;
  text-align: center;
  backdrop-filter: blur(4px);
}

.hero-stat-val {
  font-family: 'Luckiest Guy', cursive;
  font-size: 1.3rem;
  color: var(--clr-btn-gold);
  display: block;
  letter-spacing: .04em;
}

.hero-stat-lbl {
  font-size: .73rem;
  color: #ffe0b0;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ========== BREADCRUMBS ========== */
.breadcrumbs-wrap {
  background: rgba(69,34,12,.12);
  border-bottom: 1px solid rgba(69,34,12,.15);
  padding: 10px 0;
}

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

.breadcrumbs a {
  color: var(--clr-header);
  font-weight: 600;
}
.breadcrumbs a:hover { color: var(--clr-btn-gold); }

.breadcrumb-sep { color: var(--clr-header); opacity: .5; }
.breadcrumb-current { color: var(--clr-header); opacity: .75; }

/* ========== SECTION COMMON ========== */
.section { padding: 52px 0; }
.section-sm { padding: 32px 0; }

.section-title {
  font-family: 'Luckiest Guy', cursive;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--clr-header);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-title svg { width: 28px; height: 28px; color: var(--clr-btn-gold); }

.section-title .title-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--clr-btn-gold), transparent);
  margin-left: 12px;
}

/* ========== TABLE OF CONTENTS ========== */
.toc-block {
  background: var(--clr-bg-card);
  border: 2px solid var(--clr-btn-gold);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-bottom: 36px;
  box-shadow: var(--shadow-card);
}

.toc-title {
  font-family: 'Luckiest Guy', cursive;
  font-size: 1.1rem;
  color: var(--clr-header);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.toc-title svg { width: 20px; height: 20px; color: var(--clr-btn-gold); }

.toc-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 8px 20px;
}

.toc-list li a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--clr-header);
  font-size: .92rem;
  font-weight: 600;
  padding: 5px 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}

.toc-list li a svg { width: 16px; height: 16px; color: var(--clr-btn-gold); flex-shrink: 0; }
.toc-list li a:hover { background: rgba(246,190,38,.18); color: var(--clr-btn-gold); }

/* ========== DEMO GAME ========== */
.demo-block {
  background: var(--clr-header-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 36px;
}

.demo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: var(--clr-header);
  flex-wrap: wrap;
  gap: 10px;
}

.demo-title-wrap { display: flex; align-items: center; gap: 10px; }

.demo-game-title {
  font-family: 'Luckiest Guy', cursive;
  font-size: 1.1rem;
  color: var(--clr-text-light);
  letter-spacing: .04em;
}

.demo-iframe-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #000;
}

.demo-iframe-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.demo-iframe-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2a1006 0%, #1a0800 100%);
  color: var(--clr-text-light);
  gap: 16px;
}

.demo-iframe-placeholder svg { width: 64px; height: 64px; color: var(--clr-btn-gold); opacity: .7; }
.demo-iframe-placeholder p { font-size: .95rem; opacity: .7; }

.demo-footer {
  padding: 14px 20px;
  background: var(--clr-header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.demo-info { display: flex; gap: 16px; flex-wrap: wrap; }

.demo-info-item {
  font-size: .8rem;
  color: #ffe0b0;
  display: flex;
  align-items: center;
  gap: 4px;
}

.demo-info-item strong { color: var(--clr-btn-gold); }

/* ========== ADVANTAGES ========== */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 18px;
  margin-bottom: 36px;
}

.advantage-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 22px 18px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

.advantage-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.advantage-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--clr-header) 0%, var(--clr-header-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.advantage-icon svg { width: 26px; height: 26px; color: var(--clr-btn-gold); }

.advantage-card h3 {
  font-family: 'Luckiest Guy', cursive;
  font-size: .98rem;
  color: var(--clr-header);
  margin-bottom: 8px;
  letter-spacing: .03em;
}

.advantage-card p { font-size: .85rem; color: #4a2a0a; line-height: 1.55; margin: 0; }

/* ========== STRATEGIES ========== */
.strategies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
  margin-bottom: 36px;
}

.strategy-card {
  background: var(--clr-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--clr-border);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.strategy-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.strategy-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.strategy-img-placeholder {
  width: 100%;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.strategy-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }

.strategy-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 2px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.strategy-badge-beginner { background: rgba(60,230,56,.15); color: #1a7018; }
.strategy-badge-medium { background: rgba(246,190,38,.2); color: #8a5c00; }
.strategy-badge-advanced { background: rgba(220,50,50,.12); color: #8a1a1a; }

.strategy-card h3 {
  font-family: 'Luckiest Guy', cursive;
  font-size: 1.05rem;
  color: var(--clr-header);
  margin-bottom: 8px;
  letter-spacing: .03em;
}

.strategy-card p { font-size: .87rem; color: #4a2a0a; line-height: 1.55; flex: 1; margin-bottom: 16px; }

/* ========== CONTENT REVIEW BLOCK ========== */
.review-block {
  background: var(--clr-bg-card);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  margin-bottom: 36px;
  box-shadow: var(--shadow-card);
  overflow-wrap: break-word;
  word-break: break-word;
  border: 1px solid var(--clr-border);
}

.review-block h2 {
  font-family: 'Luckiest Guy', cursive;
  font-size: 1.5rem;
  color: var(--clr-header);
  margin-bottom: 16px;
  letter-spacing: .04em;
}

.review-block h3 {
  font-family: 'Luckiest Guy', cursive;
  font-size: 1.15rem;
  color: var(--clr-header);
  margin: 20px 0 10px;
}

.review-block h4 {
  font-family: 'Luckiest Guy', cursive;
  font-size: 1rem;
  color: var(--clr-header);
  margin: 16px 0 8px;
}

.review-block p { font-size: .97rem; color: #2a1600; line-height: 1.7; margin-bottom: 1rem; }
.review-block p:last-child { margin-bottom: 0; }

.review-block ul, .review-block ol {
  margin: 0 0 1rem 1.4rem;
  padding: 0;
}

.review-block li { font-size: .96rem; color: #2a1600; line-height: 1.65; margin-bottom: 6px; }

.review-block a { color: var(--clr-header); font-weight: 600; text-decoration: underline; }
.review-block a:hover { color: var(--clr-btn-gold); }

.review-block table {
  width: auto;
  min-width: 320px;
  max-width: 100%;
  margin: 16px auto;
  border-collapse: collapse;
  border: 2px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: table;
}

.review-block table th, .review-block table td {
  padding: 10px 16px;
  text-align: left;
  border: 1px solid var(--clr-border);
  font-size: .9rem;
}

.review-block table th {
  background: var(--clr-header);
  color: var(--clr-btn-gold);
  font-family: 'Luckiest Guy', cursive;
  letter-spacing: .04em;
  font-weight: normal;
}

.review-block table tr:nth-child(even) { background: rgba(188,165,109,.15); }
.review-block table tr:hover { background: rgba(246,190,38,.1); }

.review-block blockquote {
  border-left: 4px solid var(--clr-btn-gold);
  background: rgba(246,190,38,.1);
  padding: 14px 20px;
  margin: 16px 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.review-block blockquote p { font-style: italic; color: #3a1a00; }

.review-block img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  margin: 10px 0;
}

.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* ========== AUTHOR BLOCK ========== */
.author-block {
  background: var(--clr-bg-card);
  border: 2px solid var(--clr-header);
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  margin-bottom: 36px;
  box-shadow: var(--shadow-card);
  display: flex;
  gap: 22px;
  align-items: flex-start;
}

.author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--clr-btn-gold);
}

.author-avatar-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-header) 0%, var(--clr-header-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 3px solid var(--clr-btn-gold);
}

.author-avatar-placeholder svg { width: 38px; height: 38px; color: var(--clr-btn-gold); }

.author-info { flex: 1; }

.author-name {
  font-family: 'Luckiest Guy', cursive;
  font-size: 1.15rem;
  color: var(--clr-header);
  margin-bottom: 2px;
  letter-spacing: .03em;
}

.author-title {
  font-size: .85rem;
  color: #7a4a18;
  font-weight: 600;
  margin-bottom: 8px;
}

.author-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 10px;
}

.author-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .8rem;
  color: #5a3010;
}

.author-meta-item svg { width: 14px; height: 14px; color: var(--clr-btn-gold); }

.author-bio { font-size: .88rem; color: #3a1a00; line-height: 1.6; margin-bottom: 12px; }

.author-socials { display: flex; gap: 8px; flex-wrap: wrap; }

.author-social-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--clr-header);
  background: rgba(69,34,12,.1);
  border: 1px solid var(--clr-border);
  padding: 5px 12px;
  border-radius: 20px;
  transition: background var(--transition), color var(--transition);
}

.author-social-link svg { width: 14px; height: 14px; }
.author-social-link:hover { background: var(--clr-header); color: var(--clr-btn-gold); }

.author-dates {
  margin-top: 8px;
  font-size: .76rem;
  color: #7a5020;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ========== FOOTER ========== */
.site-footer {
  background: var(--clr-header);
  margin-top: auto;
  padding: 0;
}

.footer-top {
  padding: 36px 0 24px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 32px;
}

.footer-brand { }

.footer-logo { display: block; margin-bottom: 14px; }
.footer-logo img { height: 44px; width: auto; filter: brightness(1.1); }

.footer-desc {
  font-size: .86rem;
  color: #c8a870;
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-email {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--clr-btn-gold);
  font-size: .87rem;
}

.footer-email svg { width: 16px; height: 16px; }

.footer-col h4 {
  font-family: 'Luckiest Guy', cursive;
  font-size: .95rem;
  color: var(--clr-btn-gold);
  margin-bottom: 14px;
  letter-spacing: .05em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-links a {
  color: #c8a870;
  font-size: .86rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
}

.footer-links a svg { width: 13px; height: 13px; color: var(--clr-btn-gold); }
.footer-links a:hover { color: var(--clr-btn-gold); }

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

.footer-social-icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition);
}

.footer-social-icon svg { width: 18px; height: 18px; color: #c8a870; }
.footer-social-icon:hover { background: var(--clr-btn-gold); border-color: var(--clr-btn-gold); }
.footer-social-icon:hover svg { color: #2a1600; }

.footer-payments {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-payments-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-payments-label {
  font-size: .78rem;
  color: #9a7040;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
  white-space: nowrap;
}

.payment-badge {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-sm);
  padding: 5px 12px;
  font-size: .78rem;
  font-weight: 700;
  color: #e0c080;
  letter-spacing: .04em;
  white-space: nowrap;
}

.footer-trust {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

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

.trust-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: .73rem;
  font-weight: 700;
  color: #b8a080;
  letter-spacing: .04em;
  white-space: nowrap;
}

.trust-badge svg { width: 14px; height: 14px; color: var(--clr-btn-gold); }

.age-badge {
  background: rgba(220,50,50,.2);
  border: 1.5px solid rgba(220,50,50,.5);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 900;
  color: #ff8080;
  flex-shrink: 0;
}

.footer-flag { font-size: 1.4rem; }

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

.footer-provider img {
  height: 28px;
  width: auto;
  filter: brightness(.7) saturate(.8);
  opacity: .8;
}

.footer-bottom {
  padding: 16px 0;
  background: rgba(0,0,0,.25);
}

.footer-bottom-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copyright {
  font-size: .78rem;
  color: #8a6030;
  line-height: 1.6;
}

.footer-copyright strong { color: #c8a870; }

.footer-legal {
  font-size: .74rem;
  color: #7a5020;
  max-width: 580px;
  line-height: 1.55;
  text-align: right;
}

/* ========== STICKY WIDGET ========== */
.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--clr-header-dark);
  border-top: 2px solid var(--clr-btn-gold);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -4px 20px rgba(0,0,0,.35);
  transform: translateY(0);
  transition: transform var(--transition);
}

.sticky-widget.hidden { transform: translateY(100%); }

.sticky-widget-text {
  font-size: .9rem;
  color: var(--clr-text-light);
  font-weight: 600;
  flex: 1;
}

.sticky-widget-text span { color: var(--clr-btn-gold); }

.sticky-widget-close {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,.5);
  font-size: 1.2rem;
  padding: 4px 8px;
  line-height: 1;
  transition: color var(--transition);
}

.sticky-widget-close:hover { color: var(--clr-text-light); }

/* ========== SPACING HELPERS ========== */
.mt-section { margin-top: 36px; }
.mb-block { margin-bottom: 28px; }

/* ========== ANIMATED ELEMENTS ========== */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(60,230,56,.4); }
  50% { box-shadow: 0 0 0 8px rgba(60,230,56,0); }
}

.btn-play { animation: pulse-glow 2.2s infinite; }
.btn-play:hover { animation: none; }

@keyframes jackpot-flash {
  0%, 100% { opacity: 1; }
  50% { opacity: .7; }
}

.jackpot-ticker span { animation: jackpot-flash 1.5s ease-in-out infinite; }

@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-in {
  animation: fade-in-up .45s ease forwards;
}

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

/* ========== STRATEGY IMAGE COLORS ========== */
.strat-color-1 { background: linear-gradient(135deg, #45220c 0%, #8a4020 100%); }
.strat-color-2 { background: linear-gradient(135deg, #1a5c30 0%, #2e8a52 100%); }
.strat-color-3 { background: linear-gradient(135deg, #1a2a6c 0%, #2a4aa0 100%); }
.strat-color-4 { background: linear-gradient(135deg, #6c1a45 0%, #a02a6a 100%); }
.strat-color-5 { background: linear-gradient(135deg, #4a4a0a 0%, #8a8a18 100%); }
.strat-color-6 { background: linear-gradient(135deg, #1a4a6c 0%, #2a7aaa 100%); }

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

@media (max-width: 767px) {
  .header-nav { display: none; }
  .jackpot-ticker { display: none; }
  .header-cta { display: none; }
  .burger-btn { display: flex; }
  .mobile-menu-cta { display: flex; flex-direction: column; gap: 10px; margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.12); }
  .mobile-menu-cta .btn { justify-content: center; }

  .hero-section { min-height: 380px; }
  .hero-content { padding: 40px 0; }
  
  .author-block { flex-direction: column; align-items: center; text-align: center; }
  .author-meta { justify-content: center; }
  .author-socials { justify-content: center; }
  .author-dates { justify-content: center; }
  
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-brand { grid-column: auto; }
  .footer-legal { text-align: left; }
  .footer-bottom-inner { flex-direction: column; }
  
  .review-block { padding: 20px 16px; }
  .toc-block { padding: 18px 16px; }
  
  .strategies-grid { grid-template-columns: 1fr; }
  .advantages-grid { grid-template-columns: repeat(2, 1fr); }
  
  .sticky-widget { flex-wrap: wrap; }
  .sticky-widget-text { font-size: .82rem; }
}

@media (max-width: 480px) {
  .advantages-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 10px; }
  .hero-stat { padding: 8px 12px; }
}

/* ========== WORDPRESS OBFUSCATION ELEMENTS ========== */
#wpadminbar { display: none; }
.wp-caption { display: inline-block; }
.wp-block-group { display: block; }
.elementor-section { display: block; }
.wp-image-featured { display: block; }
.yoast-schema-graph { display: none; }
.wc-block-grid { display: grid; }
.wp-site-blocks { display: block; }
