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

:root {
  --clr-header: #704319;
  --clr-header-dark: #5a3414;
  --clr-btn-play: #1c9221;
  --clr-btn-play-hover: #157a19;
  --clr-btn-bonus: #fded03;
  --clr-btn-bonus-hover: #e0d400;
  --clr-bg: #8063b7;
  --clr-bg-dark: #6a50a0;
  --clr-bg-card: rgba(255,255,255,0.1);
  --clr-bg-card-hover: rgba(255,255,255,0.18);
  --clr-text: #fff;
  --clr-text-muted: rgba(255,255,255,0.75);
  --clr-accent: #fded03;
  --clr-border: rgba(255,255,255,0.2);
  --ff-heading: 'Bebas Neue', sans-serif;
  --ff-body: 'Open Sans', sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.3);
  --transition: 0.25s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-heading);
  letter-spacing: 0.04em;
  line-height: 1.15;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); color: var(--clr-accent); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); color: var(--clr-accent); margin-bottom: 1rem; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); color: #fff; margin-bottom: 0.75rem; }
h4 { font-size: 1.2rem; color: #fff; }

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

.x7b2k { display: none !important; }
.wp-block-jb9m { visibility: hidden; height: 0; overflow: hidden; }

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

.container-fluid-x {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

.section-gap { padding: 56px 0; }
.section-gap-sm { padding: 32px 0; }

.card-x {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 24px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  backdrop-filter: blur(6px);
}
.card-x:hover {
  background: var(--clr-bg-card-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.btn-x {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: var(--ff-heading);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn-x:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.3); }
.btn-x:active { transform: translateY(0); }

.btn-play {
  background: var(--clr-btn-play);
  color: #fff;
}
.btn-play:hover { background: var(--clr-btn-play-hover); color: #fff; }

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

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

.badge-x {
  display: inline-block;
  background: var(--clr-accent);
  color: #1a1a1a;
  font-family: var(--ff-heading);
  font-size: 0.85rem;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.05em;
}

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

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

.header-logo img { height: 52px; width: auto; }
.header-logo { flex-shrink: 0; }

.jackpot-ticker {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(253,237,3,0.4);
  border-radius: 50px;
  padding: 6px 16px;
  font-family: var(--ff-heading);
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: var(--clr-accent);
  flex-shrink: 0;
}
.jackpot-ticker-label { color: rgba(255,255,255,0.7); font-size: 0.82rem; font-family: var(--ff-body); font-weight: 600; }
.jackpot-amount { font-size: 1.25rem; color: var(--clr-accent); }

.header-nav { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.header-nav a {
  display: flex; align-items: center; gap: 5px;
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.header-nav a:hover { color: var(--clr-accent); background: rgba(255,255,255,0.08); }
.header-nav a svg { width: 16px; height: 16px; flex-shrink: 0; }

.header-cta { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.header-cta .btn-x { padding: 9px 20px; font-size: 1rem; }

.burger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.burger-btn span {
  display: block; width: 26px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition);
}
.burger-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.active span:nth-child(2) { opacity: 0; }
.burger-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--clr-header-dark);
  padding: 16px;
  gap: 4px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background var(--transition);
}
.mobile-nav a:hover { background: rgba(255,255,255,0.08); color: var(--clr-accent); }
.mobile-nav a svg { width: 18px; height: 18px; flex-shrink: 0; }

.mobile-nav-cta { display: flex; flex-direction: column; gap: 8px; margin-top: 12px; }
.mobile-nav .mobile-nav-cta a.btn-x {
  justify-content: center;
  padding: 12px 20px;
  font-size: 1rem;
  border-bottom: none;
}

@media (max-width: 900px) {
  .header-nav { display: none; }
  .header-cta { display: none; }
  .burger-btn { display: flex; }
}

/* ===================== HERO ===================== */
#hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 60px 0 40px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/images/banner.jpg');
  background-size: cover;
  background-position: center top;
  filter: brightness(0.45);
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(112,67,25,0.7) 0%, rgba(128,99,183,0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-intro { max-width: 720px; margin-bottom: 40px; }
.hero-intro h1 { margin-bottom: 16px; text-shadow: 0 2px 12px rgba(0,0,0,0.5); }
.hero-intro p { font-size: 1.1rem; color: rgba(255,255,255,0.9); max-width: 560px; }

.hero-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
  margin-bottom: 36px;
}

.hero-tile {
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(253,237,3,0.35);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  text-align: center;
  backdrop-filter: blur(4px);
}
.hero-tile-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 4px;
}
.hero-tile-value {
  font-family: var(--ff-heading);
  font-size: 1.4rem;
  color: var(--clr-accent);
  letter-spacing: 0.04em;
}

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

/* ===================== BREADCRUMBS ===================== */
#breadcrumbs {
  background: rgba(0,0,0,0.2);
  border-bottom: 1px solid var(--clr-border);
  padding: 10px 0;
}
.breadcrumbs-list {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  flex-wrap: wrap;
  font-size: 0.85rem;
}
.breadcrumbs-list li { display: flex; align-items: center; gap: 6px; }
.breadcrumbs-list li::after {
  content: '›';
  color: rgba(255,255,255,0.4);
}
.breadcrumbs-list li:last-child::after { display: none; }
.breadcrumbs-list a { color: rgba(255,255,255,0.7); }
.breadcrumbs-list a:hover { color: var(--clr-accent); }
.breadcrumbs-list span { color: var(--clr-accent); font-weight: 600; }

/* ===================== TOC ===================== */
#toc {
  background: rgba(0,0,0,0.25);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 28px 32px;
}
#toc h2 { font-size: 1.6rem; margin-bottom: 16px; }
.toc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 10px;
}
.toc-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  font-weight: 600;
  transition: background var(--transition), color var(--transition);
}
.toc-item:hover { background: rgba(253,237,3,0.15); color: var(--clr-accent); }
.toc-item svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--clr-accent); }
.toc-item span { color: var(--clr-accent); font-size: 0.8rem; margin-left: auto; }

/* ===================== DEMO GAME ===================== */
#demo-game { text-align: center; }
.demo-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid rgba(253,237,3,0.4);
  box-shadow: 0 0 40px rgba(253,237,3,0.15);
  background: #000;
  margin-bottom: 20px;
}
.demo-wrapper iframe {
  width: 100%;
  height: 540px;
  border: none;
  display: block;
}
@media (max-width: 600px) { .demo-wrapper iframe { height: 320px; } }
.demo-overlay {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(3px);
  z-index: 10;
}
.demo-buttons { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-top: 16px; }

/* ===================== VIDEO ===================== */
#video-block .video-wrapper {
  position: relative;
  padding-top: 56.25%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow);
}
#video-block .video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ===================== BONUSES ===================== */
#bonuses h2 { text-align: center; }
.bonuses-intro { text-align: center; color: var(--clr-text-muted); margin-bottom: 32px; }

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

.bonus-card {
  background: linear-gradient(135deg, rgba(112,67,25,0.5), rgba(128,99,183,0.4));
  border: 1px solid rgba(253,237,3,0.35);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.bonus-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(0,0,0,0.4); }

.bonus-card-header { display: flex; align-items: center; justify-content: space-between; }
.bonus-casino-name { font-family: var(--ff-heading); font-size: 1.4rem; color: #fff; letter-spacing: 0.04em; }
.bonus-rating { display: flex; align-items: center; gap: 4px; }
.bonus-rating-stars { color: var(--clr-accent); font-size: 1rem; }
.bonus-rating-val { font-size: 0.85rem; color: rgba(255,255,255,0.7); }

.bonus-offer {
  background: rgba(253,237,3,0.12);
  border: 1px solid rgba(253,237,3,0.3);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  text-align: center;
}
.bonus-offer-amount {
  font-family: var(--ff-heading);
  font-size: 2rem;
  color: var(--clr-accent);
  letter-spacing: 0.04em;
}
.bonus-offer-desc { font-size: 0.85rem; color: rgba(255,255,255,0.75); }

.bonus-perks { display: flex; flex-direction: column; gap: 6px; }
.bonus-perk {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.88rem; color: rgba(255,255,255,0.85);
}
.bonus-perk::before {
  content: '✓';
  width: 18px; height: 18px;
  background: var(--clr-btn-play);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1;
  text-align: center;
}

.bonus-code {
  background: rgba(0,0,0,0.25);
  border: 1px dashed rgba(253,237,3,0.4);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-family: monospace;
  font-size: 0.9rem;
  color: var(--clr-accent);
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
}

.bonus-card .btn-x { width: 100%; justify-content: center; }
.bonus-disclaimer { font-size: 0.75rem; color: rgba(255,255,255,0.45); text-align: center; margin-top: 4px; }

/* ===================== CONTENT REVIEW ===================== */
#content-review {
  background: rgba(0,0,0,0.2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 36px 40px;
}
@media (max-width: 768px) { #content-review { padding: 24px 20px; } }

.content-block h2, .content-block h3, .content-block h4 { margin-top: 1.5em; margin-bottom: 0.6em; }
.content-block p { margin-bottom: 1em; color: rgba(255,255,255,0.9); }
.content-block ul, .content-block ol {
  margin: 0.8em 0 1em 1.4em;
  color: rgba(255,255,255,0.85);
}
.content-block li { margin-bottom: 0.4em; }
.content-block table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2em auto;
  font-size: 0.92rem;
  overflow-x: auto;
  display: block;
}
.content-block table th {
  background: rgba(112,67,25,0.7);
  color: #fff;
  padding: 10px 14px;
  text-align: left;
  border: 1px solid rgba(255,255,255,0.15);
  font-weight: 700;
}
.content-block table td {
  padding: 9px 14px;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
  vertical-align: top;
}
.content-block table tr:nth-child(even) td { background: rgba(255,255,255,0.05); }
.content-block strong { color: var(--clr-accent); }
.content-block a { color: var(--clr-accent); text-decoration: underline; }
.content-block blockquote {
  border-left: 4px solid var(--clr-accent);
  padding: 12px 20px;
  background: rgba(253,237,3,0.08);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.2em 0;
  font-style: italic;
  color: rgba(255,255,255,0.85);
}
.content-block hr {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.15);
  margin: 2em 0;
}

/* ===================== FAQ ===================== */
#faq h2 { text-align: center; margin-bottom: 8px; }
.faq-intro { text-align: center; color: var(--clr-text-muted); margin-bottom: 36px; }

.faq-list { display: flex; flex-direction: column; gap: 10px; }

.faq-item {
  background: rgba(0,0,0,0.2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  padding: 18px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: background var(--transition);
}
.faq-question:hover { background: rgba(255,255,255,0.06); }
.faq-question.active { background: rgba(253,237,3,0.08); }

.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: rgba(253,237,3,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--transition), background var(--transition);
}
.faq-question.active .faq-icon { transform: rotate(180deg); background: var(--clr-accent); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding var(--transition);
}
.faq-answer.open {
  max-height: 600px;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* ===================== AUTHOR ===================== */
#author {
  background: rgba(112,67,25,0.25);
  border: 1px solid rgba(253,237,3,0.25);
  border-radius: var(--radius);
  padding: 36px;
}
.author-inner {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 600px) { .author-inner { grid-template-columns: 1fr; } }

.author-avatar {
  width: 140px; height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--clr-accent);
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
}
.author-name { font-family: var(--ff-heading); font-size: 1.8rem; color: var(--clr-accent); letter-spacing: 0.04em; margin-bottom: 4px; }
.author-title { font-size: 0.9rem; color: rgba(255,255,255,0.65); font-weight: 600; margin-bottom: 12px; }
.author-meta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 16px; }
.author-meta-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.85rem; color: rgba(255,255,255,0.7);
}
.author-meta-item svg { width: 15px; height: 15px; color: var(--clr-accent); }
.author-bio { font-size: 0.92rem; color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: 16px; }
.author-dates { font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.author-socials { display: flex; gap: 10px; margin-top: 12px; }
.author-social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: background var(--transition);
}
.author-social-link:hover { background: var(--clr-accent); color: #1a1a1a; }
.author-social-link svg { width: 18px; height: 18px; }

/* ===================== FOOTER ===================== */
#site-footer {
  background: var(--clr-header);
  margin-top: auto;
  padding: 48px 0 0;
  border-top: 3px solid rgba(253,237,3,0.3);
}

.footer-top {
  display: grid;
  grid-template-columns: 220px 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 550px) { .footer-top { grid-template-columns: 1fr; } }

.footer-brand {}
.footer-brand-logo { height: 52px; width: auto; margin-bottom: 14px; }
.footer-brand-desc { font-size: 0.82rem; color: rgba(255,255,255,0.6); line-height: 1.6; }

.footer-col h4 {
  font-family: var(--ff-heading);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  color: var(--clr-accent);
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--clr-accent); }

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

.footer-logos-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.footer-logo-item {
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  font-weight: 700;
  letter-spacing: 0.04em;
  min-width: 64px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.12);
  transition: background var(--transition);
}
.footer-logo-item:hover { background: rgba(255,255,255,0.15); color: #fff; }
.footer-logo-item img { height: 22px; width: auto; max-width: 120px; object-fit: contain; }

.footer-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.footer-trust-badge {
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  font-weight: 700;
  letter-spacing: 0.04em;
}
.footer-trust-badge.age-badge {
  background: #c0392b;
  color: #fff;
  border-color: #c0392b;
}

.footer-email { text-align: center; margin-bottom: 16px; }
.footer-email a { color: var(--clr-accent); font-size: 0.9rem; }

.footer-social-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
}
.footer-social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: background var(--transition), color var(--transition);
}
.footer-social-link:hover { background: var(--clr-accent); color: #1a1a1a; }
.footer-social-link svg { width: 18px; height: 18px; }

.footer-bottom {
  background: var(--clr-header-dark);
  padding: 20px 16px;
  text-align: center;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.45); line-height: 1.7; }
.footer-bottom p + p { margin-top: 8px; }
.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: var(--clr-accent); }
.footer-flag { font-size: 1.4rem; vertical-align: middle; }

/* ===================== STICKY WIDGET ===================== */
#sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(90deg, var(--clr-header) 0%, #5a3414 50%, var(--clr-header) 100%);
  border-top: 2px solid var(--clr-accent);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.4);
  transform: translateY(0);
  transition: transform 0.4s ease;
}
#sticky-widget.hidden { transform: translateY(100%); }
.widget-text { flex: 1; min-width: 0; }
.widget-title {
  font-family: var(--ff-heading);
  font-size: 1.1rem;
  color: var(--clr-accent);
  letter-spacing: 0.04em;
}
.widget-sub { font-size: 0.8rem; color: rgba(255,255,255,0.65); }
.widget-close {
  background: rgba(255,255,255,0.1);
  border: none;
  color: rgba(255,255,255,0.6);
  width: 28px; height: 28px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  transition: background var(--transition);
}
.widget-close:hover { background: rgba(255,255,255,0.2); color: #fff; }

@media (max-width: 480px) {
  #sticky-widget { flex-wrap: wrap; }
  .widget-text { width: 100%; }
}

/* ===================== INFO PAGES ===================== */
.info-content {
  background: rgba(0,0,0,0.2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 40px 48px;
  max-width: 860px;
  margin: 0 auto;
}
@media (max-width: 768px) { .info-content { padding: 24px 20px; } }
.info-content h1 { margin-bottom: 24px; }
.info-content h2 { margin-top: 2em; }
.info-content p { color: rgba(255,255,255,0.85); margin-bottom: 1em; }
.info-content ul, .info-content ol { margin: 0.8em 0 1em 1.4em; color: rgba(255,255,255,0.85); }
.info-content li { margin-bottom: 0.4em; }
.info-content a { color: var(--clr-accent); }

/* ===================== DIVIDER ===================== */
.section-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--clr-border) 30%, var(--clr-border) 70%, transparent);
  margin: 0;
}

/* ===================== PROVIDER BADGE ===================== */
.provider-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 6px 16px;
}
.provider-badge img { height: 24px; width: auto; }
.provider-badge span { font-size: 0.82rem; color: rgba(255,255,255,0.65); font-weight: 600; }

/* ===================== SCROLL ANIMATIONS ===================== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
}

/* ===================== WP COMPAT STUBS ===================== */
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.8em; color: rgba(255,255,255,0.5); }
.alignleft { float: left; margin-right: 16px; }
.alignright { float: right; margin-left: 16px; }
.aligncenter { display: block; margin: 0 auto; }
.wp-block-image { margin-bottom: 1em; }
.elementor-widget-container {}
.e-con-inner {}
.elementor-section {}
