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

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

:root {
  --c-bg: #080942;
  --c-nav: #3787eb;
  --c-nav-dark: #2a6bbf;
  --c-nav-light: #4a9af5;
  --c-btn-primary: #97a4d4;
  --c-btn-primary-hover: #7b8cc4;
  --c-btn-accent: #fdfcaf;
  --c-btn-accent-hover: #f5f380;
  --c-text: #e8eaf6;
  --c-text-muted: #9fa8da;
  --c-text-dark: #080942;
  --c-white: #ffffff;
  --c-border: rgba(151,164,212,0.25);
  --c-card: rgba(55,135,235,0.08);
  --c-card-hover: rgba(55,135,235,0.16);
  --c-overlay: rgba(8,9,66,0.85);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.6);
  --transition: 0.25s ease;
  --font: 'Oswald', sans-serif;
}

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

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

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 18px; }

.box { width: 100%; }

.visually-hidden { position: absolute; width: 1px; height: 1px; clip: rect(0,0,0,0); overflow: hidden; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  white-space: nowrap;
  padding: 10px 20px;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.35); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--c-btn-primary); color: var(--c-bg); }
.btn--primary:hover { background: var(--c-btn-primary-hover); color: var(--c-bg); }
.btn--accent { background: var(--c-btn-accent); color: var(--c-bg); }
.btn--accent:hover { background: var(--c-btn-accent-hover); color: var(--c-bg); }
.btn--outline { background: transparent; border: 2px solid var(--c-btn-primary); color: var(--c-btn-primary); }
.btn--outline:hover { background: var(--c-btn-primary); color: var(--c-bg); }
.btn--lg { font-size: 16px; padding: 14px 32px; border-radius: var(--radius-md); }
.btn--sm { font-size: 12px; padding: 7px 14px; }
.btn--full { width: 100%; }

.header.box { background: var(--c-nav); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 16px rgba(0,0,0,0.4); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 0; min-height: 64px; }
.header-logo { display: flex; align-items: center; flex-shrink: 0; }
.header-logo img { height: 54px; width: auto; object-fit: contain; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4)); }
.header-logo span { font-size: 22px; font-weight: 700; color: var(--c-white); letter-spacing: 0.06em; margin-left: 8px; }

.header-nav { display: flex; align-items: center; gap: 4px; }
.header-nav a { color: var(--c-white); font-size: 13px; font-weight: 500; letter-spacing: 0.04em; padding: 6px 10px; border-radius: var(--radius-sm); transition: background var(--transition), color var(--transition); display: flex; align-items: center; gap: 5px; text-decoration: none; text-transform: uppercase; }
.header-nav a:hover { background: rgba(255,255,255,0.15); color: var(--c-btn-accent); }
.header-nav a svg { width: 15px; height: 15px; flex-shrink: 0; }

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

.lang-picker { position: relative; display: inline-flex; }
.lang-picker-btn { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25); color: var(--c-white); border-radius: var(--radius-sm); padding: 6px 10px; cursor: pointer; font-family: var(--font); font-size: 13px; font-weight: 500; display: flex; align-items: center; gap: 5px; transition: background var(--transition); }
.lang-picker-btn:hover { background: rgba(255,255,255,0.22); }
.lang-picker-dropdown { position: absolute; top: calc(100% + 6px); right: 0; background: var(--c-nav-dark); border: 1px solid var(--c-border); border-radius: var(--radius-sm); min-width: 120px; box-shadow: var(--shadow); display: none; z-index: 100; }
.lang-picker-dropdown a { display: block; padding: 8px 14px; color: var(--c-white); font-size: 13px; transition: background var(--transition); text-decoration: none; }
.lang-picker-dropdown a:hover { background: rgba(255,255,255,0.1); }
.lang-picker.open .lang-picker-dropdown { display: block; }

.burger { display: none; flex-direction: column; justify-content: center; gap: 5px; cursor: pointer; width: 36px; height: 36px; padding: 4px; background: rgba(255,255,255,0.1); border-radius: var(--radius-sm); border: none; flex-shrink: 0; }
.burger span { display: block; width: 22px; height: 2px; background: var(--c-white); 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; inset: 0; background: var(--c-nav-dark); z-index: 999; flex-direction: column; padding: 80px 24px 24px; gap: 8px; overflow-y: auto; }
.mobile-menu.active { display: flex; }
.mobile-menu a { color: var(--c-white); font-size: 18px; font-weight: 500; padding: 12px 16px; border-radius: var(--radius-sm); border-bottom: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; gap: 10px; text-decoration: none; text-transform: uppercase; }
.mobile-menu a:hover { background: rgba(255,255,255,0.1); }
.mobile-menu a svg { width: 18px; height: 18px; }
.mobile-menu-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }

.hero { position: relative; min-height: 520px; display: flex; align-items: center; overflow: hidden; padding: 60px 0 40px; }
.hero-bg { position: absolute; inset: 0; background-image: url('/img/wild-spin-hero.webp'); background-size: cover; background-position: center ; z-index: 0; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(8,9,66,0.88) 0%, rgba(8,9,66,0.65) 50%, rgba(8,9,66,0.80) 100%); }
.hero-inner { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 32px; max-width: 680px; }
.hero-badge { display: inline-block; background: var(--c-btn-accent); color: var(--c-bg); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; border-radius: 30px; padding: 4px 14px; margin-bottom: 14px; }
.hero h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 700; color: var(--c-white); line-height: 1.15; letter-spacing: 0.02em; text-shadow: 0 2px 12px rgba(0,0,0,0.5); margin-bottom: 14px; }
.hero-desc { font-size: 16px; color: var(--c-text); line-height: 1.6; max-width: 540px; font-weight: 300; }

.hero-tiles { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-tile { background: rgba(55,135,235,0.18); border: 1px solid rgba(55,135,235,0.35); border-radius: var(--radius-md); padding: 12px 18px; display: flex; flex-direction: column; gap: 2px; min-width: 110px; flex: 1; transition: background var(--transition), border-color var(--transition); }
.hero-tile:hover { background: rgba(55,135,235,0.28); border-color: rgba(55,135,235,0.6); }
.hero-tile-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--c-text-muted); font-weight: 500; }
.hero-tile-value { font-size: 20px; font-weight: 700; color: var(--c-btn-accent); }

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

.section { padding: 56px 0; }
.section-alt { background: rgba(55,135,235,0.04); }
.section-title { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; color: var(--c-white); letter-spacing: 0.03em; margin-bottom: 8px; text-align: center; }
.section-sub { font-size: 15px; color: var(--c-text-muted); text-align: center; margin-bottom: 36px; font-weight: 300; }
.section-title-left { text-align: left; }
.section-sub-left { text-align: left; }

.jackpots-grid { display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; }
.jackpot-card { background: linear-gradient(145deg, rgba(55,135,235,0.15), rgba(8,9,66,0.8)); border: 1px solid; border-radius: var(--radius-lg); padding: 28px 22px; flex: 1; min-width: 260px; max-width: 380px; position: relative; overflow: hidden; transition: transform var(--transition), box-shadow var(--transition); }
.jackpot-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.jackpot-card::before { content: ''; position: absolute; inset: 0; opacity: 0.07; border-radius: inherit; }
.jackpot-card--mini { border-color: rgba(151,164,212,0.4); }
.jackpot-card--minor { border-color: rgba(55,135,235,0.6); }
.jackpot-card--maxi { border-color: rgba(253,252,175,0.6); }
.jackpot-card--major { border-color: rgba(253,200,100,0.6); }
.jackpot-card--grand { border-color: rgba(255,80,80,0.7); }
.jackpot-card--mini .jackpot-name { color: var(--c-text-muted); }
.jackpot-card--minor .jackpot-name { color: var(--c-btn-primary); }
.jackpot-card--maxi .jackpot-name { color: var(--c-btn-accent); }
.jackpot-card--major .jackpot-name { color: #ffc850; }
.jackpot-card--grand .jackpot-name { color: #ff6060; }
.jackpot-badge { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; border-radius: 20px; padding: 2px 10px; margin-bottom: 10px; display: inline-block; }
.jackpot-card--mini .jackpot-badge { background: rgba(151,164,212,0.2); color: var(--c-text-muted); }
.jackpot-card--minor .jackpot-badge { background: rgba(55,135,235,0.2); color: var(--c-btn-primary); }
.jackpot-card--maxi .jackpot-badge { background: rgba(253,252,175,0.2); color: var(--c-btn-accent); }
.jackpot-card--major .jackpot-badge { background: rgba(255,200,80,0.2); color: #ffc850; }
.jackpot-card--grand .jackpot-badge { background: rgba(255,80,80,0.15); color: #ff6060; }
.jackpot-name { font-size: 18px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 4px; }
.jackpot-amount { font-size: 2.4rem; font-weight: 700; color: var(--c-white); letter-spacing: 0.02em; margin-bottom: 16px; line-height: 1; }
.jackpot-amount span { font-size: 1.2rem; font-weight: 400; color: var(--c-text-muted); }
.jackpot-players { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.jackpot-player { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.04); border-radius: var(--radius-sm); padding: 7px 11px; }
.jackpot-player-avatar { width: 30px; height: 30px; border-radius: 50%; background: var(--c-nav); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; color: var(--c-white); flex-shrink: 0; text-transform: uppercase; }
.jackpot-player-info { flex: 1; }
.jackpot-player-nick { font-size: 13px; font-weight: 600; color: var(--c-text); }
.jackpot-player-win { font-size: 11px; color: var(--c-text-muted); }
.jackpot-player-win strong { color: var(--c-btn-accent); }

.game-row { display: flex; gap: 24px; align-items: flex-start; flex-wrap: wrap; }
.game-details-wrap { flex: 1; min-width: 280px; }
.game-demo-wrap { flex: 1; min-width: 280px; display: flex; flex-direction: column; gap: 14px; }
.game-demo-frame { width: 100%; aspect-ratio: 16/9; border-radius: var(--radius-md); overflow: hidden; border: 2px solid var(--c-border); background: #000; }
.game-demo-frame iframe { width: 100%; height: 100%; border: none; display: block; }
.game-demo-cta { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

.details-table { width: 100%; border-collapse: collapse; border-radius: var(--radius-md); overflow: hidden; }
.details-table th { background: var(--c-nav); color: var(--c-white); font-size: 13px; font-weight: 600; text-align: left; padding: 11px 14px; letter-spacing: 0.04em; text-transform: uppercase; }
.details-table td { padding: 10px 14px; font-size: 14px; vertical-align: middle; border-bottom: 1px solid var(--c-border); color: var(--c-text); }
.details-table tr:last-child td { border-bottom: none; }
.details-table tr:nth-child(even) td { background: rgba(55,135,235,0.06); }
.details-table tr:hover td { background: rgba(55,135,235,0.12); }
.details-table td:first-child { color: var(--c-text-muted); font-weight: 500; display: flex; align-items: center; gap: 7px; font-size: 13px; white-space: nowrap; }
.details-table td:first-child svg { width: 15px; height: 15px; flex-shrink: 0; color: var(--c-nav-light); }
.details-table-wrap { overflow-x: auto; border-radius: var(--radius-md); border: 1px solid var(--c-border); }

.bonuses-grid { display: flex; gap: 18px; flex-wrap: wrap; }
.bonus-card { background: var(--c-card); border: 1px solid var(--c-border); border-radius: var(--radius-lg); padding: 24px 20px; flex: 1; min-width: 240px; display: flex; flex-direction: column; gap: 12px; transition: transform var(--transition), box-shadow var(--transition), background var(--transition); }
.bonus-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); background: var(--c-card-hover); }
.bonus-casino-logo { display: flex; align-items: center; gap: 10px; }
.bonus-casino-logo img { height: 36px; width: auto; object-fit: contain; }
.bonus-casino-name { font-size: 16px; font-weight: 700; color: var(--c-white); }
.bonus-amount { font-size: 2rem; font-weight: 700; color: var(--c-btn-accent); line-height: 1.1; }
.bonus-amount-sub { font-size: 13px; color: var(--c-text-muted); font-weight: 300; }
.bonus-features { display: flex; flex-direction: column; gap: 5px; }
.bonus-feature { font-size: 13px; color: var(--c-text); display: flex; align-items: center; gap: 6px; }
.bonus-feature::before { content: ''; display: block; width: 6px; height: 6px; border-radius: 50%; background: var(--c-nav-light); flex-shrink: 0; }
.bonus-rating { display: flex; align-items: center; gap: 5px; }
.bonus-stars { color: var(--c-btn-accent); font-size: 14px; }
.bonus-rating-num { font-size: 14px; font-weight: 700; color: var(--c-white); }
.bonus-tc { font-size: 11px; color: var(--c-text-muted); font-weight: 300; }

.review-content { background: var(--c-card); border: 1px solid var(--c-border); border-radius: var(--radius-lg); padding: 32px 28px; }
.review-author { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--c-border); }
.review-author-avatar { width: 52px; height: 52px; border-radius: 50%; background: var(--c-nav); display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 700; color: var(--c-white); flex-shrink: 0; }
.review-author-name { font-size: 16px; font-weight: 700; color: var(--c-white); }
.review-author-bio { font-size: 13px; color: var(--c-text-muted); font-weight: 300; }
.review-dates { font-size: 12px; color: var(--c-text-muted); display: flex; gap: 14px; margin-top: 3px; }
.review-body { font-size: 15px; line-height: 1.7; color: var(--c-text); font-weight: 300; }
.review-body h2 { font-size: 1.4rem; font-weight: 700; color: var(--c-white); margin: 24px 0 10px; }
.review-body h3 { font-size: 1.2rem; font-weight: 600; color: var(--c-white); margin: 20px 0 8px; }
.review-body h4 { font-size: 1.05rem; font-weight: 600; color: var(--c-btn-primary); margin: 16px 0 6px; }
.review-body p { margin-bottom: 14px; }
.review-body ul, .review-body ol { margin: 12px 0 14px 20px; }
.review-body li { margin-bottom: 6px; line-height: 1.6; }
.review-body strong { color: var(--c-white); font-weight: 600; }
.review-body em { color: var(--c-btn-accent); }
.review-body a { color: var(--c-btn-accent); border-bottom: 1px dashed currentColor; }
.review-body table { width: 100%; border-collapse: collapse; margin: 18px 0; border-radius: var(--radius-sm); overflow: hidden; }
.review-body table th { background: var(--c-nav); color: var(--c-white); padding: 10px 12px; text-align: left; font-size: 13px; }
.review-body table td { padding: 9px 12px; border-bottom: 1px solid var(--c-border); font-size: 14px; }
.review-body table tr:nth-child(even) td { background: rgba(55,135,235,0.06); }
.review-body blockquote { border-left: 3px solid var(--c-nav); padding: 10px 18px; background: rgba(55,135,235,0.08); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 16px 0; font-style: italic; }

.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--c-card); border: 1px solid var(--c-border); border-radius: var(--radius-md); overflow: hidden; transition: border-color var(--transition); }
.faq-item.open { border-color: rgba(55,135,235,0.6); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 16px 20px; cursor: pointer; font-size: 16px; font-weight: 600; color: var(--c-white); letter-spacing: 0.02em; user-select: none; }
.faq-q svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--c-btn-primary); transition: transform var(--transition); }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.25s ease; padding: 0 20px; }
.faq-item.open .faq-a { max-height: 600px; padding: 0 20px 16px; }
.faq-a p { font-size: 14px; line-height: 1.7; color: var(--c-text); font-weight: 300; }
.faq-a strong { color: var(--c-white); }

.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 18px; }
.review-card { background: var(--c-card); border: 1px solid var(--c-border); border-radius: var(--radius-lg); padding: 20px 18px; display: flex; flex-direction: column; gap: 10px; transition: box-shadow var(--transition); }
.review-card:hover { box-shadow: var(--shadow); }
.review-card-top { display: flex; align-items: center; gap: 12px; }
.review-card-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--c-nav); display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 700; color: var(--c-white); flex-shrink: 0; overflow: hidden; }
.review-card-avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-card-name { font-size: 15px; font-weight: 700; color: var(--c-white); }
.review-card-date { font-size: 11px; color: var(--c-text-muted); }
.review-card-stars { color: var(--c-btn-accent); font-size: 15px; letter-spacing: 1px; }
.review-card-text { font-size: 14px; line-height: 1.65; color: var(--c-text); font-weight: 300; }

.review-form-wrap { margin-top: 36px; }
.review-form-title { font-size: 1.4rem; font-weight: 700; color: var(--c-white); margin-bottom: 18px; }
.review-form { background: var(--c-card); border: 1px solid var(--c-border); border-radius: var(--radius-lg); padding: 28px 24px; max-width: 560px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 13px; font-weight: 500; color: var(--c-text-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.form-group input, .form-group textarea, .form-group select { background: rgba(8,9,66,0.6); border: 1px solid var(--c-border); border-radius: var(--radius-sm); padding: 11px 14px; font-family: var(--font); font-size: 14px; color: var(--c-text); transition: border-color var(--transition), box-shadow var(--transition); outline: none; width: 100%; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--c-nav); box-shadow: 0 0 0 3px rgba(55,135,235,0.2); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select option { background: var(--c-bg); }
.form-stars-select { display: flex; gap: 6px; }
.form-stars-select input[type="radio"] { display: none; }
.form-stars-select label { cursor: pointer; font-size: 22px; color: var(--c-border); transition: color 0.15s; }
.form-stars-select label:hover, .form-stars-select label.active { color: var(--c-btn-accent); }
.form-success { display: none; background: rgba(55,135,235,0.15); border: 1px solid var(--c-nav); border-radius: var(--radius-sm); padding: 14px 18px; color: var(--c-btn-accent); font-size: 15px; font-weight: 500; margin-top: 12px; }
.form-success.show { display: block; }

.footer.box { background: var(--c-nav); padding: 48px 0 24px; }
.footer-top { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 36px; flex-wrap: wrap; }
.footer-logo img { height: 54px; width: auto; object-fit: contain; margin-bottom: 12px; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4)); }
.footer-logo-link {display: block;width: fit-content;}
.footer-logo span { font-size: 20px; font-weight: 700; color: var(--c-white); display: block; margin-bottom: 8px; }
.footer-logo p { font-size: 12px; color: rgba(255,255,255,0.65); line-height: 1.5; font-weight: 300; }
.footer-col-title { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--c-btn-accent); margin-bottom: 14px; }
.footer-nav { display: flex; flex-direction: column; gap: 7px; }
.footer-nav a { font-size: 13px; color: rgba(255,255,255,0.75); transition: color var(--transition); text-decoration: none; }
.footer-nav a:hover { color: var(--c-white); }
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-social a { width: 36px; height: 36px; border-radius: var(--radius-sm); background: rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; color: var(--c-white); transition: background var(--transition); }
.footer-social a:hover { background: rgba(255,255,255,0.25); }
.footer-social a svg { width: 18px; height: 18px; }
.footer-payments { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.footer-payment-badge { background: rgba(255,255,255,0.12); border-radius: var(--radius-sm); padding: 6px 12px; font-size: 11px; font-weight: 700; color: var(--c-white); letter-spacing: 0.05em; }
.footer-mid { border-top: 1px solid rgba(255,255,255,0.15); border-bottom: 1px solid rgba(255,255,255,0.15); padding: 20px 0; margin-bottom: 20px; display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; }
.footer-trust { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.footer-trust-badge { background: rgba(255,255,255,0.1); border-radius: var(--radius-sm); padding: 6px 12px; font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.8); display: flex; align-items: center; gap: 5px; border: 1px solid rgba(255,255,255,0.2); }
.footer-trust-badge svg { width: 14px; height: 14px; }
.footer-provider { display: flex; align-items: center; gap: 10px; }
.footer-provider img { height: 28px; width: auto; object-fit: contain;  }
.footer-bottom { text-align: center; }
.footer-bottom p { font-size: 11px; color: rgba(255,255,255,0.5); line-height: 1.6; font-weight: 300; margin-bottom: 6px; }
.footer-flag { font-size: 20px; margin-bottom: 8px; }
.footer-legal { font-size: 10px; color: rgba(255,255,255,0.35); line-height: 1.5; font-weight: 300; }
.footer-email a { color: rgba(255,255,255,0.7); font-size: 13px; }
.footer-email a:hover { color: var(--c-white); }
.footer-18plus { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.4); font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.7); }
.footer-flag {height: 20px;width: auto;}

.widget-sticky { position: fixed; bottom: 24px; right: 20px; z-index: 990; display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.widget-card { background: var(--c-nav-dark); border: 1px solid rgba(55,135,235,0.5); border-radius: var(--radius-lg); padding: 14px 16px; display: flex; align-items: center; gap: 12px; box-shadow: var(--shadow-lg); max-width: 260px; animation: slideInRight 0.4s ease; transition: transform var(--transition), box-shadow var(--transition); }
.widget-card:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 12px 40px rgba(0,0,0,0.6); }
.widget-logo img { width: 54px; height: 44px; object-fit: contain; border-radius: var(--radius-sm); }
.widget-info { flex: 1; }
.widget-info-title { font-size: 12px; font-weight: 700; color: var(--c-white); text-transform: uppercase; letter-spacing: 0.05em; }
.widget-info-bonus { font-size: 11px; color: var(--c-btn-accent); font-weight: 600; margin-top: 2px; }
.widget-close { position: absolute; top: 6px; right: 8px; background: none; border: none; cursor: pointer; color: rgba(255,255,255,0.4); font-size: 16px; padding: 2px; transition: color var(--transition); line-height: 1; }
.widget-close:hover { color: var(--c-white); }
.widget-card { position: relative; }

.content.box { padding: 40px 0 60px; }
.content .text { max-width: 860px; }
.content h1 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; color: var(--c-white); margin-bottom: 24px; }
.content p { font-size: 15px; line-height: 1.7; color: var(--c-text); margin-bottom: 14px; font-weight: 300; }
.content h2 { font-size: 1.4rem; font-weight: 700; color: var(--c-white); margin: 28px 0 10px; }
.content h3 { font-size: 1.15rem; font-weight: 600; color: var(--c-btn-primary); margin: 20px 0 8px; }
.content ul, .content ol { margin: 10px 0 14px 22px; }
.content li { font-size: 14px; line-height: 1.65; color: var(--c-text); margin-bottom: 5px; }
.content a { color: var(--c-btn-accent); }
.content strong { color: var(--c-white); }

.breadcrumb { display: flex; align-items: center; gap: 7px; padding: 14px 0; font-size: 13px; color: var(--c-text-muted); flex-wrap: wrap; }
.breadcrumb a { color: var(--c-btn-primary); text-decoration: none; }
.breadcrumb a:hover { color: var(--c-btn-accent); }
.breadcrumb span { color: var(--c-text-muted); }
.breadcrumb-sep { color: rgba(255,255,255,0.3); }

@keyframes slideInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.6; } }
@keyframes countUp { from { opacity: 0; } to { opacity: 1; } }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }

.fade-in-up { animation: fadeInUp 0.5s ease both; }
.jackpot-amount { animation: fadeInUp 0.6s ease both; }
.jackpot-live { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: #4caf50; animation: pulse 1.5s ease infinite; margin-right: 4px; }

.slider-wrap { position: relative; overflow: hidden; }
.slider-track { display: flex; gap: 18px; transition: transform 0.4s ease; }
.slider-track .bonus-card { flex-shrink: 0; }
.slider-dots { display: none; justify-content: center; gap: 7px; margin-top: 16px; }
.slider-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--c-border); border: none; cursor: pointer; transition: background var(--transition); padding: 0; }
.slider-dot.active { background: var(--c-btn-primary); }
.slider-btns { display: none; gap: 10px; justify-content: center; margin-top: 12px; }
.slider-btn { background: var(--c-card); border: 1px solid var(--c-border); color: var(--c-text); border-radius: var(--radius-sm); width: 38px; height: 38px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background var(--transition); }
.slider-btn:hover { background: var(--c-card-hover); }
.slider-btn svg { width: 16px; height: 16px; }

.wp-block-cover { position: relative; }
.wp-block-group { box-sizing: border-box; }
.has-text-align-center { text-align: center; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.is-layout-flex { display: flex; }
.screen-reader-text { clip: rect(1px,1px,1px,1px); word-wrap: normal; }

@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .game-row { flex-direction: column; }
  .jackpots-grid { flex-direction: column; }
  .jackpot-card { max-width: 100% !important; }
  .lang-picker-btn {display: none;}
  .game-demo-wrap {width: 100%;}
  .game-details-wrap{width: 100%;}
}
@media (max-width: 768px) {
  .header-nav { display: none; }
  .burger { display: flex; align-items: center;}
  .hero { min-height: 400px; padding: 40px 0 32px; }
  .hero h1 { font-size: 1.9rem; }
  .footer-top { grid-template-columns: 1fr; }
  .slider-dots { display: flex; }
  .slider-btns { display: flex; }
  .bonuses-grid { overflow: hidden; }
  .section { padding: 40px 0; }
  .review-content { padding: 20px 16px; }
  .review-form { padding: 20px 16px; }
  .widget-card { max-width: 220px; }
  .lang-picker-btn {display: block;}
}
@media (max-width: 520px) {
  
  .hero-tiles { flex-direction: column; }
  .hero-tile { min-width: auto; }
  .details-table td { font-size: 13px; padding: 8px 10px; }
  .jackpot-amount { font-size: 2rem; }
  .reviews-grid { grid-template-columns: 1fr; }
}
@media (max-width: 420px) {
.lang-picker-btn {display: none;}
}