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

:root {
  --color-nav: #362871;
  --color-nav-dark: #261d54;
  --color-btn-orange: #e76213;
  --color-btn-orange-hover: #c9500e;
  --color-btn-green: #3b6b1b;
  --color-btn-green-hover: #2e5214;
  --color-bg: #bc1377;
  --color-bg-dark: #9a0f62;
  --color-bg-section: #a0115f;
  --color-text: #ffffff;
  --color-text-muted: rgba(255,255,255,0.75);
  --color-card: rgba(54,40,113,0.85);
  --color-card-border: rgba(231,98,19,0.4);
  --color-gold: #f5c518;
  --color-gold-light: #fde68a;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow: 0 4px 24px rgba(0,0,0,0.35);
  --transition: 0.22s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Oswald', sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.55;
  font-size: 16px;
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

h1,h2,h3,h4,h5,h6 { line-height: 1.25; font-weight: 600; color: var(--color-text); }
h1 { font-size: clamp(1.6rem, 4vw, 2.6rem); margin-bottom: 0.6em; }
h2 { font-size: clamp(1.3rem, 3vw, 2rem); margin-bottom: 0.5em; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); margin-bottom: 0.4em; }

p { margin-bottom: 0.9em; }
ul, ol { padding-left: 1.4em; margin-bottom: 0.9em; }
li { margin-bottom: 0.3em; }

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

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

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

.section-gap { margin-bottom: 32px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-transform: uppercase;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,0.4); }
.btn:active { transform: translateY(0); }

.btn--orange { background: var(--color-btn-orange); color: #fff; }
.btn--orange:hover { background: var(--color-btn-orange-hover); color: #fff; }

.btn--green { background: var(--color-btn-green); color: #fff; }
.btn--green:hover { background: var(--color-btn-green-hover); color: #fff; }

.btn--gold { background: var(--color-gold); color: #1a0a00; }
.btn--gold:hover { background: var(--color-gold-light); color: #1a0a00; }

.btn--outline { background: transparent; border: 2px solid var(--color-btn-orange); color: var(--color-btn-orange); }
.btn--outline:hover { background: var(--color-btn-orange); color: #fff; }

.btn--sm { padding: 7px 14px; font-size: 0.82rem; }
.btn--lg { padding: 13px 30px; font-size: 1.05rem; }

.site-header {
  background: var(--color-nav);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 16px rgba(0,0,0,0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 12px;
  flex-wrap: wrap;
}

.header-logo { flex-shrink: 0; }
.header-logo img { height: 48px; width: auto; }

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.header-nav a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--color-text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.header-nav a:hover { background: rgba(255,255,255,0.1); color: #fff; }
.header-nav a svg { width: 16px; height: 16px; flex-shrink: 0; }

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

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  border: none;
}
.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-nav-wrap {
  display: none;
  background: var(--color-nav-dark);
  padding: 16px;
  flex-direction: column;
  gap: 8px;
}
.mobile-nav-wrap.active { display: flex; }
.mobile-nav-wrap a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text-muted);
  font-size: 1rem;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}
.mobile-nav-wrap a:hover { background: rgba(255,255,255,0.1); color: #fff; }
.mobile-nav-wrap a svg { width: 18px; height: 18px; }

.hero-section {
  background: linear-gradient(135deg, #1a0a3a 0%, var(--color-nav) 40%, var(--color-bg-dark) 100%);
  position: relative;
  overflow: hidden;
  padding: 48px 0 36px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/img/where-is-the-gold-hero.jpg');
  background-size: cover;
  background-position: center ;
  opacity: 0.22;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 32px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.hero-frame-block {
  flex: 1 1 520px;
  min-width: 280px;
}

.hero-frame-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #000;
  aspect-ratio: 16/10;
  box-shadow: var(--shadow);
  border: 2px solid var(--color-card-border);
}

.hero-frame-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.demo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #0d051e 0%, #1e0e3a 100%);
  cursor: pointer;
  transition: opacity 0.3s;
  z-index: 2;
}
.demo-placeholder img { width: 200px; border-radius: var(--radius-sm); margin-bottom: 18px; opacity: 0.9; }
.demo-placeholder .play-icon {
  width: 72px; height: 72px;
  background: var(--color-btn-green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 6px rgba(59,107,27,0.3);
  transition: transform var(--transition), box-shadow var(--transition);
  margin-bottom: 12px;
}
.demo-placeholder:hover .play-icon { transform: scale(1.1); box-shadow: 0 0 0 10px rgba(59,107,27,0.25); }
.demo-placeholder p { color: var(--color-text-muted); font-size: 0.9rem; }

.hero-frame-btns {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.hero-info-block {
  flex: 1 1 260px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-title { font-size: clamp(1.5rem, 3.5vw, 2.4rem); font-weight: 700; line-height: 1.2; }
.hero-title span { color: var(--color-gold); }
.hero-desc { color: var(--color-text-muted); font-size: 1rem; line-height: 1.6; }

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hero-badge {
  background: rgba(245,197,24,0.15);
  border: 1px solid rgba(245,197,24,0.35);
  color: var(--color-gold-light);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-ctas { display: flex; gap: 10px; flex-wrap: wrap; }

.content-section { padding-top: 36px;padding-bottom: 36px; }

.section-title {
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-title svg { width: 24px; height: 24px; flex-shrink: 0; }
.section-title::after {
  content: '';
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold) 0%, transparent 100%);
  border-radius: 2px;
  margin-left: 10px;
}

.card-block {
  background: var(--color-card);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}

.toc-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.toc-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 9px 14px;
  color: var(--color-text);
  font-size: 0.88rem;
  font-weight: 500;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.toc-item:hover { background: rgba(231,98,19,0.2); border-color: var(--color-btn-orange); transform: translateY(-2px); color: #fff; }
.toc-item svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--color-btn-orange); }

.casinos-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.casino-list { display: flex; flex-direction: column; gap: 14px; }

.casino-card {
  background: var(--color-card);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  display: flex;
  gap: 16px;
  align-items: stretch;
  flex-wrap: wrap;
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}
.casino-card:hover { box-shadow: 0 8px 32px rgba(231,98,19,0.25); transform: translateY(-2px); }

.casino-card--top { border-color: var(--color-gold); }
.casino-card--top::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-btn-orange));
}

.casino-num {
  position: absolute;
  top: 10px;
  left: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-text-muted);
  background: rgba(0,0,0,0.3);
  border-radius: 4px;
  padding: 2px 6px;
}
.casino-card--top .casino-num { color: var(--color-gold); }

.casino-logo-wrap {
  flex-shrink: 0;
  width: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.casino-logo-wrap img {
  width: auto;
  height: 70px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.95);
  padding: 1px;
}
.casino-country {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  color: var(--color-gold-light);
}
.casino-country span { font-size: 1rem; }

.casino-body { flex: 1; min-width: 180px; }
.casino-name { font-size: 1.05rem; font-weight: 700; color: var(--color-gold); margin-bottom: 4px; padding-top: 18px; }
.casino-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}
.casino-stars { color: var(--color-gold); font-size: 1rem; letter-spacing: 1px; }
.casino-rating-num { font-size: 0.85rem; font-weight: 700; color: var(--color-gold-light); }
.casino-bonus {
  background: rgba(59,107,27,0.25);
  border: 1px solid rgba(59,107,27,0.5);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #a5f3a0;
  margin-bottom: 10px;
}
.casino-bonus span { color: #fff; font-weight: 400; font-size: 0.8rem; }

.casino-pros { list-style: none; padding: 0; margin: 0 0 10px; }
.casino-pros li {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 0.84rem;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}
.casino-pros li::before { content: '✓'; color: var(--color-btn-green); font-weight: 700; flex-shrink: 0; }

.casino-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}
.casino-meta-tag {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.76rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 3px 8px;
  border-radius: 20px;
  color: var(--color-text-muted);
}
.casino-meta-tag svg { width: 12px; height: 12px; }

.casino-actions {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: stretch;
  justify-content: center;
  min-width: 130px;
}
.casino-tc {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
  text-align: center;
}
.casino-tc a { color: rgba(255,255,255,0.45); text-decoration: underline; }

.load-more-wrap { text-align: center; margin-top: 24px; }

.game-details-section {  padding-top: 36px;padding-bottom: 36px; }

.game-details-grid {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.game-details-frame {
  flex: 1 1 400px;
  min-width: 280px;
}

.game-details-table-wrap { flex: 1 1 340px; min-width: 260px; }

.game-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.game-table tr { border-bottom: 1px solid rgba(255,255,255,0.08); }
.game-table tr:last-child { border-bottom: none; }
.game-table td {
  padding: 9px 12px;
  vertical-align: middle;
}
.game-table td:first-child {
  color: var(--color-text-muted);
  font-weight: 500;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}
.game-table td:first-child svg { width: 15px; height: 15px; color: var(--color-gold); flex-shrink: 0; }
.game-table td:last-child { color: var(--color-text); font-weight: 600; text-align: right; }
.game-table tr:nth-child(even) { background: rgba(255,255,255,0.03); }

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

.advantages-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.adv-card {
  background: var(--color-card);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-md);
  padding: 20px;
  flex: 1 1 200px;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.adv-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.35); }
.adv-card-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(231,98,19,0.15);
  border: 1px solid rgba(231,98,19,0.3);
  display: flex; align-items: center; justify-content: center;
}
.adv-card-icon svg { width: 24px; height: 24px; color: var(--color-btn-orange); }
.adv-card h4 { font-size: 0.92rem; font-weight: 700; color: var(--color-text); }
.adv-card p { font-size: 0.82rem; color: var(--color-text-muted); line-height: 1.5; margin: 0; }

.bonuses-section {  padding-top: 36px;padding-bottom: 36px; }

.bonuses-slider-wrap { position: relative; }

.bonuses-slider {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 10px;
  scrollbar-width: thin;
  scrollbar-color: var(--color-btn-orange) transparent;
}
.bonuses-slider::-webkit-scrollbar { height: 4px; }
.bonuses-slider::-webkit-scrollbar-thumb { background: var(--color-btn-orange); border-radius: 2px; }

.bonus-card {
  flex: 0 0 calc(33.333% - 11px);
  min-width: 260px;
  scroll-snap-align: start;
  background: var(--color-card);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-md);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.bonus-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(231,98,19,0.25); }
.bonus-card-header { display: flex; align-items: center; gap: 12px; }
.bonus-card-header img { width: auto; height: 60px; object-fit: contain; background: #fff; border-radius: var(--radius-sm); padding: 1px; }
.bonus-card-name { font-size: 1rem; font-weight: 700; color: var(--color-gold); }
.bonus-amount { font-size: 1.4rem; font-weight: 700; color: var(--color-btn-orange); }
.bonus-desc { font-size: 0.82rem; color: var(--color-text-muted); }
.bonus-tc { font-size: 0.7rem; color: rgba(255,255,255,0.4); margin-top: auto; }

.review-section {  padding-top: 36px;padding-bottom: 36px; }

.review-author-block {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding: 16px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.1);
}
.review-author-avatar {
  min-width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--color-btn-orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.review-author-name { font-size: 1rem; font-weight: 700; color: var(--color-text); }
.review-author-title { font-size: 0.8rem; color: var(--color-text-muted); }
.review-author-bio { font-size: 0.8rem; color: var(--color-text-muted); margin-top: 4px; }

.review-content-block { font-size: 0.95rem; line-height: 1.7; color: var(--color-text); }

.review-content-block h2,
.review-content-block h3,
.review-content-block h4 {
  color: var(--color-gold);
  margin: 1.2em 0 0.5em;
}
.review-content-block p { margin-bottom: 0.9em; color: rgba(255,255,255,0.9); }
.review-content-block ul,
.review-content-block ol { padding-left: 1.5em; margin-bottom: 1em; }
.review-content-block li { margin-bottom: 0.4em; color: rgba(255,255,255,0.85); }
.review-content-block a { color: var(--color-btn-orange); }
.review-content-block a:hover { color: var(--color-gold); }
.review-content-block table {
  width: 100%;
  border-collapse: collapse;
  margin: 1em 0;
  font-size: 0.88rem;
  overflow: hidden;
  border-radius: var(--radius-sm);
}
.review-content-block th {
  background: var(--color-nav);
  color: var(--color-gold);
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.12);
}
.review-content-block td {
  padding: 9px 14px;
  border: 1px solid rgba(255,255,255,0.08);
  vertical-align: top;
}
.review-content-block tr:nth-child(even) td { background: rgba(255,255,255,0.04); }
.review-content-block strong { color: #fff; }
.review-content-block em { color: var(--color-gold-light); font-style: italic; }
.review-content-block blockquote {
  border-left: 4px solid var(--color-btn-orange);
  padding-left: 16px;
  color: var(--color-text-muted);
  font-style: italic;
  margin: 1em 0;
}
.review-content-block hr { border: none; border-top: 1px solid rgba(255,255,255,0.12); margin: 1.5em 0; }
.review-content-block img { border-radius: var(--radius-sm); max-width: 100%; margin: 0.5em 0; }

.faq-section {  padding-top: 36px;padding-bottom: 36px; }

.faq-list { display: flex; flex-direction: column; gap: 8px; }

.faq-item {
  background: var(--color-card);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--color-btn-orange); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  gap: 12px;
  user-select: none;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--color-gold); }
.faq-item.open .faq-question { color: var(--color-gold); }

.faq-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 2px solid currentColor;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
}
.faq-item.open .faq-icon { background: var(--color-btn-orange); border-color: var(--color-btn-orange); transform: rotate(45deg); }
.faq-icon svg { width: 12px; height: 12px; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding var(--transition);
  padding: 0 18px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}
.faq-item.open .faq-answer { max-height: 400px; padding: 0 18px 16px; }

.site-footer {
  background: var(--color-nav);
  padding: 36px 0 20px;
  margin-top: auto;
}

.footer-top {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 20px;
}

.footer-brand { flex: 0 0 200px; }
.footer-logo { height: 48px; width: auto; margin-bottom: 12px; }
.footer-brand-link {display: block;width: fit-content;}
.footer-tagline { font-size: 0.82rem; color: var(--color-text-muted); line-height: 1.55; }

.footer-nav-col h5 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.footer-nav-col-link {display: block;width: fit-content;}
.footer-nav-col a {
  display: block;
  font-size: 0.83rem;
  color: var(--color-text-muted);
  padding: 3px 0;
  transition: color var(--transition);
}
.footer-nav-col a:hover { color: #fff; }

.footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.payment-badge {
  background: rgba(255,255,255,0.9);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #1a1a2e;
}

.footer-socials {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-text-muted);
  transition: background var(--transition), color var(--transition), transform var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
}
.social-link:hover { background: var(--color-btn-orange); color: #fff; transform: scale(1.1); }
.social-link svg { width: 16px; height: 16px; }

.footer-middle {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 16px;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 5px 10px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: border-color var(--transition), color var(--transition);
}
.trust-badge:hover { border-color: var(--color-gold); color: var(--color-gold); }
.trust-badge svg { width: 14px; height: 14px; }

.footer-bottom {
  text-align: center;
}
.footer-copyright {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}
.footer-copyright a { color: rgba(255,255,255,0.5); text-decoration: underline; }
.age-flag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #cc0000;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 4px;
  margin: 4px 4px 0;
}
.flag-au {
  height: 20px;width: auto;
  margin-top: 5px;
}

.bonus-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(90deg, var(--color-nav-dark) 0%, #1f0e42 100%);
  border-top: 2px solid var(--color-gold);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
}
.widget-text {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}
.widget-text .widget-label {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.widget-text .widget-bonus {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-gold);
}
.widget-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  padding: 6px;
  font-size: 1.1rem;
  line-height: 1;
  transition: color var(--transition);
  flex-shrink: 0;
}
.widget-close:hover { color: #fff; }

.demo-block-inner {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.demo-frame-wrap {
  flex: 1 1 500px;
  min-width: 280px;
}
.demo-info-aside { flex: 0 0 260px; min-width: 200px; }
.demo-aside-title { font-size: 1rem; font-weight: 700; color: var(--color-gold); margin-bottom: 12px; }

.wp-placeholder-block { display: none; }
.elementor-section-hidden { visibility: hidden; height: 0; overflow: hidden; position: absolute; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 10px rgba(245,197,24,0.3); }
  50% { box-shadow: 0 0 22px rgba(245,197,24,0.7); }
}

.fade-in { animation: fadeInUp 0.5s ease both; }
.fade-in-delay-1 { animation-delay: 0.1s; }
.fade-in-delay-2 { animation-delay: 0.2s; }
.fade-in-delay-3 { animation-delay: 0.3s; }

.card-block--top3 { animation: pulse-glow 3s infinite; }

.section-divider {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-btn-orange), var(--color-gold), var(--color-btn-orange), transparent);
  margin: 4px 0;
  border-radius: 2px;
  opacity: 0.5;
}

.highlight-text { color: var(--color-gold); font-weight: 700; }
.muted-text { color: var(--color-text-muted); font-size: 0.85rem; }

.stars-row { display: flex; gap: 2px; }
.star-full { color: var(--color-gold); }
.star-half { color: var(--color-gold); opacity: 0.6; }
.star-empty { color: rgba(255,255,255,0.2); }

.tag-pill {
  display: inline-block;
  background: rgba(231,98,19,0.18);
  border: 1px solid rgba(231,98,19,0.35);
  color: #f0a070;
  font-size: 0.73rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.scrolled-section { padding: 20px 0; }

.demo-iframe-actual {
  width: 100%;
  aspect-ratio: 16/10;
  border: none;
  border-radius: var(--radius-md);
  display: block;
  background: #000;
}

.provider-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  margin-bottom: 14px;
}
.provider-badge img { height: 32px; width: auto; object-fit: contain; }
.provider-badge span { font-size: 0.82rem; color: var(--color-text-muted); }

.wp-content-dummy { display: none; width: 0; height: 0; overflow: hidden; position: absolute; pointer-events: none; }

@media (max-width: 900px) {
  .game-details-grid { flex-direction: column; }
  .bonus-card { flex: 0 0 260px; }
  .casino-card { flex-wrap: wrap; }
  .casino-actions { flex-direction: row; min-width: unset; width: 100%; }
  .hero-frame-wrap {display: none;}
  .hero-frame-btns {display: none;}
  .game-details-frame {flex: none;width: 100%;}
  .game-details-table-wrap {flex: none;width: 100%;}
  .footer-top {flex-direction: column;}
  .footer-brand {flex: none;}
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .burger { display: flex; }
  .hero-section { padding: 28px 0 24px; }
  .casinos-header { flex-direction: column; align-items: flex-start; }
  .footer-top { flex-direction: column; gap: 20px; }
  .casino-logo-wrap { width: 80px; }
  
  body { padding-bottom: 60px; }
}

@media (max-width: 480px) {
  .hero-frame-btns { flex-direction: column; }
  .hero-ctas { flex-direction: column; }
  .casino-card { padding: 14px; }
  .toc-grid { gap: 7px; }
  .adv-card { flex: 1 1 140px; }
  .bonus-widget { flex-direction: column; align-items: flex-start; gap: 8px; }
  .widget-text { flex-direction: column; align-items: flex-start; gap: 4px; }
  .card-block {padding: 16px;}
  .review-author-block {flex-direction: column;}
}
@media (max-width: 420px) {
.header-buttons .btn--outline { display: none; }
}
.info-page-block { max-width: 860px; margin: 0 auto; }
.info-page-hero { margin-bottom: 2rem; padding-bottom: 1.2rem; border-bottom: 2px solid var(--color-border); }
.info-page-h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); color: var(--color-text); margin-bottom: 0.8rem; }
.info-page-meta { display: flex; gap: 10px; flex-wrap: wrap; }
.info-page-content { line-height: 1.75; color: var(--color-text); }
.content-text h2 { font-size: 1.35rem; font-weight: 600; color: var(--color-gold); margin: 2rem 0 0.8rem; padding-bottom: 4px; border-bottom: 1px solid var(--color-border); }
.content-text h3 { font-size: 1.1rem; font-weight: 600; color: var(--color-text); margin: 1.4rem 0 0.5rem; }
.content-text p { margin-bottom: 1rem; }
.content-text ul, .content-text ol { margin: 0.6rem 0 1rem 1.4rem; }
.content-text li { margin-bottom: 0.4rem; }
.content-text a { color: var(--color-accent); text-decoration: underline; }
.content-text a:hover { color: var(--color-gold); }
.content-text strong { color: var(--color-gold); font-weight: 600; }
.content-text em { color: var(--color-text-muted); font-style: italic; }
.content-text table { width: 100%; border-collapse: collapse; margin: 1.2rem 0; font-size: 0.92rem; }
.content-text th { background: var(--color-nav); color: var(--color-text); font-weight: 600; padding: 10px 14px; text-align: left; border: 1px solid var(--color-border); }
.content-text td { padding: 9px 14px; border: 1px solid var(--color-border); background: rgba(255,255,255,0.04); vertical-align: top; }
.content-text tr:hover td { background: rgba(255,255,255,0.07); }
@media (max-width: 600px) {
  .content-text table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
}
