@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: #764335;
  --c-header-dark: #5a3228;
  --c-btn-green: #00ff30;
  --c-btn-gold: #ffe387;
  --c-bg: #44d5ca;
  --c-bg-dark: #2bb8ad;
  --c-text: #1a1a1a;
  --c-text-light: #fff;
  --c-text-muted: #555;
  --c-block-bg: #fff;
  --c-block-alt: #f0fafa;
  --c-border: #c8ede9;
  --c-accent: #764335;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --transition: 0.22s ease;
}

html { scroll-behavior: smooth; background: var(--c-bg); }
body { font-family: 'Open Sans', sans-serif; font-size: 16px; line-height: 1.55; color: var(--c-text); background: var(--c-bg); overflow-x: hidden; }

h1, h2, h3, h4, h5, h6 { font-family: 'Bebas Neue', sans-serif; letter-spacing: 1.5px; line-height: 1.1; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }

a { color: var(--c-accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--c-header-dark); }

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

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

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

.section-pad { padding-top: 60px; padding-bottom: 60px;}
.section-pad-sm { padding-top: 36px; padding-bottom: 36px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif; font-size: 1.15rem; letter-spacing: 2px;
  padding: 12px 28px; border-radius: 50px; border: none; cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
  text-decoration: none; gap: 6px;
}
.btn:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 6px 20px rgba(0,0,0,0.18); }
.btn:active { transform: scale(0.97); }
.btn--gold { background: var(--c-btn-gold); color: #1a1a1a; }
.btn--green { background: var(--c-btn-green); color: #1a1a1a; }
.btn--outline { background: transparent; border: 2px solid var(--c-btn-gold); color: var(--c-btn-gold); }
.btn--sm { padding: 8px 18px; font-size: 0.95rem; }
.btn--lg { padding: 16px 40px; font-size: 1.35rem; }
.btn--full { width: 100%; }
.btn svg { width: 18px; height: 18px; }

.badge { display: inline-block; background: var(--c-btn-gold); color: #1a1a1a; font-family: 'Bebas Neue', sans-serif; letter-spacing: 1px; font-size: 0.85rem; padding: 2px 10px; border-radius: 20px; }
.badge--green { background: var(--c-btn-green); }

.xk7f2 { display: none; }
.wp-block-separator { border: none; border-top: 1px solid var(--c-border); margin: 24px 0; }
.wp-caption { max-width: 100%; }
.screen-reader-text { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.alignnone { margin: 5px 20px 20px 0; }
.aligncenter, div.aligncenter { display: block; margin: 5px auto 5px auto; }
.alignright { float: right; margin: 5px 0 20px 20px; }
.alignleft { float: left; margin: 5px 20px 20px 0; }
.wp-post-image { max-width: 100%; height: auto; }

.site-header {
  background: var(--c-header);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 16px; gap: 12px; max-width: 1220px; margin: 0 auto;
}
.header-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.header-logo img { height: 48px; width: auto; border-radius: 8px; }
.header-logo-text { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; color: var(--c-btn-gold); letter-spacing: 2px; line-height: 1; }
.header-logo-sub { font-size: 0.62rem; color: rgba(255,227,135,0.7); letter-spacing: 1px; display: block; }

.header-nav { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.header-nav a {
  display: inline-flex; align-items: center; gap: 5px;
  color: var(--c-text-light); font-size: 0.88rem; font-weight: 600;
  padding: 6px 10px; border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.header-nav a:hover { background: rgba(255,255,255,0.12); color: var(--c-btn-gold); }
.header-nav a svg { width: 15px; height: 15px; }

.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.header-jackpot {
  background: rgba(0,0,0,0.25); border-radius: 20px;
  padding: 5px 14px; display: flex; align-items: center; gap: 6px;
  color: var(--c-btn-gold); font-family: 'Bebas Neue', sans-serif;
  font-size: 1.05rem; letter-spacing: 1px; white-space: nowrap;
}
.header-jackpot .jackpot-label { font-size: 0.7rem; color: rgba(255,227,135,0.7); letter-spacing: 0.5px; display: block; line-height: 1; }
.header-jackpot .jackpot-val { font-size: 1.1rem; display: block; line-height: 1.1; }

.burger { display: none; flex-direction: column; justify-content: center; align-items: center; width: 36px; height: 36px; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; border-radius: 6px; }
.burger span { display: block; width: 22px; height: 2px; background: var(--c-text-light); border-radius: 2px; transition: all 0.28s; }
.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); }

.hero {
  position: relative; overflow: hidden;
  min-height: 520px; display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('/img/big-bass-splash-hero.avif');
  background-size: cover; background-position: center;
  filter: brightness(0.72);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(118,67,53,0.82) 0%, rgba(44,184,173,0.45) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 640px; padding: 60px 20px;
}
.hero-kicker { font-family: 'Bebas Neue', sans-serif; font-size: 1.05rem; letter-spacing: 3px; color: var(--c-btn-green); margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.hero-title { font-size: clamp(2.4rem, 6vw, 4.2rem); color: #fff; line-height: 1; margin-bottom: 14px; text-shadow: 0 2px 12px rgba(0,0,0,0.4); }
.hero-title span { color: var(--c-btn-gold); }
.hero-desc { font-size: 1.1rem; color: rgba(255,255,255,0.9); margin-bottom: 24px; line-height: 1.6; max-width: 500px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-rating { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.hero-stars { color: var(--c-btn-gold); font-size: 1.35rem; letter-spacing: 2px; }
.hero-rating-text { color: rgba(255,255,255,0.85); font-size: 0.9rem; }
.hero-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }

.sec-title { text-align: center; margin-bottom: 36px; }
.sec-title h2 { color: var(--c-header); margin-bottom: 8px; }
.sec-title p { color: var(--c-text-muted); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }
.sec-title .title-bar { width: 60px; height: 4px; background: var(--c-btn-gold); border-radius: 2px; margin: 10px auto 0; }

.game-details-wrap {
  display: flex; gap: 28px; align-items: flex-start; flex-wrap: wrap;
}
.game-details-table-wrap { flex: 1 1 340px; overflow-x: auto; }
.game-demo-wrap { flex: 1 1 380px; }
.game-details-table {
  width: 100%; border-collapse: collapse;
  background: var(--c-block-bg); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); font-size: 0.9rem;
}
.game-details-table th, .game-details-table td { padding: 10px 14px; text-align: left; border-bottom: 1px solid var(--c-border); }
.game-details-table th { background: var(--c-header); color: var(--c-text-light); font-family: 'Bebas Neue', sans-serif; font-size: 1rem; letter-spacing: 1.5px; width: 44%; }
.game-details-table td { color: var(--c-text); font-weight: 600; }
.game-details-table tr:last-child th, .game-details-table tr:last-child td { border-bottom: none; }
.game-details-table tr:nth-child(even) td { background: var(--c-block-alt); }
.param-icon { display: inline-flex; align-items: center; gap: 6px; }
.param-icon svg { width: 16px; height: 16px; color: var(--c-header); flex-shrink: 0; }

.demo-box {
  background: var(--c-block-bg); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow);
}
.demo-frame { position: relative; padding-top: 56.25%; background: #111; }
.demo-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.demo-actions { display: flex; gap: 10px; padding: 14px; flex-wrap: wrap; }
.demo-provider { display: flex; align-items: center; gap: 8px; padding: 8px 14px; font-size: 0.82rem; color: var(--c-text-muted); border-top: 1px solid var(--c-border); }
.demo-provider img { height: 22px; width: auto; }

.screenshots-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 14px;
}
.screenshot-card {
  border-radius: var(--radius-sm); overflow: hidden;
  box-shadow: var(--shadow); transition: transform var(--transition);
  cursor: pointer; aspect-ratio: 16/9; background: #1a1a1a;
}
.screenshot-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.screenshot-card:hover { transform: scale(1.03); }
.screenshot-card:hover img { transform: scale(1.05); }

.bonuses-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 18px; }
.bonus-card {
  background: var(--c-block-bg); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); display: flex; flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1.5px solid var(--c-border);
}
.bonus-card:hover { transform: translateY(-4px); box-shadow: 0 10px 32px rgba(0,0,0,0.14); }
.bonus-card-top {
  background: var(--c-header); padding: 18px 20px; display: flex;
  align-items: center; gap: 14px;
}
.bonus-casino-logo { width: 60px; height: 60px; border-radius: 10px; background: #fff; padding: 6px; object-fit: contain; flex-shrink: 0; }
.bonus-casino-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; color: #fff; letter-spacing: 1px; }
.bonus-casino-rating { display: flex; align-items: center; gap: 4px; color: var(--c-btn-gold); font-size: 0.85rem; margin-top: 2px; }
.bonus-card-body { padding: 18px 20px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.bonus-amount { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: var(--c-header); letter-spacing: 1px; line-height: 1; }
.bonus-amount span { font-size: 1rem; color: var(--c-text-muted); font-family: 'Open Sans', sans-serif; font-weight: 600; display: block; margin-top: 2px; }
.bonus-features { display: flex; flex-direction: column; gap: 6px; }
.bonus-feature { display: flex; align-items: flex-start; gap: 8px; font-size: 0.88rem; color: var(--c-text); }
.bonus-feature svg { width: 15px; height: 15px; color: var(--c-btn-green); flex-shrink: 0; margin-top: 2px; }
.bonus-card-footer { padding: 14px 20px; border-top: 1px solid var(--c-border); display: flex; flex-direction: column; gap: 8px; }
.bonus-terms { font-size: 0.75rem; color: var(--c-text-muted); line-height: 1.4; }

.content-block {
  background: var(--c-block-bg); border-radius: var(--radius); padding: 36px 32px;
  box-shadow: var(--shadow); margin: 0 12px;
}
.content-block p { margin-bottom: 16px; line-height: 1.7; }
.content-block h2, .content-block h3, .content-block h4 { margin: 24px 0 12px; color: var(--c-header); }
.content-block ul, .content-block ol { padding-left: 22px; margin-bottom: 16px; }
.content-block li { margin-bottom: 6px; line-height: 1.6; }
.content-block a { color: var(--c-accent); font-weight: 600; }
.content-block a:hover { text-decoration: underline; }
.content-block table { width: 100%; border-collapse: collapse; margin: 18px 0; overflow-x: auto; display: block; }
.content-block table th { background: var(--c-header); color: #fff; padding: 10px 14px; text-align: left; }
.content-block table td { padding: 9px 14px; border-bottom: 1px solid var(--c-border); text-align: left; }
.content-block table tr:nth-child(even) td { background: var(--c-block-alt); }
.content-block blockquote { border-left: 4px solid var(--c-header); padding: 12px 18px; background: var(--c-block-alt); margin: 18px 0; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-style: italic; }
.content-block img { border-radius: var(--radius-sm); max-width: 100%; margin: 14px 0; }
.content-block strong { color: var(--c-header); }

.author-box {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--c-block-alt); border-radius: var(--radius); padding: 20px 24px;
  margin-top: 28px; border: 1.5px solid var(--c-border);
}
.author-avatar { width: 72px; height: 72px; border-radius: 50%; background: var(--c-header); display: flex; align-items: center; justify-content: center; flex-shrink: 0; overflow: hidden; }
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-avatar-fallback { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; color: #fff; }
.author-info h4 { font-size: 1.15rem; color: var(--c-header); margin-bottom: 4px; }
.author-info .author-title { font-size: 0.82rem; color: var(--c-text-muted); margin-bottom: 8px; font-style: italic; }
.author-info p { font-size: 0.9rem; color: var(--c-text); line-height: 1.55; margin: 0; }
.author-links { display: flex; gap: 8px; margin-top: 10px; }
.author-links a { display: inline-flex; align-items: center; gap: 5px; font-size: 0.82rem; color: var(--c-header); font-weight: 600; }

.faq-list { display: flex; flex-direction: column; gap: 10px; margin: 0 auto; }
.faq-item {
  background: var(--c-block-bg); border-radius: var(--radius-sm); overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07); border: 1.5px solid var(--c-border);
}
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; cursor: pointer; gap: 12px;
  font-weight: 700; font-size: 1rem; color: var(--c-header);
  transition: background var(--transition);
  list-style: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover { background: var(--c-block-alt); }
.faq-icon { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; background: var(--c-header); display: flex; align-items: center; justify-content: center; transition: transform 0.28s; }
.faq-icon svg { width: 12px; height: 12px; color: #fff; }
details[open] .faq-icon { transform: rotate(180deg); background: var(--c-btn-gold); }
details[open] .faq-icon svg { color: #1a1a1a; }
.faq-answer { padding: 0 20px 16px; font-size: 0.95rem; color: var(--c-text); line-height: 1.65; }

.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px; margin-bottom: 40px; }
.review-card {
  background: var(--c-block-bg); border-radius: var(--radius); padding: 20px;
  box-shadow: var(--shadow); border: 1.5px solid var(--c-border);
  display: flex; flex-direction: column; gap: 12px;
  transition: transform var(--transition);
}
.review-card:hover { transform: translateY(-3px); }
.review-card-top { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 50px; height: 50px; border-radius: 50%; background: var(--c-header); display: flex; align-items: center; justify-content: center; font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; color: #fff; flex-shrink: 0; overflow: hidden; }
.review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-meta h4 { font-size: 1rem; color: var(--c-text); font-family: 'Bebas Neue', sans-serif; letter-spacing: 1px; }
.review-stars { color: var(--c-btn-gold); font-size: 1rem; }
.review-date { font-size: 0.78rem; color: var(--c-text-muted); }
.review-text { font-size: 0.9rem; color: var(--c-text); line-height: 1.6; flex: 1; }
.review-verified { display: inline-flex; align-items: center; gap: 5px; font-size: 0.75rem; color: #18a851; font-weight: 700; }
.review-verified svg { width: 13px; height: 13px; }

.review-form-wrap {
  background: var(--c-block-bg); border-radius: var(--radius); padding: 32px;
  box-shadow: var(--shadow); max-width: 600px; margin: 0 auto;
  border: 1.5px solid var(--c-border);
}
.review-form-wrap h3 { color: var(--c-header); margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-weight: 700; font-size: 0.9rem; color: var(--c-text); }
.form-group input, .form-group textarea, .form-group select {
  padding: 11px 14px; border-radius: var(--radius-sm); border: 1.5px solid var(--c-border);
  font-size: 0.95rem; font-family: 'Open Sans', sans-serif; color: var(--c-text);
  background: #fff; transition: border-color var(--transition), box-shadow var(--transition);
  outline: none; width: 100%;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--c-header); box-shadow: 0 0 0 3px rgba(118,67,53,0.12); }
.form-group textarea { min-height: 100px; resize: vertical; }
.star-rating-input { display: flex; gap: 6px; flex-direction: row-reverse; justify-content: flex-end; }
.star-rating-input input { display: none; }
.star-rating-input label { font-size: 1.6rem; color: #ccc; cursor: pointer; transition: color 0.15s; }
.star-rating-input input:checked ~ label, .star-rating-input label:hover, .star-rating-input label:hover ~ label { color: var(--c-btn-gold); }
.form-success { display: none; background: #d4edda; border: 1.5px solid #28a745; border-radius: var(--radius-sm); padding: 14px 18px; color: #155724; font-weight: 700; margin-top: 12px; }
.form-success.active { display: block; }

.site-footer {
  background: var(--c-header); color: var(--c-text-light);
  margin-top: auto; padding: 48px 0 0;
}
.footer-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 32px; margin-bottom: 32px; }
.footer-col h4 { font-family: 'Bebas Neue', sans-serif; font-size: 1.15rem; letter-spacing: 2px; color: var(--c-btn-gold); margin-bottom: 14px; }
.footer-col p { font-size: 0.88rem; color: rgba(255,255,255,0.75); line-height: 1.65; }
.footer-nav { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-nav a { color: rgba(255,255,255,0.8); font-size: 0.88rem; transition: color var(--transition); }
.footer-nav a:hover { color: var(--c-btn-gold); }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-logo-link { display: block; width: fit-content; }
.footer-logo img { height: 48px; width: auto; border-radius: 8px; }
.footer-logo-text { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; color: var(--c-btn-gold); letter-spacing: 2px; }
.footer-payment-logos { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-payment-logo { background: rgba(255,255,255,0.12); border-radius: var(--radius-sm); padding: 6px 12px; font-size: 0.75rem; font-weight: 700; color: #fff; white-space: nowrap; }
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.14); display: flex; align-items: center; justify-content: center;
  color: #fff; transition: background var(--transition), transform var(--transition);
}
.footer-social a:hover { background: var(--c-btn-gold); color: #1a1a1a; transform: scale(1.1); }
.footer-social a svg { width: 16px; height: 16px; }
.footer-trust-logos { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.footer-trust-logo { background: rgba(255,255,255,0.1); border-radius: var(--radius-sm); padding: 5px 10px; font-size: 0.72rem; font-weight: 700; color: rgba(255,255,255,0.85); white-space: nowrap; letter-spacing: 0.5px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12); padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom-left { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.footer-flag {height: 20px;width: auto;}
.footer-copyright { font-size: 0.8rem; color: rgba(255,255,255,0.6); }
.footer-legal { font-size: 0.75rem; color: rgba(255,255,255,0.55); line-height: 1.5; margin-top: 8px; }
.footer-18plus { background: rgba(255,255,255,0.15); border-radius: 6px; padding: 4px 8px; font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; color: #fff; flex-shrink: 0; }
.provider-logo-wrap { display: flex; align-items: center; gap: 10px; }
.provider-logo-wrap img { height: 28px; width: auto; filter: brightness(0) invert(1); opacity: 0.8; }
.footer-email { font-size: 0.88rem; color: rgba(255,255,255,0.8); }
.footer-email a { color: var(--c-btn-gold); }

.sticky-widget {
  position: fixed; bottom: 20px; right: 20px; z-index: 999;
  background: var(--c-header); border-radius: var(--radius);
  box-shadow: 0 6px 32px rgba(0,0,0,0.28); padding: 14px 16px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  max-width: 180px; transition: transform var(--transition), box-shadow var(--transition);
  border: 2px solid var(--c-btn-gold);
}
.sticky-widget:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.32); }
.sticky-widget-logo { width: 70px; height: 70px; border-radius: 10px; overflow: hidden; background: #fff; padding: 6px; }
.sticky-widget-logo img { width: 100%; height: 100%; object-fit: contain; }
.sticky-widget-text { font-family: 'Bebas Neue', sans-serif; font-size: 1rem; color: var(--c-btn-gold); letter-spacing: 1.5px; text-align: center; line-height: 1.2; }
.sticky-widget-bonus { font-size: 0.8rem; color: rgba(255,255,255,0.8); text-align: center; line-height: 1.4; }
.sticky-widget-close { position: absolute; top: 6px; right: 8px; background: none; border: none; cursor: pointer; color: rgba(255,255,255,0.5); font-size: 1rem; line-height: 1; padding: 0; }
.sticky-widget-close:hover { color: #fff; }

.bg-white { background: #fff; }
.bg-light { background: var(--c-block-alt); }
.bg-header { background: var(--c-header); }
.bg-teal { background: var(--c-bg); }

.block-wrap {
  background: var(--c-block-bg); border-radius: var(--radius);
  box-shadow: var(--shadow); margin: 0 4px 4px; overflow: hidden;
}
.block-wrap-alt {
  background: var(--c-block-alt); border-radius: var(--radius);
  box-shadow: var(--shadow); margin: 0 4px 4px; overflow: hidden;
  border: 1.5px solid var(--c-border);
}
.p-block { padding: 40px 32px; }

.slider-wrap { position: relative; overflow: hidden; }
.slider-track { display: flex; gap: 16px; transition: transform 0.38s cubic-bezier(.4,0,.2,1); }
.slider-controls { display: flex; justify-content: center; gap: 10px; margin-top: 16px; }
.slider-btn {
  width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--c-header);
  background: #fff; color: var(--c-header); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), color var(--transition);
}
.slider-btn:hover { background: var(--c-header); color: #fff; }
.slider-btn svg { width: 16px; height: 16px; }
.slider-dots { display: flex; gap: 6px; align-items: center; }
.slider-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(118,67,53,0.25); cursor: pointer; transition: background var(--transition); border: none; }
.slider-dot.active { background: var(--c-header); width: 20px; border-radius: 4px; }

.stats-row { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-bottom: 32px; }
.stat-card {
  background: var(--c-block-bg); border-radius: var(--radius-sm); padding: 16px 22px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  box-shadow: var(--shadow); min-width: 120px; border-bottom: 3px solid var(--c-header);
}
.stat-card .stat-val { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: var(--c-header); line-height: 1; }
.stat-card .stat-label { font-size: 0.78rem; color: var(--c-text-muted); margin-top: 4px; letter-spacing: 0.5px; font-weight: 700; text-transform: uppercase; }

.breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 0.82rem; color: rgba(255,255,255,0.7); padding: 8px 0; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,0.85); }
.breadcrumb a:hover { color: var(--c-btn-gold); }
.breadcrumb .sep { color: rgba(255,255,255,0.4); }

.info-content { background: var(--c-block-bg); border-radius: var(--radius); padding: 36px 32px; box-shadow: var(--shadow); margin-top: 24px; }
.info-content p { margin-bottom: 14px; line-height: 1.7; }
.info-content h2 { color: var(--c-header); margin: 22px 0 10px; }
.info-content ul, .info-content ol { padding-left: 22px; margin-bottom: 14px; }
.info-content li { margin-bottom: 6px; line-height: 1.6; }
.info-content a { color: var(--c-accent); font-weight: 600; }
@media (max-width: 1024px) {
.header-jackpot {display: none;}
}
@media (max-width: 900px) {
  .game-details-wrap { flex-direction: column; }
  .game-details-table-wrap, .game-demo-wrap { flex: 1 1 100%; width: 100%;}
  .header-nav a {padding: 6px 7px;}
}
@media (max-width: 768px) {
  .header-nav { display: none; position: fixed; top: 68px; left: 0; right: 0; background: var(--c-header-dark); flex-direction: column; padding: 18px; gap: 4px; z-index: 99; box-shadow: 0 8px 24px rgba(0,0,0,0.18); }
  .header-nav.open { display: flex; }
  .header-nav a { width: 100%; padding: 12px 14px; border-radius: var(--radius-sm); font-size: 1rem; }
  .burger { display: flex; }
  .header-jackpot { display: none; }
  .header-actions .btn--gold, .header-actions .btn--green { font-size: 0.9rem; padding: 9px 14px; }
  .p-block { padding: 24px 16px; }
  .content-block { padding: 22px 14px; margin: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .sticky-widget { bottom: 12px; right: 12px; max-width: 150px; padding: 10px 12px; }
  .screenshots-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .bonuses-grid { grid-template-columns: 1fr; }
  .hero { min-height: 400px; }
  .hero-content { padding: 40px 16px; }
  .stats-row { gap: 10px; }
  .stat-card { min-width: 90px; padding: 12px 14px; }
}
@media (max-width: 480px) {
  
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .screenshots-grid { grid-template-columns: 1fr; }
  .review-form-wrap { padding: 20px 14px; }
  .author-box { flex-direction: column; }
}
@media (max-width: 375px) {
.header-actions .btn--pulse{display: none;}
}
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.04); } }
@keyframes jackpot-tick { from { opacity: 0.6; } to { opacity: 1; } }
.fade-in-up { animation: fadeInUp 0.6s ease both; }
.fade-in-up-d1 { animation-delay: 0.1s; }
.fade-in-up-d2 { animation-delay: 0.22s; }
.fade-in-up-d3 { animation-delay: 0.34s; }
.btn--pulse { animation: pulse 2.4s ease-in-out infinite; }
.jackpot-val { animation: jackpot-tick 0.18s ease-out; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: none; }

.wp-smiley { border: none; margin-bottom: 0; margin-top: 0; padding: 0; }
.wp-block-image { max-width: 100%; }
.entry-content img { max-width: 100%; height: auto; }
.wp-block-gallery { display: flex; flex-wrap: wrap; gap: 8px; }
#wpadminbar { display: none; }
.rtl { direction: rtl; }
.singular .hentry { margin: 0; }

.xk9r3 .inner { padding: 0; }
.b3qm1 > li::marker { color: transparent; }
.wc-block-components-price-slider { display: none; }
.tribe-events-header { visibility: hidden; }
.v4n8z { font-size: 0; }
