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

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

:root {
  --c-nav: #07027d;
  --c-nav-dark: #050160;
  --c-btn-gold: #ffb42f;
  --c-btn-light: #e3e4d6;
  --c-bg: #6705c8;
  --c-bg-dark: #4d04a0;
  --c-bg-deeper: #3a0380;
  --c-text: #f0eeff;
  --c-text-muted: #c8bfee;
  --c-accent: #ffb42f;
  --c-card: rgba(255,255,255,0.07);
  --c-card-border: rgba(255,255,255,0.12);
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 4px 32px rgba(7,2,125,0.35);
  --transition: 0.22s cubic-bezier(0.4,0,0.2,1);
}

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

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

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

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

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

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

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 11px 22px; border-radius: var(--radius-sm); font-family: 'Manrope', sans-serif;
  font-weight: 700; font-size: 14px; cursor: pointer; border: none; text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  letter-spacing: 0.03em; white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn--gold { background: var(--c-btn-gold); color: #1a0a00; box-shadow: 0 2px 14px rgba(255,180,47,0.35); }
.btn--gold:hover { background: #ffd07a; box-shadow: 0 4px 22px rgba(255,180,47,0.55); transform: translateY(-2px); color: #1a0a00; }
.btn--light { background: var(--c-btn-light); color: #07027d; }
.btn--light:hover { background: #fff; transform: translateY(-2px); color: #07027d; }
.btn--outline { background: transparent; border: 2px solid var(--c-btn-gold); color: var(--c-btn-gold); }
.btn--outline:hover { background: var(--c-btn-gold); color: #1a0a00; transform: translateY(-2px); }
.btn--sm { padding: 8px 16px; font-size: 13px; }
.btn--lg { padding: 15px 32px; font-size: 16px; }

.section { padding: 60px 0; }
.section--sm { padding: 40px 0; }

.section-title { font-size: clamp(22px, 4vw, 32px); font-weight: 800; margin-bottom: 8px; color: #fff; }
.section-subtitle { font-size: 15px; color: var(--c-text-muted); margin-bottom: 32px; }

.card {
  background: var(--c-card); border: 1px solid var(--c-card-border); border-radius: var(--radius);
  padding: 24px; backdrop-filter: blur(8px);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(255,180,47,0.3); }

.hx4k2a { display: none; }
.wp9f3d { visibility: hidden; position: absolute; left: -9999px; }
.yk7b1z { width: 0; height: 0; overflow: hidden; }
.pz3m8n { opacity: 0; pointer-events: none; position: absolute; }


.site-header {
  background: var(--c-nav); position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 2px 24px rgba(7,2,125,0.5);
}
.header-inner {
  display: flex; align-items: center; gap: 16px;
  padding: 12px 0; flex-wrap: nowrap;justify-content: space-between;
}
.header-logo { flex-shrink: 0; display: flex; align-items: center; }
.header-logo img { height: 52px; width: auto; }
.header-nav { display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center;}
.header-nav a {
  display: flex; align-items: center; gap: 6px; padding: 8px 12px; border-radius: var(--radius-sm);
  color: #d4ceff; font-size: 13.5px; font-weight: 600; transition: background var(--transition), color var(--transition);
}
.header-nav a:hover, .header-nav a.active { background: rgba(255,255,255,0.1); color: #fff; }
.header-nav a svg { width: 16px; height: 16px; flex-shrink: 0; }
.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.header-actions .btn { font-size: 13px; padding: 9px 18px; }

.lang-picker { position: relative; }
.lang-picker-btn {
  display: flex; align-items: center; gap: 6px; padding: 8px 12px; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius-sm); cursor: pointer;
  color: #d4ceff; font-size: 13px; font-weight: 600; font-family: 'Manrope', sans-serif; transition: background var(--transition);
}
.lang-picker-btn:hover { background: rgba(255,255,255,0.15); }
.lang-dropdown {
  position: absolute; top: calc(100% + 8px); right: 0; background: var(--c-nav-dark);
  border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius-sm); padding: 6px;
  min-width: 120px; display: none; z-index: 100; box-shadow: var(--shadow);
}
.lang-picker.open .lang-dropdown { display: block; }
.lang-dropdown a {
  display: flex; align-items: center; gap: 8px; padding: 8px 10px;
  border-radius: 6px; color: #d4ceff; font-size: 13px;
}
.lang-dropdown a:hover { background: rgba(255,255,255,0.1); color: #fff; }

.burger {
  display: none; flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 36px; height: 36px; background: transparent; border: none; cursor: pointer; padding: 4px;
}
.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); }

.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--c-nav); z-index: 999; flex-direction: column;
  padding: 80px 24px 32px; overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu-close {
  position: absolute; top: 16px; right: 16px; background: rgba(255,255,255,0.1);
  border: none; color: #fff; font-size: 22px; width: 40px; height: 40px;
  border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.mobile-menu-logo { position: absolute; top: 16px; left: 20px; }
.mobile-menu-logo img { height: 36px; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 4px; margin-bottom: 24px; }
.mobile-menu nav a {
  display: flex; align-items: center; gap: 10px; padding: 13px 16px;
  border-radius: var(--radius-sm); color: #d4ceff; font-size: 15px; font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-menu nav a:hover { background: rgba(255,255,255,0.1); color: #fff; }
.mobile-menu-actions { display: flex; flex-direction: column; gap: 10px; margin-top: auto; }
.mobile-menu-actions .btn { width: 100%; justify-content: center; padding: 13px; font-size: 15px; }


.hero {
  position: relative; overflow: hidden; min-height: 520px; display: flex; align-items: center;
  background: var(--c-bg-dark);
}
.hero-bg {
  position: absolute; inset: 0; background-image: url('/basket-bounty-hero-img.jpg');
  background-size: cover; background-position: center top;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(7,2,125,0.85) 0%, rgba(103,5,200,0.65) 50%, rgba(103,5,200,0.2) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 80px 0; max-width: 560px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; background: rgba(255,180,47,0.15);
  border: 1px solid rgba(255,180,47,0.4); border-radius: 20px; padding: 6px 14px;
  font-size: 12px; font-weight: 700; color: var(--c-accent); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.08em;
}
.hero h1 { font-size: clamp(28px, 5vw, 48px); font-weight: 800; color: #fff; line-height: 1.15; margin-bottom: 16px; }
.hero-desc { font-size: 16px; color: var(--c-text-muted); margin-bottom: 28px; line-height: 1.65; max-width: 480px; }
.hero-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-rating { display: flex; align-items: center; gap: 12px; }
.hero-stars { display: flex; gap: 3px; }
.hero-stars svg { width: 18px; height: 18px; color: var(--c-accent); fill: currentColor; }
.hero-rating-text { font-size: 13px; color: var(--c-text-muted); }
.hero-rating-score { font-size: 22px; font-weight: 800; color: #fff; }
.hero-stats { display: flex; gap: 28px; margin-top: 24px; flex-wrap: wrap; }
.hero-stat-item { display: flex; flex-direction: column; }
.hero-stat-val { font-size: 20px; font-weight: 800; color: var(--c-accent); }
.hero-stat-lbl { font-size: 11px; color: var(--c-text-muted); text-transform: uppercase; letter-spacing: 0.06em; }


.jackpot-grid { display: flex; gap: 16px; flex-wrap: wrap; }
.jackpot-card {
  flex: 1 1 220px; padding: 28px 20px; border-radius: var(--radius); text-align: center;
  position: relative; overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.jackpot-card:hover { transform: translateY(-6px); box-shadow: 0 8px 40px rgba(0,0,0,0.4); }
.jackpot-card--grand { background: linear-gradient(135deg, #7b0e0e 0%, #c41c1c 50%, #ff4444 100%); border: 1px solid rgba(255,100,100,0.3); }
.jackpot-card--major { background: linear-gradient(135deg, #5a3500 0%, #9a6200 50%, #d4870a 100%); border: 1px solid rgba(255,180,47,0.3); }
.jackpot-card--minor { background: linear-gradient(135deg, #0d4a0d 0%, #1a7a1a 50%, #28b428 100%); border: 1px solid rgba(80,200,80,0.3); }
.jackpot-card--mini { background: linear-gradient(135deg, #0a2a5a 0%, #1144a0 50%, #1a66d4 100%); border: 1px solid rgba(80,140,255,0.3); }
.jackpot-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; opacity: 0.75; margin-bottom: 8px; }
.jackpot-name { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 6px; }
.jackpot-amount { font-size: clamp(26px, 4vw, 38px); font-weight: 800; color: #fff; margin-bottom: 16px; line-height: 1; text-shadow: 0 2px 12px rgba(0,0,0,0.5); }
.jackpot-players { display: flex; flex-direction: column; gap: 6px; }
.jackpot-player {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  background: rgba(0,0,0,0.2); border-radius: 6px; padding: 6px 10px; font-size: 12px;
}
.jackpot-player-nick { font-weight: 700; color: #fff; }
.jackpot-player-win { color: rgba(255,255,255,0.75); font-size: 11px; }
.jackpot-card::before {
  content: ''; position: absolute; top: -40px; right: -40px; width: 120px; height: 120px;
  background: rgba(255,255,255,0.06); border-radius: 50%;
}


.game-details-wrap { display: flex; gap: 32px; align-items: flex-start; flex-wrap: wrap; }
.game-demo-col { flex: 1 1 340px; }
.game-table-col { flex: 1 1 380px; }
.game-table {
  width: 100%; border-collapse: collapse; font-size: 14px;
  background: var(--c-card); border-radius: var(--radius); overflow: hidden;
}
.game-table th, .game-table td {
  text-align: left; padding: 11px 16px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.game-table th { width: 44%; background: rgba(7,2,125,0.35); color: var(--c-text-muted); font-weight: 600; font-size: 13px; }
.game-table td { color: #fff; font-weight: 500; }
.game-table th .tbl-icon { display: inline-flex; width: 16px; height: 16px; margin-right: 6px; vertical-align: middle; opacity: 0.7; }
.game-table tr:last-child th, .game-table tr:last-child td { border-bottom: none; }
.game-table tr:hover td, .game-table tr:hover th { background: rgba(255,255,255,0.04); }
.rtp-badge { display: inline-block; background: rgba(40,180,40,0.2); color: #6cf06c; padding: 2px 8px; border-radius: 12px; font-weight: 700; }
.vol-badge { display: inline-block; background: rgba(220,80,80,0.2); color: #ff8888; padding: 2px 8px; border-radius: 12px; font-weight: 700; }

.demo-frame-wrap {
  background: #000; border-radius: var(--radius); overflow: hidden; border: 2px solid rgba(255,180,47,0.3);
  position: relative; aspect-ratio: 4/3;
}
.demo-frame-wrap iframe { width: 100%; height: 100%; display: block; border: none; }
.demo-play-real { display: flex; justify-content: center; margin-top: 12px; }


.pros-cons-grid { display: flex; gap: 20px; flex-wrap: wrap; }
.pros-col, .cons-col { flex: 1 1 280px; padding: 24px; border-radius: var(--radius); }
.pros-col { background: rgba(40,180,40,0.1); border: 1px solid rgba(40,180,40,0.25); }
.cons-col { background: rgba(220,60,60,0.1); border: 1px solid rgba(220,60,60,0.25); }
.pros-cons-title { display: flex; align-items: center; gap: 10px; font-size: 17px; font-weight: 800; margin-bottom: 18px; }
.pros-col .pros-cons-title { color: #6cf06c; }
.cons-col .pros-cons-title { color: #ff8888; }
.pros-cons-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.pros-cons-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--c-text); line-height: 1.5; }
.pros-cons-list li::before { content: ''; width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.pros-col .pros-cons-list li::before { background: rgba(40,180,40,0.25); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%236cf06c' d='M13.5 3.5L6 11 2.5 7.5l-1 1L6 13l8.5-8.5z'/%3E%3C/svg%3E"); background-size: 12px; background-repeat: no-repeat; background-position: center; }
.cons-col .pros-cons-list li::before { background: rgba(220,60,60,0.25); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23ff8888' d='M12 4L4 12M4 4l8 8' stroke='%23ff8888' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); background-size: 12px; background-repeat: no-repeat; background-position: center; }


.bonuses-slider-outer { position: relative; overflow: hidden; }
.bonuses-slider { display: flex; gap: 20px; transition: transform 0.4s cubic-bezier(0.4,0,0.2,1); }
.bonus-card {
  flex: 0 0 calc(33.333% - 14px); background: var(--c-card); border: 1px solid var(--c-card-border);
  border-radius: var(--radius); padding: 24px; display: flex; flex-direction: column; gap: 12px;
  min-width: 0; position: relative; overflow: hidden;
}
.bonus-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--c-btn-gold), #ff6b6b);
}
.bonus-casino-logo { height: 36px; object-fit: contain; filter: brightness(1.2); }
.bonus-casino-name { font-size: 16px; font-weight: 800; color: #fff; }
.bonus-amount { font-size: 26px; font-weight: 800; color: var(--c-accent); line-height: 1; }
.bonus-sub { font-size: 13px; color: var(--c-text-muted); }
.bonus-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.bonus-tag { background: rgba(255,180,47,0.15); border: 1px solid rgba(255,180,47,0.3); color: var(--c-accent); font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 12px; text-transform: uppercase; letter-spacing: 0.05em; }
.bonus-card .btn { margin-top: auto; }
.slider-nav { display: none; justify-content: center; gap: 10px; margin-top: 20px; }
.slider-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.3); border: none; cursor: pointer; transition: background var(--transition), transform var(--transition); padding: 0; }
.slider-dot.active { background: var(--c-accent); transform: scale(1.3); }
.slider-arrows { display: none; gap: 10px; justify-content: flex-end; margin-bottom: 12px; }
.slider-arrow-btn {
  width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15); color: #fff; font-size: 16px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: background var(--transition);
}
.slider-arrow-btn:hover { background: rgba(255,255,255,0.2); }


.review-content { background: var(--c-card); border: 1px solid var(--c-card-border); border-radius: var(--radius); padding: 32px; }
.review-content h2, .review-content h3, .review-content h4 { color: #fff; margin: 24px 0 12px; font-weight: 800; }
.review-content h2 { font-size: 22px; }
.review-content h3 { font-size: 18px; }
.review-content h4 { font-size: 16px; }
.review-content p { margin-bottom: 14px; color: var(--c-text); line-height: 1.7; }
.review-content ul, .review-content ol { margin: 12px 0 16px 20px; display: flex; flex-direction: column; gap: 6px; }
.review-content li { color: var(--c-text); line-height: 1.65; }
.review-content a { color: var(--c-accent); }
.review-content table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 14px; }
.review-content table th { background: rgba(7,2,125,0.4); color: #fff; padding: 10px 14px; text-align: left; border: 1px solid rgba(255,255,255,0.12); }
.review-content table td { padding: 9px 14px; border: 1px solid rgba(255,255,255,0.08); color: var(--c-text); }
.review-content table tr:nth-child(even) td { background: rgba(255,255,255,0.03); }
.review-content blockquote { border-left: 3px solid var(--c-accent); padding: 12px 20px; margin: 16px 0; background: rgba(255,180,47,0.07); border-radius: 0 8px 8px 0; font-style: italic; color: var(--c-text-muted); }


.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-q {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 18px 20px; cursor: pointer; font-weight: 700; font-size: 15px; color: #fff;
  transition: background var(--transition);
}
.faq-q:hover { background: rgba(255,255,255,0.05); }
.faq-q-icon { width: 22px; height: 22px; flex-shrink: 0; border-radius: 50%; background: rgba(255,180,47,0.15); display: flex; align-items: center; justify-content: center; transition: transform var(--transition), background var(--transition); }
.faq-q-icon svg { width: 12px; height: 12px; fill: var(--c-accent); transition: transform var(--transition); }
.faq-item.open .faq-q-icon { background: var(--c-accent); }
.faq-item.open .faq-q-icon svg { fill: #1a0a00; transform: rotate(180deg); }
.faq-a { display: none; padding: 0 20px 18px; color: var(--c-text-muted); font-size: 14px; line-height: 1.7; border-top: 1px solid rgba(255,255,255,0.06); padding-top: 14px; }
.faq-item.open .faq-a { display: block; }


.author-card { display: flex; gap: 28px; align-items: flex-start; flex-wrap: wrap; }
.author-photo { width: 110px; height: 110px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 3px solid rgba(255,180,47,0.4); }
.author-info { flex: 1; min-width: 220px; }
.author-name { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 4px; }
.author-title { font-size: 14px; color: var(--c-accent); font-weight: 600; margin-bottom: 8px; }
.author-meta { display: flex; flex-wrap: wrap; gap: 12px; 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; flex-shrink: 0; opacity: 0.6; }
.author-bio { font-size: 14px; color: var(--c-text); line-height: 1.7; margin-bottom: 14px; }
.author-links { display: flex; flex-wrap: wrap; gap: 10px; }
.author-link { display: flex; align-items: center; gap: 6px; padding: 7px 14px; background: rgba(255,255,255,0.07); border-radius: var(--radius-sm); font-size: 13px; color: var(--c-text-muted); border: 1px solid rgba(255,255,255,0.1); transition: background var(--transition), color var(--transition); }
.author-link:hover { background: rgba(255,180,47,0.15); color: var(--c-accent); }
.author-link svg { width: 14px; height: 14px; }
.author-dates { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 14px; }
.author-date { font-size: 12px; color: var(--c-text-muted); }
.author-date strong { color: var(--c-text); }


.site-footer { background: var(--c-nav); margin-top: auto; padding: 48px 0 24px; }
.footer-top { display: flex; flex-wrap: wrap; gap: 32px; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 28px; }
.footer-brand { flex: 0 0 200px; }
.footer-brand img { height: 52px;width: auto; margin-bottom: 14px; display: block; }
.footer-brand-link {display: block;width: fit-content;}
.footer-desc { font-size: 13px; color: var(--c-text-muted); line-height: 1.65; }
.footer-links-col h4 { font-size: 13px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }
.footer-links-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links-col ul a { font-size: 13px; color: var(--c-text-muted); transition: color var(--transition); }
.footer-links-col ul a:hover { color: var(--c-accent); }
.footer-links { display: flex; flex-wrap: wrap; gap: 32px; flex: 1; justify-content: space-between;}
.footer-trust { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 20px; }
.footer-trust-badge { display: flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-sm); padding: 6px 12px; font-size: 11px; font-weight: 700; color: var(--c-text-muted); text-transform: uppercase; letter-spacing: 0.06em; white-space: nowrap; }
.footer-trust-badge svg { width: 16px; height: 16px; flex-shrink: 0; }
.footer-payments { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-payment-logo { background: rgba(255,255,255,0.08); border-radius: 6px; padding: 6px 12px; font-size: 12px; font-weight: 700; color: #d4ceff; border: 1px solid rgba(255,255,255,0.1); }
.footer-socials { display: flex; gap: 10px; margin-bottom: 24px; }
.footer-social-link { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; color: var(--c-text-muted); transition: background var(--transition), color var(--transition); }
.footer-social-link:hover { background: var(--c-accent); color: #1a0a00; }
.footer-social-link svg { width: 16px; height: 16px; fill: currentColor; }
.footer-legal { font-size: 12px; color: rgba(255,255,255,0.35); line-height: 1.7; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-bottom { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 12px; }
.footer-copyright { font-size: 12px; color: rgba(255,255,255,0.35); }
.footer-flag { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: rgba(255,255,255,0.4); }
.footer-provider { display: flex; align-items: center; gap: 8px; }
.footer-provider img { height: 22px; filter: brightness(0.6) grayscale(0.3); transition: filter var(--transition); }
.footer-provider img:hover { filter: brightness(1); }


.sticky-widget {
  position: fixed; bottom: 24px; right: 24px; z-index: 998;
  background: var(--c-nav); border: 1px solid rgba(255,180,47,0.4); border-radius: 16px;
  padding: 14px 16px; display: flex; flex-direction: column; align-items: center; gap: 8px;
  box-shadow: 0 8px 40px rgba(7,2,125,0.6); max-width: 180px; text-align: center;
  animation: slideInRight 0.5s ease;
}
@keyframes slideInRight { from { transform: translateX(120px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
.widget-game-logo { height: 48px; object-fit: contain; }
.widget-bonus { font-size: 11px; color: var(--c-text-muted); line-height: 1.4; }
.widget-bonus strong { display: block; font-size: 15px; color: var(--c-accent); }
.widget-close { position: absolute; top: 6px; right: 8px; background: none; border: none; color: rgba(255,255,255,0.4); cursor: pointer; font-size: 16px; line-height: 1; }
.widget-close:hover { color: #fff; }


.info-content { background: var(--c-card); border: 1px solid var(--c-card-border); border-radius: var(--radius); padding: 36px; }
.info-content h1 { font-size: 28px; font-weight: 800; color: #fff; margin-bottom: 20px; }
.info-content h2 { font-size: 20px; font-weight: 700; color: #fff; margin: 24px 0 10px; }
.info-content p { color: var(--c-text); line-height: 1.75; margin-bottom: 14px; font-size: 15px; }
.info-content ul, .info-content ol { margin: 12px 0 16px 22px; }
.info-content li { color: var(--c-text); line-height: 1.7; margin-bottom: 6px; }
.info-content a { color: var(--c-accent); }
.info-content table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.info-content table th { background: rgba(7,2,125,0.4); color: #fff; padding: 10px 14px; text-align: left; border: 1px solid rgba(255,255,255,0.12); }
.info-content table td { padding: 9px 14px; border: 1px solid rgba(255,255,255,0.08); color: var(--c-text); }


.gradient-divider { height: 2px; background: linear-gradient(90deg, transparent, var(--c-accent), transparent); margin: 0; }
.fade-in { animation: fadeIn 0.6s ease both; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.section-bg-alt { background: rgba(0,0,0,0.2); }

.wp-kn7d1 { display: none; }
.entry-content-q8z { display: none; }
.elementor-section-r4x9 { display: none; }
.wc-block-a2k7 { display: none; }


.breadcrumbs { display: flex; align-items: center; gap: 8px; padding: 14px 0; font-size: 13px; flex-wrap: wrap; }
.breadcrumbs a { color: var(--c-text-muted); }
.breadcrumbs a:hover { color: var(--c-accent); }
.breadcrumbs span { color: rgba(255,255,255,0.4); }
.breadcrumbs .current { color: var(--c-accent); }

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


@media (max-width: 1024px) {
  .game-details-wrap { flex-direction: column; }
  .bonus-card { flex: 0 0 calc(50% - 10px); }
  .header-nav a svg {display: none;}
  .slider-arrows {display: flex;}
  .slider-nav {display: flex;}
  .game-demo-col {width: 100%;}
  .game-table-col {width: 100%;}
}
@media (max-width: 900px) {
.lang-picker {display: none;}
}
@media (max-width: 768px) {
  .section { padding: 40px 0; }
  .header-nav { display: none; }
  .lang-picker { display: none; }
  .burger { display: flex; }
  .hero-content { padding: 48px 0; }
  .jackpot-grid { flex-direction: column; }
  .jackpot-card { flex: 1 1 100%; }
  .bonus-card { flex: 0 0 85vw; }
  .pros-cons-grid { flex-direction: column; }
  .author-card { flex-direction: column; align-items: center; text-align: center; }
  .author-meta { justify-content: center; }
  .author-links { justify-content: center; }
  .author-dates { justify-content: center; }
  .footer-brand { flex: 0 0 100%; }
  .footer-links { flex-direction: column; gap: 20px; }
  .footer-top { flex-direction: column; }
  .sticky-widget { bottom: 16px; right: 12px; max-width: 155px; padding: 10px 12px; }
  .header-actions .btn--light { display: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .review-content { padding: 20px 16px; }
  .card { padding: 16px; }
  .hero h1 { font-size: 26px; }
  .game-details-wrap { gap: 20px; }
.game-demo-col { flex-basis: 100%; min-width: 0; }
}
@media (max-width: 400px) {
  .game-demo-col { flex: 1 1 100%; min-width: 0;width: 300px}
  .demo-frame-wrap { aspect-ratio: 3/4; }
  .game-details-wrap { align-items: center; }
}