@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-nav: #362871;
  --c-nav-dark: #271d55;
  --c-nav-light: #4a3898;
  --c-btn-orange: #e76213;
  --c-btn-orange-h: #c9520e;
  --c-btn-green: #3b6b1b;
  --c-btn-green-h: #2d5214;
  --c-bg: #bc1377;
  --c-bg-dark: #9a0f62;
  --c-bg-light: #d01585;
  --c-text-light: #ffffff;
  --c-text-muted: rgba(255,255,255,0.75);
  --c-gold: #f5c842;
  --c-gold-dark: #d4a820;
  --c-block-bg: rgba(255,255,255,0.06);
  --c-block-border: rgba(255,255,255,0.12);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.32);
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.2);
  --transition: 0.22s ease;
  --font: 'Oswald', sans-serif;
}

html { scroll-behavior: smooth; background: var(--c-bg); }
body {
  font-family: var(--font);
  background: linear-gradient(160deg, #9a0f62 0%, #bc1377 40%, #8a0d5a 100%);
  color: var(--c-text-light);
  min-height: 100vh;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--c-gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--c-gold-dark); }
img { display: block; max-width: 100%; height: auto; }
ul, ol { list-style: none; }

.wrapper { display: flex; flex-direction: column; min-height: 100vh; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 18px; }
.container--wide { max-width: 1400px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  font-family: var(--font); font-weight: 600; font-size: 15px; letter-spacing: 0.04em;
  border: none; border-radius: var(--radius-sm); cursor: pointer;
  padding: 10px 22px; transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap; text-decoration: none; line-height: 1.2;
}
.btn--orange { background: var(--c-btn-orange); color: #fff; box-shadow: 0 3px 12px rgba(231,98,19,0.4); }
.btn--orange:hover { background: var(--c-btn-orange-h); color: #fff; transform: translateY(-2px); box-shadow: 0 6px 18px rgba(231,98,19,0.5); }
.btn--green { background: var(--c-btn-green); color: #fff; box-shadow: 0 3px 12px rgba(59,107,27,0.4); }
.btn--green:hover { background: var(--c-btn-green-h); color: #fff; transform: translateY(-2px); box-shadow: 0 6px 18px rgba(59,107,27,0.5); }
.btn--gold { background: linear-gradient(135deg, var(--c-gold), var(--c-gold-dark)); color: #1a1200; font-weight: 700; box-shadow: 0 3px 14px rgba(245,200,66,0.4); }
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,200,66,0.55); color: #1a1200; }
.btn--lg { font-size: 18px; padding: 14px 34px; border-radius: var(--radius-md); }
.btn--sm { font-size: 13px; padding: 7px 16px; }
.btn--pulse { animation: btnPulse 2.2s infinite; }
@keyframes btnPulse {
  0%,100% { box-shadow: 0 3px 12px rgba(59,107,27,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(59,107,27,0.18), 0 3px 12px rgba(59,107,27,0.4); }
}

.site-header {
  background: var(--c-nav);
  box-shadow: 0 3px 18px rgba(0,0,0,0.35);
  position: sticky; top: 0; z-index: 900;
  border-bottom: 2px solid rgba(245,200,66,0.25);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 0; gap: 12px; flex-wrap: nowrap;
}
.header-logo { flex-shrink: 0; display: flex; align-items: center; }
.header-logo img { height: 52px; width: auto; }
.header-logo-text { font-size: 20px; font-weight: 700; color: var(--c-gold); letter-spacing: 0.05em; }

.header-nav { display: flex; align-items: center; gap: 4px; }
.header-nav a {
  color: rgba(255,255,255,0.88); font-weight: 500; font-size: 14px;
  padding: 6px 12px; border-radius: 6px; display: flex; align-items: center; gap: 6px;
  transition: background var(--transition), color var(--transition);
}
.header-nav a:hover, .header-nav a.active { background: rgba(255,255,255,0.1); color: var(--c-gold); }
.header-nav svg { width: 16px; height: 16px; flex-shrink: 0; }

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

.burger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 8px; border: none; background: none; border-radius: 6px;
  transition: background var(--transition);
}
.burger:hover { background: rgba(255,255,255,0.1); }
.burger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s ease; }
.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-nav {
  display: none; background: var(--c-nav-dark); border-top: 1px solid rgba(255,255,255,0.1);
  padding: 14px 18px 18px; flex-direction: column; gap: 6px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: rgba(255,255,255,0.85); font-weight: 500; font-size: 15px;
  padding: 9px 14px; border-radius: 8px; display: flex; align-items: center; gap: 8px;
  transition: background var(--transition); border: 1px solid transparent;
}
.mobile-nav a:hover { background: rgba(255,255,255,0.08); color: var(--c-gold); }
.mobile-nav svg { width: 18px; height: 18px; }

.hero-section {
  position: relative; overflow: hidden;
  min-height: 480px; display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('/wheres-the-gold-slot-hero.webp');
  background-size: cover; background-position: center;
  filter: brightness(0.65);
  transition: transform 8s ease;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(54,40,113,0.85) 0%, rgba(188,19,119,0.45) 60%, transparent 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 60px 0 50px;
  max-width: 600px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(245,200,66,0.15); border: 1px solid rgba(245,200,66,0.4);
  color: var(--c-gold); font-size: 13px; font-weight: 600; letter-spacing: 0.06em;
  padding: 5px 14px; border-radius: 20px; margin-bottom: 16px; text-transform: uppercase;
}
.hero-title {
  font-size: clamp(30px, 5vw, 52px); font-weight: 700; line-height: 1.15;
  color: #fff; margin-bottom: 14px; text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  text-transform: uppercase; letter-spacing: 0.02em;
}
.hero-title span { color: var(--c-gold); }
.hero-desc {
  font-size: 16px; color: rgba(255,255,255,0.9); margin-bottom: 28px;
  line-height: 1.6; max-width: 480px;
}
.hero-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.hero-rating {
  display: flex; align-items: center; gap: 10px; margin-top: 24px;
  background: rgba(0,0,0,0.3); border-radius: 10px; padding: 10px 16px;
  border: 1px solid rgba(245,200,66,0.2); display: inline-flex;
}
.hero-stars { display: flex; gap: 3px; }
.hero-stars svg { width: 20px; height: 20px; fill: var(--c-gold); }
.hero-stars svg.half { fill: url(#halfStar); }
.hero-rating-info { font-size: 14px; color: rgba(255,255,255,0.85); }
.hero-rating-info strong { color: var(--c-gold); font-size: 18px; }

.section { padding: 54px 0; }
.section--dark { background: rgba(0,0,0,0.18); }
.section-title {
  font-size: clamp(22px, 3.5vw, 34px); font-weight: 700; text-align: center;
  color: #fff; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.03em;
}
.section-title span { color: var(--c-gold); }
.section-subtitle {
  text-align: center; color: rgba(255,255,255,0.7); font-size: 15px;
  margin-bottom: 36px; line-height: 1.5;
}

.block-card {
  background: var(--c-block-bg); border: 1px solid var(--c-block-border);
  border-radius: var(--radius-md); padding: 26px 24px;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.block-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: rgba(245,200,66,0.25); }

.pros-cons-grid { display: flex; gap: 20px; }
.pros-cons-col { flex: 1; }
.pros-cons-col h3 {
  font-size: 18px; font-weight: 700; margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px; text-transform: uppercase;
}
.pros-col h3 { color: #6ee67a; }
.cons-col h3 { color: #f87171; }
.pros-cons-list { display: flex; flex-direction: column; gap: 10px; }
.pros-cons-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 15px; line-height: 1.5; color: rgba(255,255,255,0.9);
}
.pros-cons-item svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; }
.pros-item svg { color: #6ee67a; }
.cons-item svg { color: #f87171; }

.winners-table-wrap { overflow-x: auto; border-radius: var(--radius-md); }
.winners-table {
  width: 100%; border-collapse: collapse;
  background: rgba(0,0,0,0.25); border-radius: var(--radius-md);
  overflow: hidden;
}
.winners-table thead tr { background: var(--c-nav); }
.winners-table th {
  padding: 13px 16px; text-align: left; font-size: 13px; font-weight: 700;
  color: var(--c-gold); text-transform: uppercase; letter-spacing: 0.06em;
  border-bottom: 2px solid rgba(245,200,66,0.3);
}
.winners-table td { padding: 10px 16px; font-size: 14px; color: rgba(255,255,255,0.88); border-bottom: 1px solid rgba(255,255,255,0.07); }
.winners-table tbody tr:hover { background: rgba(255,255,255,0.04); }
.winners-table tbody tr:nth-child(1) td { color: #fff; }
.winners-table tbody tr:nth-child(1) .wt-rank { color: var(--c-gold); font-size: 18px; }
.winners-table tbody tr:nth-child(2) .wt-rank { color: #c0c0c0; font-size: 16px; }
.winners-table tbody tr:nth-child(3) .wt-rank { color: #cd7f32; font-size: 16px; }
.wt-rank { font-weight: 700; font-size: 15px; }
.wt-win { font-weight: 700; color: #6ee67a !important; }
.wt-badge { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.05em; padding: 2px 8px; border-radius: 20px; background: rgba(245,200,66,0.15); color: var(--c-gold); }
#winnersCountdown { display: flex; align-items: center; justify-content: flex-end; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 10px; }
#winnersCountdown span { color: var(--c-gold); font-weight: 600; }

.demo-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 2px solid rgba(245,200,66,0.3); box-shadow: var(--shadow); }
.demo-bar {
  background: var(--c-nav); padding: 12px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap;
}
.demo-bar-title { font-size: 16px; font-weight: 700; color: var(--c-gold); display: flex; align-items: center; gap: 8px; }
.demo-bar-title svg { width: 20px; height: 20px; }
.demo-iframe-wrap { position: relative; width: 100%; padding-top: 56.25%; background: #0a0a1a; }
.demo-iframe-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.demo-notice { text-align: center; padding: 14px 18px; font-size: 13px; color: rgba(255,255,255,0.55); background: rgba(0,0,0,0.3); }
.demo-notice a { color: var(--c-gold); }

.bonuses-grid { display: flex; gap: 20px; flex-wrap: wrap; }
.bonus-card {
  flex: 1; min-width: 260px;
  background: linear-gradient(145deg, rgba(54,40,113,0.7) 0%, rgba(40,30,90,0.9) 100%);
  border: 1px solid rgba(245,200,66,0.25); border-radius: var(--radius-md);
  padding: 24px 20px; display: flex; flex-direction: column; gap: 12px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.bonus-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,0.4); border-color: rgba(245,200,66,0.5); }
.bonus-card-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 20px; width: fit-content;
}
.badge-exclusive { background: rgba(231,98,19,0.2); color: var(--c-btn-orange); border: 1px solid rgba(231,98,19,0.4); }
.badge-popular { background: rgba(59,107,27,0.2); color: #6ee67a; border: 1px solid rgba(59,107,27,0.4); }
.badge-new { background: rgba(245,200,66,0.15); color: var(--c-gold); border: 1px solid rgba(245,200,66,0.3); }
.bonus-casino-name { font-size: 20px; font-weight: 700; color: #fff; }
.bonus-amount { font-size: 28px; font-weight: 700; color: var(--c-gold); line-height: 1; }
.bonus-amount span { font-size: 16px; color: rgba(255,255,255,0.7); }
.bonus-terms { font-size: 12px; color: rgba(255,255,255,0.5); }
.bonus-features { display: flex; flex-direction: column; gap: 6px; }
.bonus-feature { display: flex; align-items: center; gap: 7px; font-size: 13px; color: rgba(255,255,255,0.8); }
.bonus-feature svg { width: 15px; height: 15px; color: #6ee67a; flex-shrink: 0; }
.bonus-rating-row { display: flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 10px; border-top: 1px solid rgba(255,255,255,0.1); }
.bonus-stars { display: flex; gap: 2px; }
.bonus-stars svg { width: 14px; height: 14px; fill: var(--c-gold); }
.bonus-rating-num { font-size: 13px; color: rgba(255,255,255,0.7); }

.content-review h2 { font-size: 26px; font-weight: 700; color: var(--c-gold); margin: 28px 0 12px; text-transform: uppercase; letter-spacing: 0.03em; line-height: 1.2; }
.content-review h3 { font-size: 20px; font-weight: 600; color: #fff; margin: 22px 0 10px; line-height: 1.3; }
.content-review h4 { font-size: 17px; font-weight: 600; color: rgba(255,255,255,0.9); margin: 16px 0 8px; }
.content-review p { font-size: 15px; line-height: 1.65; color: rgba(255,255,255,0.85); margin-bottom: 14px; }
.content-review ul, .content-review ol { padding-left: 22px; margin-bottom: 14px; }
.content-review ul { list-style: disc; }
.content-review ol { list-style: decimal; }
.content-review li { font-size: 15px; line-height: 1.65; color: rgba(255,255,255,0.85); margin-bottom: 6px; }
.content-review a { color: var(--c-gold); text-decoration: underline; }
.content-review a:hover { color: var(--c-gold-dark); }
.content-review strong { color: #fff; }
.content-review em { color: var(--c-gold); font-style: normal; }
.content-review blockquote {
  border-left: 3px solid var(--c-gold); padding: 12px 18px;
  background: rgba(245,200,66,0.07); margin: 18px 0; border-radius: 0 8px 8px 0;
  font-size: 15px; color: rgba(255,255,255,0.85); line-height: 1.6;
}
.content-review table { width: 100%; border-collapse: collapse; margin: 18px 0; border-radius: var(--radius-sm); overflow: hidden; }
.content-review th { background: var(--c-nav); padding: 10px 14px; text-align: left; font-size: 13px; color: var(--c-gold); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.content-review td { padding: 10px 14px; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 14px; color: rgba(255,255,255,0.85); }
.content-review tr:hover td { background: rgba(255,255,255,0.03); }
.content-review img { border-radius: var(--radius-sm); margin: 14px 0; box-shadow: var(--shadow-sm); }
.content-review hr { border: none; border-top: 1px solid rgba(255,255,255,0.12); margin: 24px 0; }

.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  border: 1px solid var(--c-block-border); border-radius: var(--radius-sm);
  background: var(--c-block-bg); overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: rgba(245,200,66,0.35); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 16px 20px; cursor: pointer; user-select: none;
  font-size: 15px; font-weight: 600; color: #fff; line-height: 1.4;
  transition: background var(--transition);
}
.faq-q:hover { background: rgba(255,255,255,0.04); }
.faq-item.open .faq-q { color: var(--c-gold); }
.faq-icon { width: 22px; height: 22px; flex-shrink: 0; border: 1.5px solid rgba(255,255,255,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: transform 0.3s ease, background 0.2s; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(245,200,66,0.15); border-color: var(--c-gold); }
.faq-icon svg { width: 12px; height: 12px; stroke: currentColor; }
.faq-a {
  display: none; padding: 0 20px 18px; font-size: 14px;
  color: rgba(255,255,255,0.82); line-height: 1.65;
}
.faq-item.open .faq-a { display: block; }
.faq-a a { color: var(--c-gold); text-decoration: underline; }

.author-card {
  display: flex; gap: 28px; align-items: flex-start;
  background: linear-gradient(135deg, rgba(54,40,113,0.55) 0%, rgba(30,20,70,0.7) 100%);
  border: 1px solid rgba(245,200,66,0.2); border-radius: var(--radius-lg); padding: 30px 28px;
}
.author-photo { flex-shrink: 0; }
.author-photo img { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; border: 3px solid var(--c-gold); box-shadow: 0 0 20px rgba(245,200,66,0.3); }
.author-photo-placeholder {
  width: 100px; height: 100px; border-radius: 50%;
  background: linear-gradient(135deg, var(--c-nav-light), var(--c-nav-dark));
  border: 3px solid var(--c-gold); display: flex; align-items: center; justify-content: center;
  font-size: 36px; font-weight: 700; color: var(--c-gold);
}
.author-info { flex: 1; }
.author-name { font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.author-title { font-size: 14px; color: var(--c-gold); margin-bottom: 12px; font-weight: 500; display: flex; align-items: center; gap: 6px; }
.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: rgba(255,255,255,0.7); }
.author-meta-item svg { width: 15px; height: 15px; color: var(--c-gold); }
.author-bio { font-size: 14px; line-height: 1.65; color: rgba(255,255,255,0.82); margin-bottom: 14px; }
.author-links { display: flex; gap: 10px; flex-wrap: wrap; }
.author-link {
  display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600;
  padding: 6px 14px; border-radius: 6px; border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8); transition: all var(--transition);
}
.author-link:hover { background: rgba(255,255,255,0.08); border-color: var(--c-gold); color: var(--c-gold); }
.author-link svg { width: 16px; height: 16px; }
.author-dates { margin-top: 12px; display: flex; gap: 18px; flex-wrap: wrap; }
.author-date { font-size: 12px; color: rgba(255,255,255,0.5); }
.author-date strong { color: rgba(255,255,255,0.75); }

.site-footer {
  background: var(--c-nav-dark); margin-top: auto;
  border-top: 3px solid rgba(245,200,66,0.2);
}
.footer-top { padding: 42px 0 30px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-grid { display: flex; gap: 36px; flex-wrap: wrap; }
.footer-col { flex: 1; min-width: 180px; }
.footer-col h4 { font-size: 13px; font-weight: 700; color: var(--c-gold); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }
.footer-logo { margin-bottom: 12px; }
.footer-logo-link {display: block;width: fit-content;}
.footer-logo img { height: 48px; width: auto; }
.footer-logo-text { font-size: 18px; font-weight: 700; color: var(--c-gold); }
.footer-desc { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; margin-bottom: 14px; }
.footer-nav-links { display: flex; flex-direction: column; gap: 7px; }
.footer-nav-links a { font-size: 13px; color: rgba(255,255,255,0.65); transition: color var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-nav-links a:hover { color: var(--c-gold); }
.footer-nav-links svg { width: 14px; height: 14px; }
.footer-social-links { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-social-link {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition); color: rgba(255,255,255,0.7);
}
.footer-social-link:hover { background: rgba(245,200,66,0.15); border-color: rgba(245,200,66,0.4); color: var(--c-gold); }
.footer-social-link svg { width: 17px; height: 17px; }
.footer-payments { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.footer-payment-badge {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px; padding: 6px 12px; font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.75);
  letter-spacing: 0.04em;
}
.footer-trust { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.footer-trust-badge {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px; padding: 5px 10px; font-size: 11px; font-weight: 700;
  color: rgba(255,255,255,0.6); letter-spacing: 0.04em;
}
.footer-trust-badge.age { background: rgba(231,98,19,0.15); color: var(--c-btn-orange); border-color: rgba(231,98,19,0.3); font-size: 14px; font-weight: 900; }
.footer-flag { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.6); }
.footer-flag img {height: 20px;width: auto;}
.footer-bottom { padding: 18px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.footer-copyright { font-size: 12px; color: rgba(255,255,255,0.45); }
.footer-copyright a { color: rgba(255,255,255,0.6); }
.footer-legal { font-size: 11px; color: rgba(255,255,255,0.35); line-height: 1.55; margin-top: 8px; }
.footer-email { display: flex; align-items: center; gap: 6px; font-size: 13px; color: rgba(255,255,255,0.6); }
.footer-email svg { width: 15px; height: 15px; color: var(--c-gold); }
.footer-provider { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.footer-provider img { height: 28px; opacity: 0.7; transition: opacity var(--transition); filter: brightness(0) invert(1); }
.footer-provider img:hover { opacity: 1; }

.sticky-widget {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: linear-gradient(90deg, var(--c-nav) 0%, var(--c-nav-dark) 100%);
  border-top: 2px solid rgba(245,200,66,0.35);
  z-index: 950; padding: 10px 18px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.4);
  transform: translateY(100%); transition: transform 0.4s ease;
}
.sticky-widget.visible { transform: translateY(0); }
.sticky-widget-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.widget-casino-info { display: flex; align-items: center; gap: 14px; }
.widget-logo { height: 38px; width: auto; }
.widget-label { font-size: 12px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.06em; }
.widget-bonus-text { font-size: 16px; font-weight: 700; color: var(--c-gold); }
.widget-close {
  position: absolute; top: 8px; right: 14px;
  background: none; border: none; color: rgba(255,255,255,0.4); cursor: pointer;
  font-size: 20px; line-height: 1; transition: color var(--transition);
}
.widget-close:hover { color: rgba(255,255,255,0.85); }

@media (max-width: 767px) {
  .bonuses-grid { flex-direction: column; }
  .bonus-slider-nav { display: flex; justify-content: center; gap: 8px; margin-top: 16px; }
  .bonus-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.25); border: none; cursor: pointer; padding: 0; transition: background var(--transition); }
  .bonus-dot.active { background: var(--c-gold); }
}
@media (min-width: 768px) {
  .bonus-slider-nav { display: none; }
}

.breadcrumb { padding: 10px 0; font-size: 13px; color: rgba(255,255,255,0.55); }
.breadcrumb a { color: rgba(255,255,255,0.65); }
.breadcrumb a:hover { color: var(--c-gold); }
.breadcrumb span { color: rgba(255,255,255,0.4); margin: 0 6px; }

.game-info-grid { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.game-info-chip {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px; padding: 8px 14px; display: flex; flex-direction: column; gap: 2px;
  flex: 1; min-width: 100px;
}
.game-info-chip-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.5); }
.game-info-chip-value { font-size: 14px; font-weight: 700; color: var(--c-gold); }

.info-page-content h1 { font-size: 32px; font-weight: 700; color: var(--c-gold); margin-bottom: 24px; text-transform: uppercase; letter-spacing: 0.03em; }
.info-page-content h2 { font-size: 22px; font-weight: 700; color: #fff; margin: 22px 0 10px; }
.info-page-content p { font-size: 15px; line-height: 1.65; color: rgba(255,255,255,0.82); margin-bottom: 14px; }
.info-page-content ul { padding-left: 20px; list-style: disc; margin-bottom: 14px; }
.info-page-content li { font-size: 15px; color: rgba(255,255,255,0.82); line-height: 1.65; margin-bottom: 6px; }
.info-page-content a { color: var(--c-gold); text-decoration: underline; }
.info-page-content table { width: 100%; border-collapse: collapse; margin: 18px 0; }
.info-page-content th { background: var(--c-nav); padding: 10px 14px; text-align: left; font-size: 13px; color: var(--c-gold); font-weight: 700; }
.info-page-content td { padding: 10px 14px; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 14px; color: rgba(255,255,255,0.82); }

.fade-in { opacity: 0; transform: translateY(18px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.slide-in-left { opacity: 0; transform: translateX(-20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.slide-in-left.visible { opacity: 1; transform: translateX(0); }
.slide-in-right { opacity: 0; transform: translateX(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.slide-in-right.visible { opacity: 1; transform: translateX(0); }

.wp-block-group,.entry-content,.post-content { display: contents; }
.elementor-section { display: contents; }
.yoast-breadcrumb { display: none; }

.wpcf7-form input[type=email]{border:1px solid #ddd;padding:9px 12px;width:100%;border-radius:4px;}
.tribe-events-calendar td{padding:8px;border:1px solid #eee;}
.pp-advanced-accordion .pp-accordion-header{cursor:pointer;padding:15px;background:#f5f5f5;}
.theiaStickySidebar{position:relative;}
.owl-carousel .owl-stage{display:flex;}

.xp7k3q { display: block; }
.m9v2lw { visibility: visible; }
.r4t8bz { position: relative; }

@media (max-width: 1024px) {
  .header-nav { display: none; }
  .burger { display: flex; }
  .pros-cons-grid { flex-direction: column; }
  
}
@media (max-width: 768px) {
  .section { padding: 36px 0; }
  .hero-section { min-height: 360px; }
  .hero-content { padding: 40px 0 36px; }
  .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-grid { flex-direction: column; gap: 24px; }
  .sticky-widget-inner { flex-direction: column; align-items: flex-start; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .game-info-grid { gap: 8px; }
  .game-info-chip { min-width: 80px; }
  .block-card {padding: 24px 22px;}
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn--lg { width: 100%; justify-content: center; }
  .winners-table th, .winners-table td { padding: 8px 10px; font-size: 13px; }
  .block-card {padding: 20px 18px;}
}
@media (max-width: 420px) {
.header-cta .btn--orange {display: none;}
}