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

:root {
  --clr-header: #12444b;
  --clr-header-dark: #0c3038;
  --clr-btn-secondary: #23a1d9;
  --clr-btn-primary: #dd55f4;
  --clr-bg: #4399d7;
  --clr-bg-dark: #3385c3;
  --clr-text: #ffffff;
  --clr-text-dark: #0e2d33;
  --clr-card: rgba(18,68,75,0.82);
  --clr-card-light: rgba(255,255,255,0.10);
  --clr-border: rgba(255,255,255,0.18);
  --clr-gold: #f7c948;
  --clr-silver: #bfc9d1;
  --clr-bronze: #e07b39;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow: 0 4px 32px rgba(18,68,75,0.38);
  --shadow-btn: 0 2px 18px rgba(221,85,244,0.38);
  --transition: 0.22s cubic-bezier(.4,0,.2,1);
  --font-main: 'Rajdhani', sans-serif;
}

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

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

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

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

a { color: var(--clr-btn-secondary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--clr-header-dark); }

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-main);
  font-weight: 700;
  line-height: 1.2;
  color: var(--clr-text);
  text-shadow: 0 2px 12px rgba(0,0,0,0.22);
}
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1rem; }
ul, ol { padding-left: 1.5rem; margin-bottom: 1rem; }
li { margin-bottom: 0.35rem; }

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

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

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

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

.section-title {
  text-align: center;
  margin-bottom: 2.2rem;
  position: relative;
}
.section-title::after {
  content: '';
  display: block;
  width: 64px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--clr-btn-primary), var(--clr-btn-secondary));
  margin: 0.6rem auto 0;
}

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px) scale(1.03); filter: brightness(1.1); }
.btn:active { transform: scale(0.97); }

.btn--primary {
  background: linear-gradient(135deg, #dd55f4 0%, #b020d8 100%);
  color: #fff;
  box-shadow: var(--shadow-btn);
}
.btn--secondary {
  background: linear-gradient(135deg, #23a1d9 0%, #1778a8 100%);
  color: #fff;
  box-shadow: 0 2px 14px rgba(35,161,217,0.38);
}
.btn--outline {
  background: transparent;
  color: var(--clr-btn-secondary);
  border: 2px solid var(--clr-btn-secondary);
}
.btn--outline:hover { background: var(--clr-btn-secondary); color: #fff; }
.btn--gold {
  background: linear-gradient(135deg, #f7c948 0%, #e09b10 100%);
  color: #12444b;
  box-shadow: 0 2px 14px rgba(247,201,72,0.42);
}
.btn--lg { padding: 14px 38px; font-size: 1.12rem; }
.btn--sm { padding: 7px 18px; font-size: 0.92rem; }

.xk9f2 { display: none; }
.wp7r3 { visibility: hidden; position: absolute; pointer-events: none; }
.qz4m8 { opacity: 0; width: 0; height: 0; overflow: hidden; }

header.site-header {
  background: var(--clr-header);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 24px rgba(0,0,0,0.32);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 10px;
  padding-bottom: 10px;
  flex-wrap: wrap;
}
.header-logo a { display: flex; align-items: center; }
.header-logo img { height: 60px; width: auto; }
.header-logo .logo-text {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.06em;
  text-shadow: 0 0 18px rgba(221,85,244,0.5);
}

.header-jackpot {
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(247,201,72,0.38);
  border-radius: var(--radius-md);
  padding: 5px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--clr-gold);
  text-shadow: 0 0 10px rgba(247,201,72,0.5);
  animation: jackpotPulse 2.4s ease-in-out infinite;
}
.header-jackpot svg { flex-shrink: 0; }

@keyframes jackpotPulse {
  0%,100% { box-shadow: 0 0 8px rgba(247,201,72,0.25); }
  50% { box-shadow: 0 0 22px rgba(247,201,72,0.55); }
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: center;
}
.header-nav li a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.88);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background var(--transition), color var(--transition);
}
.header-nav li a:hover, .header-nav li a.active {
  background: rgba(255,255,255,0.12);
  color: #fff;
}
.header-nav li a svg { width: 16px; height: 16px; opacity: 0.8; }

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

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 6px;
  transition: background var(--transition);
}
.burger:hover { background: rgba(255,255,255,0.2); }
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .burger { display: flex; }
  .header-nav-wrap {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--clr-header-dark);
    padding: 18px;
    z-index: 999;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  }
  .header-nav-wrap.open { display: block; }
  .header-nav {
    flex-direction: column;
    gap: 4px;
    align-items: stretch;
  }
  .header-nav li a { justify-content: flex-start; padding: 10px 14px; }
}
@media (max-width: 600px) {
  .header-inner { flex-wrap: nowrap; }
  .header-jackpot { display: none; }
}

.hero {
  background: linear-gradient(135deg, #0c3038 0%, #12444b 40%, #1a5a6a 100%);
  padding: 60px 0 40px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/img/jammin-jars-title.webp') center/cover no-repeat;
  opacity: 0.22;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 36px;
  align-items: center;
  flex-wrap: wrap;
}
.hero-content { flex: 1; min-width: 280px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(221,85,244,0.22);
  border: 1px solid rgba(221,85,244,0.45);
  border-radius: 100px;
  padding: 5px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #f0aaff;
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}
.hero-badge svg { width: 14px; height: 14px; }
.hero h1 { margin-bottom: 1rem; }
.hero-desc { font-size: 1.1rem; color: rgba(255,255,255,0.85); margin-bottom: 2rem; max-width: 520px; line-height: 1.65; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 2.4rem; }

.hero-tiles {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 0;
}
.hero-tile {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 110px;
  flex: 1;
  max-width: 160px;
}
.hero-tile__label { font-size: 0.78rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.07em; }
.hero-tile__value { font-size: 1.08rem; font-weight: 700; color: var(--clr-gold); }

.hero-image-wrap {
  flex: 0 0 340px;
  max-width: 100%;
  display: flex;
  justify-content: center;
}
.hero-image-wrap img {
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 48px rgba(0,0,0,0.5);
  max-height: 340px;
  object-fit: cover;
  width: 100%;
}

@media (max-width: 768px) {
  .hero-image-wrap { display: none; }
  .hero-inner { justify-content: center; }
  .hero-content { text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-tiles { justify-content: center; }
  .hero-tile { max-width: 140px; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-badge { margin-left: auto; margin-right: auto; }
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
}
.feature-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.3); }
.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(221,85,244,0.3), rgba(35,161,217,0.3));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-icon svg { width: 28px; height: 28px; color: #fff; }
.feature-card h3 { font-size: 1.1rem; margin: 0; }
.feature-card p { font-size: 0.92rem; color: rgba(255,255,255,0.8); margin: 0; }

.app-section { background: rgba(12,48,56,0.7); border-radius: var(--radius-lg); padding: 40px; margin: 0 0 32px; }
.app-inner { display: flex; gap: 36px; align-items: flex-start; flex-wrap: wrap; }
.app-phone-wrap { flex: 0 0 200px; display: flex; justify-content: center; }
.phone-frame {
  position: relative;
  width: 180px;
  height: 340px;
  background: #111;
  border-radius: 32px;
  border: 5px solid #333;
  box-shadow: 0 8px 48px rgba(0,0,0,0.6), inset 0 0 0 2px #222;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-frame::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 8px;
  background: #222;
  border-radius: 4px;
  z-index: 2;
}
.phone-frame img { width: 100%; height: 100%; object-fit: cover; }
.phone-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #1a5a6a 0%, #0c3038 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}
.phone-placeholder svg { width: 48px; height: 48px; color: var(--clr-btn-primary); }
.phone-placeholder span { font-size: 0.85rem; color: rgba(255,255,255,0.7); }

.app-info { flex: 1; min-width: 260px; }
.app-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin-bottom: 1.6rem; }
.app-table {
  width: 100%;
  min-width: 340px;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.app-table th, .app-table td {
  padding: 10px 14px;
  text-align: left;
  border: 1px solid rgba(255,255,255,0.15);
}
.app-table th { background: rgba(18,68,75,0.8); font-weight: 700; color: var(--clr-gold); }
.app-table tr:nth-child(even) td { background: rgba(255,255,255,0.04); }
.app-table td:first-child { color: rgba(255,255,255,0.7); font-weight: 600; }

.app-download-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.jackpots-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.jackpot-card {
  flex: 1;
  min-width: 240px;
  max-width: 360px;
  border-radius: var(--radius-md);
  padding: 28px 22px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.jackpot-card:hover { transform: translateY(-4px); }
.jackpot-card--gold {
  background: linear-gradient(135deg, #5a3900 0%, #3d2600 100%);
  border: 2px solid var(--clr-gold);
  box-shadow: 0 4px 32px rgba(247,201,72,0.3);
}
.jackpot-card--silver {
  background: linear-gradient(135deg, #2a3540 0%, #1c2530 100%);
  border: 2px solid var(--clr-silver);
  box-shadow: 0 4px 32px rgba(191,201,209,0.2);
}
.jackpot-card--bronze {
  background: linear-gradient(135deg, #4a2010 0%, #321508 100%);
  border: 2px solid var(--clr-bronze);
  box-shadow: 0 4px 32px rgba(224,123,57,0.25);
}
.jackpot-card__tier { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; opacity: 0.7; margin-bottom: 6px; }
.jackpot-card__name { font-size: 1.25rem; font-weight: 700; margin-bottom: 10px; }
.jackpot-card__amount {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1.2rem;
  text-shadow: 0 0 20px currentColor;
}
.jackpot-card--gold .jackpot-card__amount { color: var(--clr-gold); }
.jackpot-card--silver .jackpot-card__amount { color: var(--clr-silver); }
.jackpot-card--bronze .jackpot-card__amount { color: var(--clr-bronze); }
.jackpot-winners { display: flex; flex-direction: column; gap: 6px; }
.jackpot-winner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: 0.88rem;
}
.jackpot-winner__nick { font-weight: 600; }
.jackpot-winner__win { color: var(--clr-gold); font-weight: 700; }

.demo-section {
  background: rgba(12,48,56,0.7);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
}
.demo-frame-wrap {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto 24px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #000;
  aspect-ratio: 16/9;
}
.demo-frame-wrap iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  border: none;
}
.demo-placeholder {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: linear-gradient(135deg, #1a5a6a 0%, #0c3038 100%);
  color: rgba(255,255,255,0.8);
  cursor: pointer;
}
.demo-placeholder svg { width: 72px; height: 72px; color: var(--clr-btn-primary); }
.demo-placeholder span { font-size: 1.2rem; font-weight: 600; }
.demo-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

.bonuses-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.bonus-card {
  flex: 1;
  min-width: 270px;
  max-width: 380px;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.bonus-card:hover { transform: translateY(-4px); box-shadow: 0 8px 36px rgba(0,0,0,0.4); }
.bonus-card__header {
  background: linear-gradient(135deg, var(--clr-header-dark), var(--clr-header));
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.bonus-card__logo-wrap {
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.bonus-card__logo-wrap svg { width: 32px; height: 32px; color: var(--clr-gold); }
.bonus-card__casino-name { font-weight: 700; font-size: 1.1rem; color: #fff; }
.bonus-card__rating { font-size: 0.85rem; color: var(--clr-gold); }
.bonus-card__body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.bonus-amount {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--clr-btn-primary);
  text-shadow: 0 0 14px rgba(221,85,244,0.45);
}
.bonus-desc { font-size: 0.92rem; color: rgba(255,255,255,0.8); }
.bonus-details { display: flex; gap: 8px; flex-wrap: wrap; }
.bonus-tag {
  background: rgba(35,161,217,0.18);
  border: 1px solid rgba(35,161,217,0.35);
  border-radius: 100px;
  padding: 3px 11px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #7dd4f5;
}
.bonus-card__footer { padding: 0 20px 20px; }
.bonus-card__footer .btn { width: 100%; }

.bonuses-slider-wrap { display: none; }
@media (max-width: 700px) {
  .bonuses-grid { display: none; }
  .bonuses-slider-wrap {
    display: block;
    position: relative;
    overflow: hidden;
  }
  .bonuses-slider {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 12px;
  }
  .bonuses-slider::-webkit-scrollbar { height: 4px; }
  .bonuses-slider::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.3); border-radius: 2px; }
  .bonuses-slider .bonus-card {
    min-width: 300px;
    max-width: 300px;
    flex-shrink: 0;
    scroll-snap-align: start;
  }
}

.content-review {
  background: rgba(12,48,56,0.7);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 0;
}
.content-review .review-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 2rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid rgba(255,255,255,0.14);
  flex-wrap: wrap;
}
.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-btn-primary), var(--clr-btn-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.author-info__name { font-weight: 700; color: #fff; }
.author-info__bio { font-size: 0.88rem; color: rgba(255,255,255,0.65); }
.author-info__bio a { color: var(--clr-btn-secondary); }

.content-body h2 { color: #fff; font-size: 1.55rem; margin-top: 2rem; margin-bottom: 0.8rem; padding-bottom: 0.5rem; border-bottom: 2px solid rgba(255,255,255,0.12); }
.content-body h3 { color: #e5e5e5; font-size: 1.25rem; margin-top: 1.5rem; margin-bottom: 0.6rem; }
.content-body h4 { color: #d0d0d0; font-size: 1.05rem; margin-top: 1.2rem; margin-bottom: 0.5rem; }
.content-body p { color: rgba(255,255,255,0.88); line-height: 1.75; margin-bottom: 1.1rem; }
.content-body a { color: var(--clr-btn-secondary); text-decoration: underline; }
.content-body a:hover { color: var(--clr-btn-primary); }
.content-body ul, .content-body ol { color: rgba(255,255,255,0.88); margin-bottom: 1.1rem; }
.content-body li { margin-bottom: 0.4rem; line-height: 1.65; }
.content-body strong, .content-body b { color: #fff; }
.content-body em, .content-body i { color: rgba(255,255,255,0.75); }
.content-body blockquote {
  border-left: 4px solid var(--clr-btn-primary);
  background: rgba(221,85,244,0.1);
  padding: 14px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.2rem 0;
  color: rgba(255,255,255,0.85);
  font-style: italic;
}
.content-body table { width: 100%; border-collapse: collapse; margin: 1.2rem 0; overflow-x: auto; display: block; }
.content-body table th, .content-body table td { padding: 10px 14px; border: 1px solid rgba(255,255,255,0.15); text-align: left; }
.content-body table th { background: rgba(18,68,75,0.8); font-weight: 700; color: var(--clr-gold); }
.content-body table tr:nth-child(even) td { background: rgba(255,255,255,0.04); }
.content-body img { border-radius: var(--radius-sm); margin: 1rem auto; }
.content-body hr { border: none; border-top: 1px solid rgba(255,255,255,0.15); margin: 1.8rem 0; }

.faq { max-width: 860px; margin: 0 auto; }
.faq-item {
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--clr-card);
  transition: box-shadow var(--transition);
}
.faq-item.open { box-shadow: 0 4px 24px rgba(0,0,0,0.3); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px;
  font-family: var(--font-main);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  text-align: left;
  transition: background var(--transition);
}
.faq-question:hover { background: rgba(255,255,255,0.05); }
.faq-question.active { color: var(--clr-btn-secondary); background: rgba(35,161,217,0.08); }
.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: rgba(255,255,255,0.1);
  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(45deg); background: rgba(35,161,217,0.3); }
.faq-icon svg { width: 12px; height: 12px; color: #fff; }
.faq-answer { display: none; padding: 10px 22px 18px; color: rgba(255,255,255,0.82); line-height: 1.7; font-size: 0.97rem; }
.faq-answer.open { display: block; }
.faq-answer a { color: var(--clr-btn-secondary); }

footer.site-footer {
  background: var(--clr-header);
  padding: 48px 0 28px;
  margin-top: auto;
  border-top: 2px solid rgba(255,255,255,0.08);
}
.footer-top {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { flex: 0 0 200px; }
.footer-brand img { height: 60px; width: auto; margin-bottom: 12px; }
.footer-brand-link {display: block;width: fit-content;}
.footer-brand .footer-tagline { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.5; }
.footer-links { flex: 1; min-width: 180px; }
.footer-links h4 { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.5); margin-bottom: 14px; }
.footer-nav { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 7px; }
.footer-nav a { color: rgba(255,255,255,0.75); font-size: 0.93rem; transition: color var(--transition); }
.footer-nav a:hover { color: #fff; }
.footer-contact { flex: 0 0 220px; }
.footer-contact h4 { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.5); margin-bottom: 14px; }
.footer-contact a { color: rgba(255,255,255,0.75); font-size: 0.93rem; display: block; margin-bottom: 6px; }
.footer-contact a:hover { color: #fff; }

.footer-mid {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-section-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.4); margin-bottom: 8px; }
.footer-payments { flex: 1; }
.payment-logos { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.payment-logo {
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 5px 12px;
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.14);
}

.social-links { display: flex; gap: 10px; }
.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.8);
  transition: background var(--transition), transform var(--transition);
  border: 1px solid rgba(255,255,255,0.14);
}
.social-link:hover { background: var(--clr-btn-secondary); color: #fff; transform: translateY(-2px); }
.social-link svg { width: 18px; height: 18px; }

.footer-trust { flex: 1; }
.trust-logos { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.trust-logo {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-sm);
  padding: 5px 12px;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
}
.trust-logo--age {
  background: linear-gradient(135deg, #b00020, #7a0016);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  border-color: transparent;
}

.footer-provider { margin-top: 16px; }
.provider-logos { display: flex; gap: 12px; align-items: center; }
.provider-logo img { height: 28px; width: auto; opacity: 0.75; filter: brightness(1.1); transition: opacity var(--transition); }
.provider-logo img:hover { opacity: 1; }
.license-logo {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-sm);
  padding: 5px 12px;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 6px;
}
.license-logo svg { width: 14px; height: 14px; color: var(--clr-gold); }
.flag-au {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
}
.flag-au img {height: 20px;width: auto;}
.footer-bottom {
  text-align: center;
}
.footer-copyright { font-size: 0.85rem; color: rgba(255,255,255,0.45); margin-bottom: 8px; }
.footer-legal { font-size: 0.8rem; color: rgba(255,255,255,0.35); line-height: 1.6; max-width: 800px; margin: 0 auto; }

.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  background: linear-gradient(90deg, #0c3038dd, #12444bdd);
  backdrop-filter: blur(10px);
  padding: 10px 20px;
  border-top: 2px solid rgba(221,85,244,0.45);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.35);
  animation: slideUp 0.5s 1.2s both;
}
@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}
.sticky-widget-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 640px;
  width: 100%;
  justify-content: space-between;
}
.sticky-widget-text { font-size: 0.95rem; font-weight: 600; color: rgba(255,255,255,0.9); }
.sticky-widget-text strong { color: var(--clr-gold); }
.sticky-widget-actions { display: flex; gap: 10px; align-items: center; }
.sticky-widget-close {
  width: 30px;
  height: 30px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: background var(--transition);
  flex-shrink: 0;
}
.sticky-widget-close:hover { background: rgba(255,255,255,0.2); }
.sticky-widget-close svg { width: 14px; height: 14px; }

body.widget-closed .sticky-widget { display: none; }
body { padding-bottom: 64px; }
body.widget-closed { padding-bottom: 0; }

.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.divider {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--clr-btn-secondary), var(--clr-btn-primary), transparent);
  border: none;
  margin: 0;
  opacity: 0.5;
}

.info-page { background: rgba(12,48,56,0.7); border-radius: var(--radius-lg); padding: 40px; }
.info-page h1 { margin-bottom: 1.6rem; }
.info-page h2 { font-size: 1.35rem; margin: 1.8rem 0 0.7rem; color: var(--clr-btn-secondary); }
.info-page p { color: rgba(255,255,255,0.85); line-height: 1.75; }
.info-page ul { color: rgba(255,255,255,0.85); }
.info-page li { margin-bottom: 0.4rem; }
.info-page a { color: var(--clr-btn-secondary); text-decoration: underline; }

@media (max-width: 900px) {
  .app-section { padding: 24px 18px; }
  .app-inner { flex-direction: column; align-items: center; }
  .demo-section { padding: 24px 18px; }
  .content-review { padding: 24px 18px; }
  .jackpot-card { max-width: 100%; }
}
@media (max-width: 768px) {
.header-jackpot {display: none;}
}
@media (max-width: 600px) {
  .section { padding: 36px 0; }
  .footer-top { flex-direction: column; }
  .footer-brand { flex: 0 0 auto; }
  .sticky-widget-text { font-size: 0.82rem; }
  .hero-tile { min-width: 90px; }
  .info-page { padding: 22px 14px; }
  .footer-contact {flex: none;}
}
@media (max-width: 480px) {
.demo-placeholder svg {display: none;}
  .content-review { padding: 20px 16px; }

}

@media (max-width: 420px) {
.header-actions .btn--primary{display: none;}
.app-info {width: 280px;}
}
.wp-content-dummy { display: none !important; }
.elementor-widget-wrap { display: none !important; }
.yoast-schema-graph { display: none !important; }
.wp-block-dummy { display: none !important; }
