@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300&display=swap');

:root {
  --c-header: #060D43;
  --c-footer: #060D43;
  --c-bg: #060D43;
  --c-btn-primary: #035669;
  --c-btn-secondary: #060D43;
  --c-accent: #0e9bbf;
  --c-accent2: #f0c040;
  --c-text: #e8eaf6;
  --c-text-muted: #9fa8c7;
  --c-border: rgba(255,255,255,0.08);
  --c-card: rgba(255,255,255,0.04);
  --c-card-hover: rgba(255,255,255,0.08);
  --c-green: #27ae60;
  --c-red: #e74c3c;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.35);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.5);
  --transition: 0.25s ease;
  --font-main: 'Nunito', 'Avenir Light', 'Avenir', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  background: var(--c-bg);
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

body {
  font-family: var(--font-main);
  font-weight: 400;
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

img, svg, video, iframe, table { max-width: 100%; }

.x7f2a { display: none; }
.qr9b1c { visibility: hidden; position: absolute; }
.wp-block-spacer { height: 32px; }
.entry-content { max-width: 100%; }
.elementor-widget-container { display: block; }
.site-branding { display: inline-block; }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--c-accent2); }

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
}
h1 { font-size: clamp(1.6rem, 4vw, 2.6rem); }
h2 { font-size: clamp(1.3rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1rem; }
ul, ol { padding-left: 1.4rem; margin-bottom: 1rem; }
li { margin-bottom: 0.35rem; }

.wrapper { min-height: 100vh; display: flex; flex-direction: column; overflow-x: hidden; max-width: 100%; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; box-sizing: border-box; }

.box { position: relative; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }


/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 22px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.2;
  letter-spacing: 0.3px;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.4); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--c-btn-primary);
  color: #fff;
  border: 2px solid var(--c-accent);
}
.btn-primary:hover { background: #047a96; color: #fff; }

.btn-secondary {
  background: transparent;
  color: var(--c-text);
  border: 2px solid rgba(255,255,255,0.25);
}
.btn-secondary:hover { border-color: var(--c-accent); color: var(--c-accent); }

.btn-gold {
  background: linear-gradient(135deg, #d4a017, #f0c040);
  color: #060D43;
  border: none;
  font-size: 1rem;
  padding: 14px 32px;
}
.btn-gold:hover { background: linear-gradient(135deg, #e8b820, #ffe066); color: #060D43; }

.btn-lg { font-size: 1.05rem; padding: 15px 38px; }
.btn-sm { font-size: 0.82rem; padding: 8px 16px; }

/* ─── HEADER ─── */
.site-header {
  background: var(--c-header);
  border-bottom: 1px solid var(--c-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0,0,0,0.4);
}
.toc-grid, .pros-cons-grid, .bonuses-grid, .games-grid, .footer-top { min-width: 0; }
.toc-grid > *, .pros-cons-grid > *, .bonuses-grid > *, .games-grid > *, .footer-top > * { min-width: 0; }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 20px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: nowrap;
}
.header-logo img {
  height: 44px;
  width: auto;
  display: block;
}
.header-logo { flex-shrink: 0; }

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.header-nav a {
  color: var(--c-text-muted);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.header-nav a:hover { color: #fff; background: rgba(255,255,255,0.07); }
.header-nav a svg { width: 14px; height: 14px; flex-shrink: 0; }

.header-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.header-online {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--c-text-muted);
  white-space: nowrap;
}
.online-dot {
  width: 8px; height: 8px;
  background: var(--c-green);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.burger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
}
.burger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: var(--transition);
}
.burger-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.active span:nth-child(2) { opacity: 0; }
.burger-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  background: #080f4e;
  border-top: 1px solid var(--c-border);
  padding: 16px 20px;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--c-text);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 11px 0;
  border-bottom: 1px solid var(--c-border);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a svg { width: 16px; height: 16px; }
.mobile-menu-actions {
  display: flex;
  gap: 10px;
  padding-top: 14px;
}
.mobile-menu-actions .btn { flex: 1; text-align: center; }

/* ─── HEADER SCROLLED ─── */
.site-header.scrolled {
  box-shadow: 0 2px 32px rgba(0,0,0,0.6);
  padding: 0;
}
.site-header.scrolled .header-inner {
  padding-top: 8px;
  padding-bottom: 8px;
}
.site-header.scrolled .header-logo img {
  height: 36px;
}

/* ─── HERO ─── */
.hero-section {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #060D43 0%, #0a1560 50%, #060D43 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/hero-banner.png');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(6,13,67,0.92) 40%, rgba(6,13,67,0.4) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 70px 20px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(3,86,105,0.4);
  border: 1px solid var(--c-accent);
  color: var(--c-accent);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 18px;
  line-height: 1.15;
}
.hero-content h1 span { color: var(--c-accent2); }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--c-text-muted);
  max-width: 580px;
  margin-bottom: 32px;
  line-height: 1.6;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 44px;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat-val {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--c-accent2);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.78rem;
  color: var(--c-text-muted);
  margin-top: 4px;
}

/* ─── BREADCRUMBS ─── */
.breadcrumbs-bar {
  background: rgba(255,255,255,0.025);
  border-bottom: 1px solid var(--c-border);
  padding: 10px 0;
}
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--c-text-muted);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.breadcrumbs a { color: var(--c-text-muted); }
.breadcrumbs a:hover { color: var(--c-accent); }
.breadcrumbs svg { width: 12px; height: 12px; flex-shrink: 0; }
.breadcrumbs .bc-current { color: var(--c-text); }

/* ─── MAIN CONTENT AREA ─── */
.main-content {
  flex: 1;
  padding: 48px 0 64px;
}
.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-grid > * { min-width: 0; }

/* ─── SECTION HEADINGS ─── */
.sec-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.sec-heading svg { width: 22px; height: 22px; color: var(--c-accent); flex-shrink: 0; }
.sec-heading h2 { margin: 0; }
.sec-divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--c-accent), transparent);
  border-radius: 2px;
  margin-top: 6px;
}

/* ─── CARD/BLOCK ─── */
.block-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color var(--transition);
}
.block-card:hover { border-color: rgba(14,155,191,0.25); }

/* ─── TABLE OF CONTENTS ─── */
.toc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
}
.toc-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  color: var(--c-text);
  font-size: 0.875rem;
  font-weight: 600;
  transition: background var(--transition), border-color var(--transition);
}
.toc-item:hover { background: rgba(14,155,191,0.1); border-color: var(--c-accent); color: var(--c-accent); }
.toc-item svg { width: 15px; height: 15px; color: var(--c-accent); flex-shrink: 0; }

/* ─── INFO TABLE ─── */
.info-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.info-table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.info-table tr { border-bottom: 1px solid var(--c-border); }
.info-table tr:last-child { border-bottom: none; }
.info-table td {
  padding: 12px 14px;
  vertical-align: middle;
  text-align: left;
}
.info-table td:first-child {
  color: var(--c-text-muted);
  font-weight: 600;
  width: 40%;
  white-space: nowrap;
}
.info-table td:last-child { color: var(--c-text); font-weight: 500; }
.info-table tr:hover td { background: rgba(255,255,255,0.025); }
.info-table .td-icon {
  display: flex;
  align-items: center;
  gap: 8px;
}
.info-table .td-icon svg { width: 15px; height: 15px; color: var(--c-accent); flex-shrink: 0; }
.info-table .td-badge {
  display: inline-block;
  background: rgba(3,86,105,0.25);
  border: 1px solid rgba(14,155,191,0.3);
  color: var(--c-accent);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 50px;
}

/* ─── PROS/CONS ─── */
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.pros-col, .cons-col {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 22px;
}
.pros-col { border-top: 3px solid var(--c-green); }
.cons-col { border-top: 3px solid var(--c-red); }
.pc-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: #fff;
}
.pc-heading svg { width: 18px; height: 18px; }
.pros-col .pc-heading svg { color: var(--c-green); }
.cons-col .pc-heading svg { color: var(--c-red); }
.pc-list { list-style: none; padding: 0; margin: 0; }
.pc-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 8px 0;
  border-bottom: 1px solid var(--c-border);
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0;
}
.pc-list li:last-child { border-bottom: none; }
.pc-list li svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 3px; }
.pros-col .pc-list li svg { color: var(--c-green); }
.cons-col .pc-list li svg { color: var(--c-red); }

/* ─── BONUSES ─── */
.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.bonus-card {
  background: linear-gradient(135deg, rgba(3,86,105,0.2), rgba(6,13,67,0.8));
  border: 1px solid rgba(14,155,191,0.25);
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.bonus-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.bonus-card::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 100px; height: 100px;
  background: radial-gradient(circle, rgba(14,155,191,0.15), transparent);
  border-radius: 50%;
}
.bonus-tag {
  display: inline-block;
  background: rgba(3,86,105,0.4);
  color: var(--c-accent);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: fit-content;
}
.bonus-amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--c-accent2);
  line-height: 1;
}
.bonus-name {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
.bonus-desc {
  font-size: 0.82rem;
  color: var(--c-text-muted);
  line-height: 1.5;
  flex: 1;
}
.bonus-terms {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
}

/* ─── GAMES ─── */
.games-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.game-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.game-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(14,155,191,0.3); }
.game-thumb {
  aspect-ratio: 1;
  background: linear-gradient(135deg, #0a1560, #0d2080);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.game-thumb img { width: 100%; height: 100%; object-fit: cover; }
.game-thumb .game-icon-ph {
  width: 50px; height: 50px;
  background: rgba(14,155,191,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.game-thumb .game-icon-ph svg { width: 28px; height: 28px; color: var(--c-accent); }
.game-info {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.game-name {
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.game-provider {
  font-size: 0.7rem;
  color: var(--c-text-muted);
}

/* ─── SLOT MINI-GAME ─── */
.slot-machine-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 32px 20px;
}
.slot-machine {
  background: linear-gradient(135deg, #0a1240, #091050);
  border: 2px solid rgba(14,155,191,0.4);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 0 40px rgba(14,155,191,0.15), inset 0 0 60px rgba(0,0,0,0.3);
  max-width: 420px;
  width: 100%;
}
.slot-title {
  text-align: center;
  font-size: 1rem;
  font-weight: 800;
  color: var(--c-accent2);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 22px;
}
.slot-reels {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 22px;
}
.slot-reel {
  width: 88px;
  height: 100px;
  background: #010826;
  border: 2px solid rgba(14,155,191,0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
}
.slot-reel .reel-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.08s linear;
}
.slot-reel.spinning .reel-inner {
  animation: reel-spin 0.15s linear infinite;
}
@keyframes reel-spin {
  0% { transform: translateY(0); }
  100% { transform: translateY(-60px); }
}
.slot-result-msg {
  text-align: center;
  min-height: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.slot-win-text {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--c-accent2);
  animation: win-pulse 0.6s ease infinite alternate;
}
@keyframes win-pulse {
  from { text-shadow: 0 0 10px var(--c-accent2); }
  to { text-shadow: 0 0 30px var(--c-accent2), 0 0 60px rgba(240,192,64,0.4); }
}
.slot-lose-text {
  font-size: 0.95rem;
  color: var(--c-text-muted);
}
.slot-btn-row {
  display: flex;
  justify-content: center;
  margin-top: 4px;
}
.slot-credits {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-size: 0.8rem;
  color: var(--c-text-muted);
  margin-top: 12px;
}
.slot-credits span b { color: var(--c-accent2); }

/* ─── REVIEW CONTENT ─── */
.review-content {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--c-text);
}
.review-content h2 { margin: 2rem 0 1rem; color: #fff; }
.review-content h3 { margin: 1.5rem 0 0.75rem; color: #e8eaf6; }
.review-content h4 { margin: 1.2rem 0 0.6rem; }
.review-content p { margin-bottom: 1rem; }
.review-content ul, .review-content ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.review-content li { margin-bottom: 0.4rem; }
.review-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.875rem;
  overflow-x: auto;
  display: block;
}
.review-content table th {
  background: rgba(3,86,105,0.3);
  color: #fff;
  padding: 10px 14px;
  text-align: left;
  font-weight: 700;
  border: 1px solid var(--c-border);
}
.review-content table td {
  padding: 9px 14px;
  border: 1px solid var(--c-border);
  color: var(--c-text);
}
.review-content table tr:nth-child(even) td { background: rgba(255,255,255,0.02); }
.review-content a { color: var(--c-accent); text-decoration: underline; }
.review-content blockquote {
  border-left: 3px solid var(--c-accent);
  padding: 12px 20px;
  background: rgba(14,155,191,0.05);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.2rem 0;
  font-style: italic;
  color: var(--c-text-muted);
}
.review-content img { border-radius: var(--radius-sm); margin: 1rem 0; }
.review-content strong { color: #fff; }
.review-content hr { border: none; border-top: 1px solid var(--c-border); margin: 2rem 0; }

/* ─── FAQ ─── */
.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-sm);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 700;
  text-align: left;
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: background var(--transition);
}
.faq-q:hover { background: rgba(255,255,255,0.04); }
.faq-q svg {
  width: 18px; height: 18px;
  color: var(--c-accent);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-a { max-height: 400px; padding: 0 20px 18px; }
.faq-a p { font-size: 0.875rem; color: var(--c-text-muted); line-height: 1.7; margin: 0; }

/* ─── AUTHOR ─── */
.author-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.author-photo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--c-accent);
  flex-shrink: 0;
  background: rgba(14,155,191,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.author-photo svg { width: 44px; height: 44px; color: var(--c-accent); }
.author-photo img { width: 100%; height: 100%; object-fit: cover; }
.author-info { flex: 1; }
.author-name { font-size: 1.1rem; font-weight: 800; color: #fff; margin-bottom: 3px; }
.author-role { font-size: 0.82rem; color: var(--c-accent); font-weight: 600; margin-bottom: 10px; }
.author-bio { font-size: 0.875rem; color: var(--c-text-muted); line-height: 1.6; margin-bottom: 12px; }
.author-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.78rem;
  color: var(--c-text-muted);
  margin-bottom: 14px;
}
.author-meta span { display: flex; align-items: center; gap: 5px; }
.author-meta svg { width: 12px; height: 12px; }
.author-links { display: flex; gap: 10px; flex-wrap: wrap; }
.author-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border: 1px solid var(--c-border);
  border-radius: 50px;
  color: var(--c-text-muted);
  transition: border-color var(--transition), color var(--transition);
}
.author-links a:hover { border-color: var(--c-accent); color: var(--c-accent); }
.author-links a svg { width: 13px; height: 13px; }

/* ─── FOOTER ─── */
.site-footer {
  background: var(--c-footer);
  border-top: 1px solid var(--c-border);
  padding: 48px 0 24px;
  margin-top: auto;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--c-border);
}
.footer-brand .footer-logo img { height: 40px; margin-bottom: 14px; }
.footer-brand-desc {
  font-size: 0.825rem;
  color: var(--c-text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
  max-width: 300px;
}
.footer-flag { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--c-text-muted); margin-bottom: 12px; }
.footer-flag img { width: 24px; height: auto; border-radius: 3px; }
.footer-social { display: flex; gap: 10px; margin-top: 8px; }
.footer-social a {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--c-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-text-muted);
  transition: background var(--transition), color var(--transition);
}
.footer-social a:hover { background: var(--c-btn-primary); color: #fff; border-color: var(--c-accent); }
.footer-social a svg { width: 15px; height: 15px; }

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 7px; }
.footer-col ul li a { font-size: 0.85rem; color: var(--c-text-muted); }
.footer-col ul li a:hover { color: var(--c-accent); }

.footer-logos-row {
  padding: 24px 0;
  border-bottom: 1px solid var(--c-border);
}
.footer-logos-section { margin-bottom: 18px; }
.footer-logos-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--c-text-muted);
  margin-bottom: 10px;
}
.footer-logos-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.footer-logo-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--c-border);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--c-text-muted);
}
.footer-logo-pill svg { width: 12px; height: 12px; color: var(--c-accent); }

.footer-bottom {
  padding-top: 22px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-legal {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
  max-width: 680px;
}
.footer-copyright {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
  white-space: nowrap;
}

/* ─── BOTTOM WIDGET ─── */
.bottom-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(90deg, #0a1560, #035669);
  border-top: 2px solid var(--c-accent);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.4);
}
.widget-text { flex: 1; }
.widget-bonus {
  font-size: 0.75rem;
  color: var(--c-accent);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.widget-tagline {
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}
.widget-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  padding: 4px;
  font-size: 1.2rem;
  line-height: 1;
  flex-shrink: 0;
  transition: color var(--transition);
}
.widget-close:hover { color: #fff; }
.widget-cta { flex-shrink: 0; }

/* ─── INFO PAGE ─── */
.info-page-content {
  max-width: 800px;
  margin: 48px auto;
  padding: 0 20px 48px;
}
.info-page-content h1 { margin-bottom: 24px; }
.info-page-content h2 { margin: 2rem 0 1rem; font-size: 1.3rem; }
.info-page-content h3 { margin: 1.5rem 0 0.75rem; font-size: 1.1rem; }
.info-page-content p { color: var(--c-text-muted); }
.info-page-content ul, .info-page-content ol { color: var(--c-text-muted); }
.info-page-content a { color: var(--c-accent); text-decoration: underline; }

/* ─── SLIDER (MOBILE) ─── */
.slider-wrap { position: relative; }
.slider-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
}
.slider-track::-webkit-scrollbar { display: none; }
.slider-track > * { scroll-snap-align: start; flex-shrink: 0; }
.slider-dots {
  display: none;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
}
.slider-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--c-border);
  cursor: pointer;
  transition: background var(--transition);
}
.slider-dot.active { background: var(--c-accent); }

/* ─── ANIMATIONS ─── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeInUp 0.5s ease both; }
.fade-in-1 { animation-delay: 0.1s; }
.fade-in-2 { animation-delay: 0.2s; }
.fade-in-3 { animation-delay: 0.3s; }

.glow-border { box-shadow: 0 0 0 1px rgba(14,155,191,0.2); }
.glow-border:hover { box-shadow: 0 0 20px rgba(14,155,191,0.2), 0 0 0 1px rgba(14,155,191,0.4); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .games-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-top > *:first-child { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .header-online { display: none; }
  .header-right .btn { display: none; }
  .burger-btn { display: flex; }

  .pros-cons-grid { grid-template-columns: 1fr; }
  .bonuses-grid { display: none; }
  .bonuses-slider { display: block !important; }
  .bonuses-slider .slider-track .bonus-card { width: 280px; }
  .bonuses-slider .slider-dots { display: flex; }

  .games-grid { display: none; }
  .games-slider { display: block !important; }
  .games-slider .slider-track .game-card { width: 140px; }
  .games-slider .slider-dots { display: flex; }

  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; }

  .slot-reels { gap: 8px; }
  .slot-reel { width: 76px; height: 88px; font-size: 2.6rem; }

  .author-card { flex-direction: column; }
  .author-photo { align-self: center; }

  .hero-stats { gap: 20px; }
  .bottom-widget { padding: 10px 16px; }
  .widget-tagline { font-size: 0.85rem; }
}

@media (max-width: 480px) {
  .hero-content { padding: 48px 16px; }
  .toc-grid { grid-template-columns: 1fr 1fr; }
  .games-slider .slider-track .game-card { width: 130px; }
  .slot-reel { width: 70px; height: 80px; font-size: 2.2rem; }
  .block-card { padding: 20px 16px; }
}

.bonuses-slider { display: none; }
.games-slider { display: none; }

/* ─── REVIEW RATING BAR ─── */
.review-rating-bar {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  background: rgba(14,155,191,0.06);
  border: 1px solid rgba(14,155,191,0.18);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.rating-score-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 90px;
}
.rating-score-num {
  font-size: 3rem;
  font-weight: 800;
  color: var(--c-gold);
  line-height: 1;
}
.rating-stars { display: flex; gap: 3px; font-size: 1.25rem; }
.rating-stars .star.filled { color: var(--c-gold); }
.rating-stars .star.half  { color: var(--c-gold); opacity: 0.55; }
.rating-stars .star.empty { color: var(--c-border); }
.rating-label { font-size: 0.75rem; color: var(--c-text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.rating-breakdown { flex: 1; display: flex; flex-direction: column; gap: 10px; min-width: 200px; }
.rating-row { display: flex; align-items: center; gap: 10px; }
.rating-cat { font-size: 0.85rem; color: var(--c-text-muted); width: 70px; flex-shrink: 0; }
.rating-bar-wrap { flex: 1; height: 6px; background: rgba(255,255,255,0.08); border-radius: 99px; overflow: hidden; }
.rating-bar-fill { height: 100%; background: linear-gradient(90deg, var(--c-accent), var(--c-gold)); border-radius: 99px; }
.rating-val { font-size: 0.85rem; font-weight: 700; color: var(--c-text); width: 28px; text-align: right; flex-shrink: 0; }

/* ─── REVIEW ARTICLE ─── */
.review-article { margin-top: 0.5rem; }
.review-article h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin: 2rem 0 0.75rem;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--c-border);
}
.review-article h3:first-child { margin-top: 0; }

/* ─── REVIEW CTA BLOCK ─── */
.review-cta-block {
  margin-top: 2.5rem;
  padding: 28px 24px;
  background: rgba(14,155,191,0.08);
  border: 1px solid rgba(14,155,191,0.22);
  border-radius: var(--radius);
  text-align: center;
}
.review-cta-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 16px;
}
.review-cta-disclaimer {
  margin-top: 14px;
  font-size: 0.75rem;
  color: var(--c-text-muted);
  line-height: 1.5;
}

@media (max-width: 600px) {
  .review-rating-bar { flex-direction: column; gap: 20px; padding: 18px 16px; }
  .rating-score-block { flex-direction: row; min-width: unset; }
  .rating-score-num { font-size: 2.2rem; }
}

/* WordPress camouflage elements */
.wp-content-placeholder { display: none; }
.elementor-section { position: relative; }
.yoast-schema-graph { display: none; }
.wp-block-group { display: block; }
