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

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

:root {
  --c-header: #08326f;
  --c-header-dark: #061f47;
  --c-btn-green: #00ff30;
  --c-btn-gold: #feb821;
  --c-bg: #1e7fa8;
  --c-bg-dark: #155c7a;
  --c-bg-card: #0d4d6e;
  --c-text: #ffffff;
  --c-text-dark: #0d1a2e;
  --c-accent: #00d4ff;
  --c-border: rgba(255,255,255,0.15);
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.35);
}

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

body {
  font-family: 'Open Sans', sans-serif;
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1px;
  line-height: 1.2;
}

a { color: var(--c-btn-green); text-decoration: none; transition: opacity .2s; }
a:hover { opacity: .8; }
img { max-width: 100%; display: block; }

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

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

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -8px;
}

.col { padding: 0 8px; }
.col-12 { width: 100%; }
.col-6 { width: 50%; }
.col-4 { width: 33.333%; }
.col-3 { width: 25%; }
.col-8 { width: 66.666%; }

@media (max-width: 768px) {
  .col-6, .col-4, .col-3, .col-8 { width: 100%; }
}
@media (max-width: 992px) {
  .col-4 { width: 50%; }
  .col-3 { width: 50%; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: 6px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s, filter .15s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.4); filter: brightness(1.1); opacity: 1; }
.btn:active { transform: translateY(0); }

.btn--gold { background: var(--c-btn-gold); color: #0d1a2e; }
.btn--green { background: var(--c-btn-green); color: #0d1a2e; }
.btn--outline { background: transparent; color: var(--c-text); border: 2px solid var(--c-btn-green); }
.btn--outline:hover { background: var(--c-btn-green); color: #0d1a2e; }
.btn--sm { padding: 7px 16px; font-size: .9rem; }
.btn--lg { padding: 14px 32px; font-size: 1.25rem; }
.btn--full { width: 100%; }

.box {
  background: rgba(8,50,111,0.55);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 20px;
  backdrop-filter: blur(6px);
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--c-btn-gold);
  text-align: center;
  margin-bottom: 28px;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
}
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--c-btn-green);
  margin: 8px auto 0;
  border-radius: 2px;
}

.tag {
  display: inline-block;
  background: rgba(0,255,48,0.15);
  color: var(--c-btn-green);
  border: 1px solid rgba(0,255,48,0.3);
  padding: 2px 10px;
  border-radius: 20px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .5px;
}

.site-header {
  background: var(--c-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: 12px;
  padding: 10px 0;
  flex-wrap: nowrap;
}

.header-logo img { height: 48px; width: auto; object-fit: contain; }

.header-winner {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(254,184,33,0.3);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: .78rem;
  flex-shrink: 0;
  animation: wblink 2s infinite;
}
.header-winner svg { width: 14px; height: 14px; fill: var(--c-btn-gold); flex-shrink: 0; }
.hw-label { color: rgba(255,255,255,0.65); }
.hw-nick { color: var(--c-btn-gold); font-weight: 700; }
.hw-amount { color: var(--c-btn-green); font-weight: 700; }

@keyframes wblink {
  0%, 100% { border-color: rgba(254,184,33,0.3); }
  50% { border-color: rgba(254,184,33,0.8); }
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: nowrap;
}

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

.nav-links a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(255,255,255,0.85);
  font-size: .82rem;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.nav-links a:hover { background: rgba(255,255,255,0.1); color: #fff; opacity: 1; }
.nav-links svg { width: 15px; height: 15px; flex-shrink: 0; }

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

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  order: 10;
}
.burger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: transform .25s, opacity .25s; }
.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); }

.mobile-menu {
  display: none;
  background: var(--c-header-dark);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 12px 0;
}
.mobile-menu .nav-links { flex-direction: column; align-items: flex-start; padding: 0 16px; gap: 4px; }
.mobile-menu .nav-links a { width: 100%; font-size: .95rem; padding: 10px 14px; }
.mobile-menu.open { display: block; }

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

@media (max-width: 480px) {
  .header-logo img { height: 38px; }
  .header-btns .btn { padding: 7px 12px; font-size: .85rem; }
  .slot-demo-overlay img {display: none;}
}

.hero-section {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-bottom: 32px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('big-bass-bonanza-hero.avif') center/cover no-repeat;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,50,111,0.88) 0%, rgba(8,50,111,0.55) 50%, rgba(8,50,111,0.15) 100%);
}

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

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: #fff;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 16px;
}

.hero-content h1 span { color: var(--c-btn-gold); }

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 28px;
  line-height: 1.65;
  max-width: 440px;
}

.hero-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 10px 18px;
}
.hero-stat strong { display: block; font-size: 1.4rem; font-family: 'Bebas Neue', sans-serif; color: var(--c-btn-gold); }
.hero-stat span { font-size: .72rem; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: .5px; }

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

@media (max-width: 768px) {
  .hero-section { min-height: 420px; }
  .hero-content { padding: 40px 0; }
  .hero-bg::after { background: rgba(8,50,111,0.78); }
}

.game-info-layout {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.game-table-wrap { flex: 1; min-width: 280px; }
.game-demo-wrap { flex: 0 0 360px; }

@media (max-width: 900px) {
  .game-info-layout { flex-direction: column; }
  .game-demo-wrap { width: 100%; flex: none; }
}

.game-details-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(8,50,111,0.55);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--c-border);
}

.game-details-table caption {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: var(--c-btn-gold);
  padding: 14px 16px;
  text-align: left;
  background: rgba(8,50,111,0.8);
  letter-spacing: 1px;
}

.game-details-table tr {
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background .15s;
}
.game-details-table tr:hover { background: rgba(255,255,255,0.04); }
.game-details-table tr:last-child { border-bottom: none; }

.game-details-table td {
  padding: 10px 16px;
  font-size: .88rem;
  vertical-align: middle;
}

.game-details-table td:first-child {
  color: rgba(255,255,255,0.65);
  width: 48%;
  display: flex;
  align-items: center;
  gap: 8px;
}

.game-details-table td:last-child {
  color: #fff;
  font-weight: 600;
}

.tbl-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--c-accent);
  fill: currentColor;
}

.tbl-rtp { color: var(--c-btn-green) !important; }
.tbl-maxwin { color: var(--c-btn-gold) !important; }

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

.demo-card {
  background: rgba(8,50,111,0.7);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.demo-card-header {
  background: rgba(0,0,0,0.3);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.demo-card-header h3 {
  font-size: 1.1rem;
  color: var(--c-btn-gold);
}

.demo-frame-wrap {
  position: relative;
  background: #000;
  aspect-ratio: 4/3;
  overflow: hidden;
}

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

.demo-frame-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #0a1e3d 0%, #0d3a60 100%);
  gap: 14px;
}

.demo-frame-placeholder img { width: 120px; border-radius: 8px; opacity: .85; }
.demo-frame-placeholder p { color: rgba(255,255,255,0.65); font-size: .85rem; text-align: center; padding: 0 16px; }

.demo-card-footer {
  padding: 14px 16px;
  display: flex;
  gap: 10px;
  justify-content: center;
}

.advantages-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.adv-tile {
  flex: 1 1 200px;
  background: rgba(8,50,111,0.55);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
}

.adv-tile:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,0.4); }

.adv-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 12px;
  background: rgba(0,212,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0,212,255,0.25);
}

.adv-icon svg { width: 22px; height: 22px; fill: var(--c-accent); }

.adv-tile h4 { font-size: 1rem; color: var(--c-btn-gold); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .5px; }
.adv-tile p { font-size: .8rem; color: rgba(255,255,255,0.72); line-height: 1.5; }

.bonuses-section { margin-bottom: 40px; }

.bonuses-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.bonus-card {
  flex: 1 1 280px;
  background: rgba(8,50,111,0.55);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}

.bonus-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.45); }

.bonus-card-top {
  background: linear-gradient(135deg, var(--c-header) 0%, var(--c-header-dark) 100%);
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.bonus-casino-logo {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  object-fit: contain;
  background: #fff;
  padding: 4px;
  flex-shrink: 0;
}

.bonus-card-info { flex: 1; min-width: 0; }
.bonus-casino-name { font-size: .78rem; color: rgba(255,255,255,0.6); margin-bottom: 2px; }
.bonus-headline { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; color: var(--c-btn-gold); line-height: 1.2; }

.bonus-card-body { padding: 14px 18px; }

.bonus-features { list-style: none; margin-bottom: 14px; display: flex; flex-direction: column; gap: 6px; }
.bonus-features li { font-size: .82rem; color: rgba(255,255,255,0.8); display: flex; align-items: center; gap: 8px; }
.bonus-features li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--c-btn-green); flex-shrink: 0; }

.bonus-rating { display: flex; align-items: center; gap: 4px; margin-bottom: 14px; }
.bonus-stars { color: var(--c-btn-gold); font-size: 1rem; letter-spacing: 1px; }
.bonus-score { font-size: .78rem; color: rgba(255,255,255,0.55); }

.similar-games-section { margin-bottom: 40px; }

.similar-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.game-card {
  flex: 1 1 220px;
  background: rgba(8,50,111,0.55);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}

.game-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.45); }

.game-card-thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: linear-gradient(135deg, #0a1e3d 0%, #0d3a60 100%);
  position: relative;
}

.game-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.game-card:hover .game-card-thumb img { transform: scale(1.06); }

.game-card-body { padding: 14px 16px; }
.game-card-body h4 { font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; color: #fff; margin-bottom: 4px; }
.game-card-body p { font-size: .78rem; color: rgba(255,255,255,0.62); margin-bottom: 12px; line-height: 1.45; }
.game-card-actions { display: flex; gap: 8px; }

.content-review {
  background: rgba(8,50,111,0.4);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 40px;
}

.content-review h2 { font-size: 2rem; color: var(--c-btn-gold); margin-bottom: 16px; }
.content-review h3 { font-size: 1.5rem; color: var(--c-accent); margin: 20px 0 10px; }
.content-review h4 { font-size: 1.2rem; color: #fff; margin: 16px 0 8px; }
.content-review p { font-size: .92rem; color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: 14px; }
.content-review a { color: var(--c-btn-green); }
.content-review strong { color: var(--c-btn-gold); font-weight: 700; }
.content-review em { color: var(--c-accent); }

.content-review ul, .content-review ol { padding-left: 22px; margin-bottom: 14px; display: flex; flex-direction: column; gap: 6px; }
.content-review ul li, .content-review ol li { font-size: .92rem; color: rgba(255,255,255,0.82); line-height: 1.6; }
.content-review ul li::marker { color: var(--c-btn-green); }
.content-review ol li::marker { color: var(--c-btn-gold); font-weight: 700; }

.content-review table { width: 100%; border-collapse: collapse; margin-bottom: 16px; text-align: left; }
.content-review table th { background: rgba(8,50,111,0.9); color: var(--c-btn-gold); padding: 10px 14px; border: 1px solid var(--c-border); font-family: 'Bebas Neue', sans-serif; letter-spacing: .5px; }
.content-review table td { padding: 9px 14px; border: 1px solid var(--c-border); font-size: .88rem; color: rgba(255,255,255,0.82); }
.content-review table tr:nth-child(even) td { background: rgba(255,255,255,0.04); }

.content-review blockquote { border-left: 3px solid var(--c-btn-gold); padding: 10px 16px; margin: 14px 0; background: rgba(254,184,33,0.06); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-style: italic; color: rgba(255,255,255,0.78); }

@media (max-width: 600px) { .content-review { padding: 18px 16px; } }

.faq-section { margin-bottom: 40px; }

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

.faq-item {
  background: rgba(8,50,111,0.55);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  cursor: pointer;
  user-select: none;
  gap: 10px;
}

.faq-question h3 {
  font-family: 'Open Sans', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  color: #fff;
  flex: 1;
  letter-spacing: 0;
}

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: var(--c-btn-gold);
  transition: transform .25s;
}

.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.faq-answer-inner {
  padding: 0 20px 16px;
  font-size: .88rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
}

.faq-item.open .faq-answer { max-height: 600px; }

.author-section {
  background: rgba(8,50,111,0.55);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 40px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.author-photo-wrap { flex-shrink: 0; }
.author-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--c-btn-gold);
}

.author-info { flex: 1; min-width: 240px; }
.author-name { font-size: 1.5rem; color: var(--c-btn-gold); margin-bottom: 2px; }
.author-position { font-size: .82rem; color: var(--c-accent); margin-bottom: 8px; font-weight: 600; }
.author-meta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 10px; }
.author-meta-item { font-size: .78rem; color: rgba(255,255,255,0.62); display: flex; align-items: center; gap: 5px; }
.author-meta-item svg { width: 13px; height: 13px; fill: var(--c-accent); }
.author-bio { font-size: .88rem; color: rgba(255,255,255,0.82); line-height: 1.65; margin-bottom: 12px; }
.author-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.author-social { display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; background: rgba(0,0,0,0.25); border: 1px solid var(--c-border); border-radius: 20px; font-size: .78rem; color: var(--c-text); font-weight: 600; transition: background .2s; }
.author-social:hover { background: rgba(255,255,255,0.12); opacity: 1; }
.author-social svg { width: 14px; height: 14px; fill: currentColor; }

.author-dates { margin-top: 10px; display: flex; gap: 16px; flex-wrap: wrap; }
.author-date { font-size: .75rem; color: rgba(255,255,255,0.5); }

@media (max-width: 600px) { .author-section { flex-direction: column; } }

.site-footer {
  background: var(--c-header);
  border-top: 1px solid var(--c-border);
  padding: 40px 0 20px;
  margin-top: auto;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--c-border);
}

.footer-brand { flex: 0 0 200px; }
.footer-logo {display: block;width: fit-content;}
.footer-logo img { height: 48px; width: auto; margin-bottom: 12px; }
.footer-brand p { font-size: .78rem; color: rgba(255,255,255,0.55); line-height: 1.55; }

.footer-col { flex: 1; min-width: 140px; }
.footer-col-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; color: var(--c-btn-gold); margin-bottom: 12px; letter-spacing: 1px; }
.footer-nav-list { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.footer-nav-list a { font-size: .8rem; color: rgba(255,255,255,0.65); transition: color .2s; }
.footer-nav-list a:hover { color: var(--c-btn-green); opacity: 1; }

.footer-contact { font-size: .8rem; color: rgba(255,255,255,0.65); }
.footer-contact a { color: var(--c-accent); }

.footer-middle {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--c-border);
  margin-bottom: 20px;
}

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

.footer-payment-badge {
  height: 28px;
  width: auto;
  opacity: .75;
  filter: grayscale(0.3);
  transition: opacity .2s, filter .2s;
}
.footer-payment-badge:hover { opacity: 1; filter: none; }

.footer-payment-svg {
  height: 28px;
  display: flex;
  align-items: center;
  opacity: .75;
  transition: opacity .2s;
}
.footer-payment-svg:hover { opacity: 1; }
.footer-payment-svg svg { height: 22px; width: auto; }

.footer-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-social { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.08); border: 1px solid var(--c-border); display: flex; align-items: center; justify-content: center; transition: background .2s; }
.footer-social:hover { background: rgba(255,255,255,0.18); opacity: 1; }
.footer-social svg { width: 16px; height: 16px; fill: #fff; }

.footer-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 20px;
}

.trust-badge {
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: .72rem;
  color: rgba(255,255,255,0.6);
  font-weight: 700;
  letter-spacing: .3px;
  gap: 5px;
  transition: background .2s;
}
.trust-badge:hover { background: rgba(255,255,255,0.12); opacity: 1; }
.trust-badge svg { width: 14px; height: 14px; fill: currentColor; }
.trust-badge-18 { background: #d32f2f; color: #fff; border-color: #d32f2f; font-size: .9rem; font-weight: 900; width: 32px; height: 32px; border-radius: 50%; padding: 0; flex-shrink: 0; }

.footer-bottom { text-align: center; }
.footer-copyright { font-size: .75rem; color: rgba(255,255,255,0.45); line-height: 1.65; max-width: 700px; margin: 0 auto; }
.footer-copyright a { color: rgba(255,255,255,0.55); }

.footer-au-flag { display: inline-flex; align-items: center; gap: 6px; font-size: .78rem; color: rgba(255,255,255,0.5); margin-top: 8px; }
.footer-au-flag img {height: 20px; width: auto;}
.bonus-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(90deg, var(--c-header-dark) 0%, var(--c-header) 100%);
  border-top: 2px solid var(--c-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,0.5);
  transform: translateY(0);
  transition: transform .3s;
}

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

.bw-text { flex: 1; min-width: 0; }
.bw-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.15rem; color: var(--c-btn-gold); letter-spacing: .5px; }
.bw-sub { font-size: .75rem; color: rgba(255,255,255,0.65); }

.bw-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 1.3rem;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  flex-shrink: 0;
  transition: color .2s;
}
.bw-close:hover { color: #fff; }

.bw-actions { display: flex; gap: 8px; flex-shrink: 0; }

@media (max-width: 480px) {
  .bw-text .bw-title { font-size: 1rem; }
  .bonus-widget { padding: 8px 12px; }
}

.info-page-content {
  margin: 0 auto;
  padding: 32px 20px;
}

.info-page-content h1 { font-size: 2.4rem; color: var(--c-btn-gold); margin-bottom: 20px; }
.info-page-content h2 { font-size: 1.7rem; color: var(--c-accent); margin: 24px 0 10px; }
.info-page-content h3 { font-size: 1.25rem; color: #fff; margin: 16px 0 8px; }
.info-page-content p { font-size: .92rem; color: rgba(255,255,255,0.82); line-height: 1.7; margin-bottom: 14px; }
.info-page-content ul, .info-page-content ol { padding-left: 22px; margin-bottom: 14px; }
.info-page-content li { font-size: .92rem; color: rgba(255,255,255,0.8); line-height: 1.6; margin-bottom: 4px; }
.info-page-content a { color: var(--c-btn-green); }
.info-page-content strong { color: var(--c-btn-gold); }

.section { margin-bottom: 40px; }

.breadcrumb { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; margin-bottom: 24px; }
.breadcrumb a, .breadcrumb span { font-size: .78rem; color: rgba(255,255,255,0.55); }
.breadcrumb a:hover { color: #fff; opacity: 1; }
.breadcrumb .sep { color: rgba(255,255,255,0.3); }
.breadcrumb .current { color: rgba(255,255,255,0.85); }

.slot-demo-section { margin-bottom: 40px; }
.slot-demo-full {
  background: rgba(8,50,111,0.55);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.slot-demo-full-header { background: rgba(0,0,0,0.3); padding: 14px 20px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.slot-demo-full-header h2 { font-size: 1.5rem; color: var(--c-btn-gold); }
.slot-demo-frame {
  aspect-ratio: 16/9;
  background: #000;
  position: relative;
}
.slot-demo-frame iframe { width: 100%; height: 100%; border: none; display: block; }
.slot-demo-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #0a1e3d 0%, #0d3a60 100%);
  gap: 16px;
  cursor: pointer;
}
.slot-demo-overlay img { width: 140px; border-radius: 10px; box-shadow: var(--shadow); }
.slot-demo-overlay .overlay-text { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; color: #fff; text-align: center; }
.slot-demo-overlay .play-icon { width: 64px; height: 64px; background: var(--c-btn-gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 0 0 rgba(254,184,33,0.7); animation: pulse 2s infinite; }
.slot-demo-overlay .play-icon svg { width: 28px; height: 28px; fill: #0d1a2e; margin-left: 4px; }

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(254,184,33,0.7); }
  70% { box-shadow: 0 0 0 18px rgba(254,184,33,0); }
  100% { box-shadow: 0 0 0 0 rgba(254,184,33,0); }
}

.slot-demo-full-footer { padding: 14px 20px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

.bonuses-slider-wrap { position: relative; }
.bonuses-slider { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding-bottom: 8px; scroll-behavior: smooth; }
.bonuses-slider::-webkit-scrollbar { height: 4px; }
.bonuses-slider::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 2px; }
.bonuses-slider .bonus-card { flex: 0 0 300px; scroll-snap-align: start; }

@media (min-width: 769px) {
  .bonuses-slider { flex-wrap: wrap; overflow-x: visible; }
  .bonuses-slider .bonus-card { flex: 1 1 280px; }
}

.provider-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.provider-strip img { height: 36px; width: auto; opacity: .85; filter: brightness(1.2); }
.provider-strip-sep { width: 1px; height: 28px; background: rgba(255,255,255,0.2); }

.wp-block-group { display: block; }
.entry-content { display: block; }
.wp-caption { display: block; max-width: 100%; }
.widget_recent_entries { display: none; }
.wp-post-nav-link { display: none; }
.screen-reader-text { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.alignnone { float: none; }
.aligncenter { margin: 0 auto; display: block; }
.size-full { max-width: 100%; }

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

::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: rgba(0,0,0,0.1); }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 3px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; max-width: 520px; }
.form-group, .cf-field { display: flex; flex-direction: column; gap: 6px; }
.form-group label, .cf-field label { font-size: .82rem; color: rgba(255,255,255,0.7); font-weight: 600; }
.cf-field label span { color: var(--c-btn-green); }
.form-group input, .form-group textarea, .form-group select,
.cf-field input, .cf-field textarea, .cf-field select {
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  color: #fff;
  font-size: .9rem;
  font-family: 'Open Sans', sans-serif;
  width: 100%;
  transition: border-color .2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus,
.cf-field input:focus, .cf-field textarea:focus, .cf-field select:focus { outline: none; border-color: var(--c-accent); }
.form-group textarea, .cf-field textarea { min-height: 120px; resize: vertical; }
.cf-field select option { background: #0d3a60; color: #fff; }

.about-author-card {
  background: rgba(8,50,111,0.55);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 24px;
  margin: 24px 0;
}
.about-author-card h3 { font-size: 1.5rem; color: var(--c-btn-gold); margin-bottom: 4px; }
.about-author-card p:first-of-type { font-size: .82rem; color: rgba(255,255,255,0.55); margin-bottom: 10px; }

.text-center { text-align: center; }
.text-gold { color: var(--c-btn-gold); }
.text-green { color: var(--c-btn-green); }
.text-accent { color: var(--c-accent); }
.mt1 { margin-top: 8px; }
.mt2 { margin-top: 16px; }
.mt3 { margin-top: 24px; }
.mb1 { margin-bottom: 8px; }
.mb2 { margin-bottom: 16px; }
.mb3 { margin-bottom: 24px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.fw-bold { font-weight: 700; }
.hidden { display: none !important; }

.shimmer-box { background: linear-gradient(90deg, rgba(255,255,255,0.04) 25%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.04) 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; border-radius: var(--radius-sm); }
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

.wpcf7-form-control { display: inline; }
.elementor-widget-wrap { display: block; }
.yoast-breadcrumb { display: none; }
.fl-builder-content { display: block; }
.tribe-events-calendar { display: block; }
.x9j3k-layer { pointer-events: none; opacity: 0; position: fixed; z-index: -1; }
.m4p7q-container { display: none; }
@media (max-width: 600px) {
.footer-top {flex-direction: column;}
.footer-brand {flex: none;}
}