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

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

:root {
  --c-nav: #0c4361;
  --c-nav-dark: #083552;
  --c-nav-light: #1a5a7a;
  --c-btn-red: #b41c0a;
  --c-btn-red-h: #d02210;
  --c-btn-blue: #0756d0;
  --c-btn-blue-h: #0648b0;
  --c-bg: #19918f;
  --c-bg-dark: #127a78;
  --c-bg-light: #1eaaa8;
  --c-text: #ffffff;
  --c-text-dark: #e0f7f7;
  --c-text-muted: #a8d8d7;
  --c-card: rgba(12,67,97,0.85);
  --c-card-border: rgba(255,255,255,0.12);
  --c-gold: #f5c542;
  --c-silver: #c0c0c0;
  --c-bronze: #cd7f32;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.28);
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.18);
  --font: 'Nunito', sans-serif;
  --transition: 0.22s ease;
}

html { scroll-behavior: smooth; background: var(--c-bg); }
body { font-family: var(--font); background: var(--c-bg); color: var(--c-text); line-height: 1.65; font-size: 16px; -webkit-font-smoothing: antialiased; overflow-x: hidden; }

a { color: var(--c-gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: #fff; }

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

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

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

.box { width: 100%; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 10px 22px; border-radius: 50px; font-family: var(--font); font-weight: 700;
  font-size: 15px; cursor: pointer; border: none; outline: none; transition: all var(--transition);
  text-decoration: none; white-space: nowrap; letter-spacing: 0.3px;
}
.btn--play { background: linear-gradient(135deg, var(--c-btn-blue), #0a76f0); color: #fff; box-shadow: 0 4px 16px rgba(7,86,208,0.45); }
.btn--play:hover { background: linear-gradient(135deg, var(--c-btn-blue-h), #0a66d8); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(7,86,208,0.55); color: #fff; }
.btn--bonus { background: linear-gradient(135deg, var(--c-btn-red), #d42a14); color: #fff; box-shadow: 0 4px 16px rgba(180,28,10,0.45); }
.btn--bonus:hover { background: linear-gradient(135deg, var(--c-btn-red-h), #e03010); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(180,28,10,0.55); color: #fff; }
.btn--outline { background: transparent; border: 2px solid rgba(255,255,255,0.5); color: #fff; }
.btn--outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; color: #fff; }
.btn--sm { padding: 7px 16px; font-size: 13px; }
.btn--lg { padding: 14px 34px; font-size: 17px; }

.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; }

.site-header { background: var(--c-nav); box-shadow: 0 2px 16px rgba(0,0,0,0.35); position: sticky; top: 0; z-index: 1000; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 10px 0; }
.header-logo { flex-shrink: 0; }
.header-logo img { height: 60px; width: auto; object-fit: contain; }
.header-nav { display: flex; align-items: center; gap: 4px; }
.header-nav a { display: flex; align-items: center; gap: 6px; color: var(--c-text-dark); font-weight: 600; font-size: 14px; padding: 7px 12px; border-radius: var(--radius-sm); transition: all var(--transition); }
.header-nav a:hover { background: rgba(255,255,255,0.1); color: #fff; }
.header-nav svg { width: 16px; height: 16px; flex-shrink: 0; }
.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.burger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 38px; height: 38px; background: rgba(255,255,255,0.08); border: none; border-radius: var(--radius-sm); cursor: pointer; padding: 8px; transition: background var(--transition); }
.burger span { display: block; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }
.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-section { position: relative; overflow: hidden; min-height: 480px; display: flex; align-items: center; }
.hero-bg { position: absolute; inset: 0; background-image: url('/plinko-hero.webp'); background-size: cover; background-position: center top; z-index: 0; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,30,50,0.82) 0%, rgba(12,67,97,0.6) 100%, rgba(25,145,143,0.2) 100%); }
.hero-content { position: relative; z-index: 1; padding-top: 60px; padding-bottom: 60px;}
.hero-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(245,197,66,0.15); border: 1px solid rgba(245,197,66,0.4); border-radius: 50px; padding: 5px 14px; font-size: 13px; font-weight: 700; color: var(--c-gold); margin-bottom: 18px; }
.hero-title { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 900; line-height: 1.15; margin-bottom: 14px; text-shadow: 0 2px 12px rgba(0,0,0,0.5); }
.hero-title span { color: var(--c-gold); }
.hero-desc { font-size: 17px; max-width: 520px; margin-bottom: 28px; color: var(--c-text-dark); line-height: 1.6; }
.hero-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-rating { display: flex; align-items: center; gap: 10px; }
.hero-stars { display: flex; gap: 3px; }
.hero-stars svg { width: 20px; height: 20px; fill: var(--c-gold); }
.hero-rating-text { font-size: 14px; color: var(--c-text-dark); }
.hero-rating-text strong { color: var(--c-gold); font-size: 17px; }
.hero-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-pill { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 50px; padding: 5px 14px; font-size: 12px; font-weight: 700; color: #fff; backdrop-filter: blur(4px); }

.section { padding: 50px 0; }
.section-head { margin-bottom: 32px; text-align: center; }
.section-label { display: inline-block; background: rgba(245,197,66,0.15); border: 1px solid rgba(245,197,66,0.35); border-radius: 50px; padding: 4px 14px; font-size: 12px; font-weight: 700; color: var(--c-gold); letter-spacing: 0.8px; text-transform: uppercase; margin-bottom: 10px; }
.section-title { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; color: #fff; margin-bottom: 8px; }
.section-sub { font-size: 15px; color: var(--c-text-muted); max-width: 540px; margin: 0 auto; }

.game-details-section { background: rgba(12,67,97,0.45); border-radius: var(--radius); padding: 0 0 10px; margin: 0 0 10px; }
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.game-table { width: 100%; border-collapse: collapse; min-width: 580px; }
.game-table th, .game-table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 14px; }
.game-table th { background: rgba(12,67,97,0.7); color: var(--c-gold); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px; white-space: nowrap; }
.game-table td:first-child { color: var(--c-text-muted); font-weight: 600; white-space: nowrap; width: 40%; }
.game-table td:last-child { color: #fff; font-weight: 500; }
.game-table tr:last-child td { border-bottom: none; }
.game-table tr:hover td { background: rgba(255,255,255,0.04); }
.td-icon { display: inline-flex; align-items: center; gap: 8px; }
.td-icon svg { width: 18px; height: 18px; opacity: 0.8; flex-shrink: 0; }
.td-rtp { color: #4cff99 !important; font-weight: 700 !important; }
.td-win { color: var(--c-gold) !important; font-weight: 700 !important; }
.td-badge { display: inline-block; background: rgba(7,86,208,0.3); border: 1px solid rgba(7,86,208,0.5); border-radius: 4px; padding: 1px 8px; font-size: 12px; }

.jackpots-grid { display: flex; gap: 16px; flex-wrap: wrap; }
.jackpot-card { flex: 1; min-width: 260px; background: var(--c-card); border: 1px solid var(--c-card-border); border-radius: var(--radius); padding: 24px 20px; box-shadow: var(--shadow-sm); position: relative; overflow: hidden; transition: transform var(--transition); }
.jackpot-card:hover { transform: translateY(-4px); }
.jackpot-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; }
.jackpot-card.gold::before { background: linear-gradient(90deg, #f5c542, #ffdd77); }
.jackpot-card.silver::before { background: linear-gradient(90deg, #c0c0c0, #e8e8e8); }
.jackpot-card.bronze::before { background: linear-gradient(90deg, #cd7f32, #e8a050); }
.jackpot-tier { font-size: 11px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 6px; }
.jackpot-card.gold .jackpot-tier { color: var(--c-gold); }
.jackpot-card.silver .jackpot-tier { color: var(--c-silver); }
.jackpot-card.bronze .jackpot-tier { color: var(--c-bronze); }
.jackpot-name { font-size: 18px; font-weight: 800; color: #fff; margin-bottom: 4px; }
.jackpot-amount { font-size: 2.2rem; font-weight: 900; margin-bottom: 16px; font-variant-numeric: tabular-nums; }
.jackpot-card.gold .jackpot-amount { color: var(--c-gold); }
.jackpot-card.silver .jackpot-amount { color: var(--c-silver); }
.jackpot-card.bronze .jackpot-amount { color: var(--c-bronze); }
.jackpot-winners { display: flex; flex-direction: column; gap: 8px; }
.jackpot-winner { display: flex; align-items: center; gap: 10px; font-size: 13px; }
.winner-avatar { width: 30px; height: 30px; border-radius: 50%; background: linear-gradient(135deg, var(--c-btn-blue), var(--c-bg-dark)); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; color: #fff; flex-shrink: 0; }
.winner-nick { color: var(--c-text-dark); font-weight: 600; flex: 1; }
.winner-win { color: #4cff99; font-weight: 700; }
.jackpot-pulse { animation: pulseAmt 2s infinite; }
@keyframes pulseAmt { 0%,100% { opacity: 1; } 50% { opacity: 0.7; } }

.demo-wrap { background: var(--c-card); border: 1px solid var(--c-card-border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.demo-toolbar { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; background: rgba(12,67,97,0.7); border-bottom: 1px solid var(--c-card-border); gap: 12px; flex-wrap: wrap; }
.demo-info { display: flex; align-items: center; gap: 10px; }
.demo-dot { width: 10px; height: 10px; border-radius: 50%; background: #4cff99; animation: blink 1.5s infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.demo-label { font-size: 14px; font-weight: 700; color: var(--c-text-dark); }
.demo-provider { font-size: 12px; color: var(--c-text-muted); }
.demo-iframe { width: 100%; height: 520px; border: none; display: block; background: #0a1a2e; }
.demo-footer { display: flex; align-items: center; justify-content: center; gap: 14px; padding: 16px 20px; background: rgba(12,67,97,0.5); flex-wrap: wrap; }
.demo-disclaimer { font-size: 12px; color: var(--c-text-muted); text-align: center; }

.bonuses-grid { display: flex; gap: 16px; }
.bonus-card { flex: 1; min-width: 240px; background: var(--c-card); border: 1px solid var(--c-card-border); border-radius: var(--radius); padding: 22px 20px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 14px; transition: transform var(--transition); }
.bonus-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.bonus-header { display: flex; align-items: center; gap: 12px; }
.bonus-casino-logo { width: 52px; height: 52px; border-radius: var(--radius-sm); background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 900; color: #fff; flex-shrink: 0; overflow: hidden; }
.bonus-casino-name { font-size: 16px; font-weight: 800; color: #fff; }
.bonus-casino-rating { display: flex; align-items: center; gap: 4px; font-size: 12px; color: var(--c-text-muted); }
.bonus-casino-rating svg { fill: var(--c-gold); width: 13px; height: 13px; }
.bonus-offer { background: rgba(245,197,66,0.1); border: 1px solid rgba(245,197,66,0.25); border-radius: var(--radius-sm); padding: 12px 14px; }
.bonus-amount { font-size: 1.7rem; font-weight: 900; color: var(--c-gold); }
.bonus-desc { font-size: 12px; color: var(--c-text-muted); margin-top: 2px; }
.bonus-features { display: flex; flex-direction: column; gap: 6px; }
.bonus-feature { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--c-text-dark); }
.bonus-feature svg { width: 14px; height: 14px; fill: #4cff99; flex-shrink: 0; }
.bonus-actions { display: flex; flex-direction: column; gap: 8px; margin-top: auto; }
.bonus-terms { font-size: 11px; color: var(--c-text-muted); text-align: center; }
.bonuses-slider-nav { display: none; justify-content: center; gap: 8px; margin-top: 14px; }
.slider-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.3); border: none; cursor: pointer; transition: background var(--transition); padding: 0; }
.slider-dot.active { background: var(--c-gold); }

.review-wrap { background: rgba(255,255,255,0.05); border: 1px solid var(--c-card-border); border-radius: var(--radius); padding: 32px 36px; box-shadow: var(--shadow-sm); }
.review-wrap h2 { font-size: 1.6rem; font-weight: 800; color: #fff; margin: 0 0 14px; }
.review-wrap h3 { font-size: 1.2rem; font-weight: 700; color: var(--c-gold); margin: 22px 0 10px; }
.review-wrap h4 { font-size: 1rem; font-weight: 700; color: var(--c-text-dark); margin: 18px 0 8px; }
.review-wrap p { margin: 0 0 14px; color: var(--c-text-dark); line-height: 1.7; font-size: 15px; }
.review-wrap ul, .review-wrap ol { margin: 0 0 14px 20px; color: var(--c-text-dark); font-size: 15px; line-height: 1.7; }
.review-wrap li { margin-bottom: 6px; }
.review-wrap a { color: var(--c-gold); }
.review-wrap table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 14px; }
.review-wrap table th { background: rgba(12,67,97,0.7); color: var(--c-gold); padding: 10px 14px; text-align: left; border: 1px solid rgba(255,255,255,0.12); }
.review-wrap table td { padding: 9px 14px; border: 1px solid rgba(255,255,255,0.1); color: var(--c-text-dark); }
.review-wrap table tr:hover td { background: rgba(255,255,255,0.04); }
.review-wrap strong { color: #fff; }
.review-wrap em { color: var(--c-gold); font-style: normal; font-weight: 600; }
.review-wrap blockquote { border-left: 3px solid var(--c-gold); padding: 10px 18px; background: rgba(245,197,66,0.07); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 16px 0; font-style: italic; color: var(--c-text-dark); }

.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--c-card); border: 1px solid var(--c-card-border); border-radius: var(--radius-sm); overflow: hidden; }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 20px; background: none; border: none; cursor: pointer; text-align: left; font-family: var(--font); font-size: 15px; font-weight: 700; color: #fff; transition: background var(--transition); }
.faq-question:hover { background: rgba(255,255,255,0.05); }
.faq-icon { width: 22px; height: 22px; border-radius: 50%; background: rgba(7,86,208,0.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform 0.3s; }
.faq-icon svg { width: 12px; height: 12px; fill: var(--c-gold); }
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { padding: 0 20px 16px; color: var(--c-text-dark); font-size: 14px; line-height: 1.7; }
.faq-item.open .faq-answer { max-height: 400px; }

.author-card { background: var(--c-card); border: 1px solid var(--c-card-border); border-radius: var(--radius); padding: 28px; display: flex; gap: 24px; align-items: flex-start; box-shadow: var(--shadow-sm); }
.author-avatar { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; border: 3px solid var(--c-gold); flex-shrink: 0; background: linear-gradient(135deg, var(--c-nav), var(--c-bg-dark)); display: flex; align-items: center; justify-content: center; font-size: 2.4rem; font-weight: 900; color: var(--c-gold); }
.author-avatar img { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; }
.author-body { flex: 1; }
.author-name { font-size: 1.3rem; font-weight: 900; color: #fff; margin-bottom: 4px; }
.author-role { font-size: 13px; color: var(--c-gold); font-weight: 700; margin-bottom: 12px; }
.author-meta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 14px; }
.author-meta-item { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--c-text-muted); }
.author-meta-item svg { width: 14px; height: 14px; opacity: 0.7; flex-shrink: 0; }
.author-bio { font-size: 14px; color: var(--c-text-dark); line-height: 1.7; margin-bottom: 14px; }
.author-social { display: flex; gap: 10px; }
.author-social a { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); transition: all var(--transition); }
.author-social a:hover { background: var(--c-btn-blue); border-color: var(--c-btn-blue); }
.author-social svg { width: 16px; height: 16px; fill: #fff; }
.author-dates { font-size: 12px; color: var(--c-text-muted); margin-top: 10px; }

.site-footer { background: var(--c-nav); border-top: 1px solid rgba(255,255,255,0.08); margin-top: auto; }
.footer-main { padding: 40px 0 24px; }
.footer-grid { display: flex; gap: 32px; flex-wrap: wrap; }
.footer-col { flex: 1; min-width: 180px; }
.footer-logo img { height: 60px; width: auto; object-fit: contain; margin-bottom: 12px; }
.footer-logo-link {display: block;width: fit-content;}
.footer-tagline { font-size: 13px; color: var(--c-text-muted); line-height: 1.6; }
.footer-heading { font-size: 13px; font-weight: 800; color: var(--c-gold); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 13px; color: var(--c-text-muted); transition: color var(--transition); }
.footer-links a:hover { color: #fff; }
.footer-payments { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.payment-badge { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: 6px; padding: 5px 10px; font-size: 11px; font-weight: 700; color: var(--c-text-muted); }
.footer-socials { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 8px; }
.social-link { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14); transition: all var(--transition); }
.social-link:hover { background: var(--c-btn-blue); border-color: var(--c-btn-blue); }
.social-link svg { width: 17px; height: 17px; fill: #fff; }
.footer-trust { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-top: 8px; }
.trust-badge { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: 6px; padding: 5px 11px; font-size: 11px; font-weight: 700; color: var(--c-text-muted); display: flex; align-items: center; gap: 5px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; }
.footer-bottom-inner { display: flex; align-items: flex-start; gap: 20px; flex-wrap: wrap; }
.footer-flag { width: 28px; height: auto; border-radius: 2px; flex-shrink: 0; margin-top: 2px; }
.footer-legal { font-size: 12px; color: var(--c-text-muted); line-height: 1.7; flex: 1; }
.footer-legal a { color: var(--c-text-muted); text-decoration: underline; }
.footer-legal a:hover { color: #fff; }
.footer-provider { display: flex; align-items: center; gap: 8px; margin-top: 10px; }
.footer-provider img { height: 24px; width: auto; opacity: 0.7; filter: brightness(1.2); }
.footer-provider-label { font-size: 11px; color: var(--c-text-muted); }

.casino-widget { position: fixed; bottom: 20px; right: 18px; z-index: 900; width: 280px; }
.widget-toggle { display: flex; align-items: center; justify-content: space-between; background: var(--c-nav-dark); color: #fff; padding: 10px 14px; border-radius: var(--radius-sm) var(--radius-sm) 0 0; cursor: pointer; font-size: 13px; font-weight: 700; border: 1px solid rgba(255,255,255,0.14); border-bottom: none; user-select: none; }
.widget-toggle-icon { transition: transform 0.3s; }
.widget-collapsed .widget-toggle-icon { transform: rotate(180deg); }
.widget-body { background: var(--c-nav); border: 1px solid rgba(255,255,255,0.14); border-radius: 0 0 var(--radius-sm) var(--radius-sm); overflow: hidden; max-height: 500px; transition: max-height 0.4s ease; }
.widget-collapsed .widget-body { max-height: 0; }
.widget-item { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.widget-item:last-child { border-bottom: none; }
.widget-rank { width: 22px; height: 22px; border-radius: 50%; background: var(--c-bg-dark); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 800; color: #fff; flex-shrink: 0; }
.widget-rank.r1 { background: var(--c-gold); color: #0a1a2e; }
.widget-info { flex: 1; min-width: 0; }
.widget-casino-name { font-size: 13px; font-weight: 700; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.widget-bonus { font-size: 11px; color: var(--c-gold); font-weight: 600; }
.widget-btn { font-size: 11px; padding: 5px 10px; flex-shrink: 0; }
.breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--c-text-muted); padding: 10px 0; flex-wrap: wrap; }
.breadcrumb a { color: var(--c-text-muted); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb-sep { opacity: 0.4; }

.wave-divider { width: 100%; overflow: hidden; line-height: 0; }
.wave-divider svg { display: block; width: 100%; }

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

.info-content { background: rgba(255,255,255,0.05); border: 1px solid var(--c-card-border); border-radius: var(--radius); padding: 32px 36px; }
.info-content h1 { font-size: 1.8rem; font-weight: 800; color: #fff; margin-bottom: 18px; }
.info-content h2 { font-size: 1.3rem; font-weight: 700; color: var(--c-gold); margin: 22px 0 10px; }
.info-content p { font-size: 15px; color: var(--c-text-dark); line-height: 1.7; margin-bottom: 14px; }
.info-content ul, .info-content ol { margin: 0 0 14px 20px; color: var(--c-text-dark); line-height: 1.7; }
.info-content li { margin-bottom: 6px; }
.info-content a { color: var(--c-gold); }
.info-content strong { color: #fff; }

.wp-block-group { display: block; }
.wp-block-columns { display: flex; gap: 16px; }
.entry-content { display: block; }
.aligncenter { display: block; margin: 0 auto; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.skip-link { position: absolute; left: -9999px; }
.elementor-widget-container { display: block; }
.post-thumbnail { display: block; }

@media (max-width: 900px) {
  .header-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--c-nav-dark); flex-direction: column; padding: 12px 18px; gap: 4px; border-bottom: 2px solid rgba(255,255,255,0.1); }
  .header-nav.open { display: flex; }
  .burger { display: flex; }
  .jackpots-grid { flex-direction: column; }
  .author-card { flex-direction: column; align-items: center; text-align: center; }
  .author-meta { justify-content: center; }
  .author-social { justify-content: center; }
  .footer-grid { gap: 24px; }
  .footer-col { min-width: 140px; }
  .casino-widget { width: 240px; right: 10px; bottom: 10px; }
  .review-wrap { padding: 22px 18px; }
  .info-content { padding: 22px 18px; }
}
@media (max-width: 780px) {
  .bonuses-grid { overflow-x: auto; flex-wrap: nowrap; gap: 12px; padding-bottom: 10px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
  .bonus-card { min-width: 82vw; scroll-snap-align: start; flex: 0 0 82vw; }
  .bonuses-slider-nav { display: flex; }

}
@media (max-width: 680px) {
  .hero-section { min-height: 360px; }
  .hero-content { padding-top: 36px;padding-bottom: 36px; }
  .section { padding: 34px 0; }
  .footer-bottom-inner { flex-direction: column; }
  .game-details-section { padding: 0; }
  .footer-grid {flex-direction: column;}

}
@media (max-width: 480px) {
  .hero-title { font-size: 1.7rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .casino-widget { display: none; }
  .demo-iframe { height: 380px; }
  .widget-toggle .widget-label { font-size: 12px; }
}
@media (max-width: 400px) {
.header-actions .btn--bonus {display: none;}
}