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

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

:root {
  --clr-header: #501709;
  --clr-header-dark: #3a1005;
  --clr-btn-gold: #e9bf80;
  --clr-btn-gold-dark: #d4a45e;
  --clr-btn-blue: #0e5891;
  --clr-btn-blue-dark: #0a4270;
  --clr-bg: #774b35;
  --clr-bg-dark: #5e3825;
  --clr-bg-light: #8a5a42;
  --clr-text: #f5e6d3;
  --clr-text-muted: #c9a882;
  --clr-text-dark: #2a1508;
  --clr-gold: #e9bf80;
  --clr-white: #fff8f0;
  --clr-box: rgba(80, 23, 9, 0.55);
  --clr-box-light: rgba(233, 191, 128, 0.08);
  --clr-border: rgba(233, 191, 128, 0.3);
  --radius: 12px;
  --radius-sm: 6px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
  --transition: 0.25s ease;
  --font: "Cinzel", serif;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--clr-btn-gold);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--clr-white);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font);
  line-height: 1.3;
  color: var(--clr-gold);
}
h1 {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 700;
}
h2 {
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 600;
}
h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 600;
}
p {
  line-height: 1.7;
  margin-bottom: 1rem;
}
ul,
ol {
  padding-left: 1.4rem;
}
li {
  margin-bottom: 0.4rem;
  line-height: 1.6;
}

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

.box {
  background: var(--clr-box);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 24px;
}

.section-title {
  text-align: center;
  margin-bottom: 32px;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--clr-gold);
  position: relative;
  padding-bottom: 14px;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-btn-gold), var(--clr-btn-blue));
  border-radius: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition);
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}
.btn:active {
  transform: translateY(0);
}
.btn--gold {
  background: linear-gradient(135deg, #e9bf80, #c9973e);
  color: #2a1508;
}
.btn--gold:hover {
  background: linear-gradient(135deg, #f0d09a, #d4a045);
  color: #2a1508;
}
.btn--blue {
  background: linear-gradient(135deg, #0e5891, #0a3e6b);
  color: #fff8f0;
}
.btn--blue:hover {
  background: linear-gradient(135deg, #1a6faa, #0e5891);
  color: #fff8f0;
}
.btn--lg {
  padding: 14px 32px;
  font-size: 1rem;
}
.btn--sm {
  padding: 7px 16px;
  font-size: 0.78rem;
}

.site-header {
  background: linear-gradient(
    180deg,
    var(--clr-header-dark) 0%,
    var(--clr-header) 100%
  );
  border-bottom: 2px solid var(--clr-btn-gold);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
}

.header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.header-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}
.header-logo-text {
  font-family: var(--font);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-gold);
  margin-left: 10px;
  line-height: 1.2;
}
.header-logo-text span {
  display: block;
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
}
.header-nav a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 10px;
  color: var(--clr-text-muted);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: var(--radius-sm);
  transition:
    color var(--transition),
    background var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.header-nav a:hover,
.header-nav a.active {
  color: var(--clr-gold);
  background: rgba(233, 191, 128, 0.12);
}
.header-nav svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

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

.jackpot-ticker {
  background: linear-gradient(
    90deg,
    rgba(14, 88, 145, 0.7),
    rgba(80, 23, 9, 0.7)
  );
  border: 1px solid var(--clr-btn-blue);
  border-radius: 20px;
  padding: 3px 12px;
  font-size: 0.75rem;
  color: var(--clr-white);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
}
.jackpot-ticker span.jp-value {
  color: var(--clr-gold);
  font-weight: 700;
  font-size: 0.85rem;
}

.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: transparent;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 7px;
}
.burger-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--clr-gold);
  border-radius: 2px;
  transition: all 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);
}

.hero-section {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin: 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("/leban.jpg");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(80, 23, 9, 0.88) 0%,
    rgba(14, 88, 145, 0.4) 60%,
    rgba(80, 23, 9, 0.7) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
  padding: 60px 0;
}
.hero-badge {
  display: inline-block;
  background: linear-gradient(90deg, var(--clr-btn-blue), #1a7abf);
  color: var(--clr-white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: var(--clr-gold);
  line-height: 1.15;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}
.hero-title span {
  color: var(--clr-white);
}
.hero-desc {
  font-size: 1rem;
  color: var(--clr-text);
  margin-bottom: 28px;
  line-height: 1.7;
  max-width: 500px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.hero-stat {
  text-align: center;
}
.hero-stat-val {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--clr-gold);
  display: block;
}
.hero-stat-lbl {
  font-size: 0.7rem;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.content-sections {
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section-block {
  background: var(--clr-box);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 32px;
  margin: 0 4px;
}
.section-block--alt {
  background: rgba(14, 88, 145, 0.15);
  border-color: rgba(14, 88, 145, 0.35);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open {
  border-color: var(--clr-btn-gold);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--clr-gold);
  user-select: none;
  transition: background var(--transition);
  gap: 12px;
}
.faq-question:hover {
  background: rgba(233, 191, 128, 0.1);
}
.faq-icon {
  width: 22px;
  height: 22px;
  border: 1px solid var(--clr-btn-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    transform var(--transition),
    background var(--transition);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--clr-btn-gold);
}
.faq-icon svg {
  width: 12px;
  height: 12px;
  fill: var(--clr-btn-gold);
  transition: fill var(--transition);
}
.faq-item.open .faq-icon svg {
  fill: var(--clr-header);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s ease;
}
.faq-answer-inner {
  padding: 0 18px;
}
.faq-item.open .faq-answer {
  max-height: 600px;
}
.faq-item.open .faq-answer-inner {
  padding: 14px 18px;
}
.faq-answer p {
  font-size: 0.9rem;
  color: var(--clr-text);
  margin-bottom: 0;
}

.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.bonus-card {
  background: linear-gradient(
    135deg,
    rgba(80, 23, 9, 0.7),
    rgba(14, 88, 145, 0.4)
  );
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.bonus-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-btn-gold), var(--clr-btn-blue));
}
.bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--clr-btn-gold);
}
.bonus-card-badge {
  display: inline-block;
  background: rgba(233, 191, 128, 0.15);
  color: var(--clr-gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid rgba(233, 191, 128, 0.3);
  width: fit-content;
}
.bonus-card-casino {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-white);
}
.bonus-offer {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--clr-gold);
  line-height: 1.2;
}
.bonus-desc {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  line-height: 1.5;
  flex: 1;
}
.bonus-terms {
  font-size: 0.7rem;
  color: rgba(201, 168, 130, 0.6);
  margin-top: auto;
}

.demo-game-wrap {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
  align-items: start;
}
.demo-frame-box {
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--clr-border);
  aspect-ratio: 16/9;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.demo-frame-box iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.demo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(80, 23, 9, 0.95),
    rgba(14, 88, 145, 0.9)
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  cursor: pointer;
  transition: opacity var(--transition);
}
.demo-overlay .play-icon {
  width: 72px;
  height: 72px;
  background: rgba(233, 191, 128, 0.2);
  border: 3px solid var(--clr-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.demo-overlay .play-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--clr-gold);
  margin-left: 4px;
}
.demo-overlay p {
  color: var(--clr-white);
  font-size: 1rem;
  font-weight: 600;
}
.demo-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}
.demo-actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.game-details-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}
.game-details-table tr {
  border-bottom: 1px solid var(--clr-border);
  transition: background var(--transition);
}
.game-details-table tr:last-child {
  border-bottom: none;
}
.game-details-table tr:hover {
  background: rgba(233, 191, 128, 0.06);
}
.game-details-table td {
  padding: 9px 10px;
  vertical-align: middle;
}
.game-details-table td:first-child {
  color: var(--clr-text-muted);
  font-weight: 500;
  width: 50%;
  display: flex;
  align-items: center;
  gap: 7px;
}
.game-details-table td:last-child {
  color: var(--clr-white);
  font-weight: 600;
}
.gd-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}
.feature-tile {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  transition:
    transform var(--transition),
    border-color var(--transition),
    background var(--transition);
}
.feature-tile:hover {
  transform: translateY(-3px);
  border-color: var(--clr-btn-gold);
  background: rgba(233, 191, 128, 0.08);
}
.feature-tile svg {
  width: 36px;
  height: 36px;
  margin: 0 auto 10px;
  display: block;
}
.feature-tile-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--clr-gold);
  margin-bottom: 6px;
}
.feature-tile-desc {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  line-height: 1.5;
}

.winners-table-wrap {
  overflow-x: auto;
}
.winners-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
  font-size: 0.88rem;
}
.winners-table thead th {
  background: rgba(80, 23, 9, 0.7);
  color: var(--clr-gold);
  font-weight: 700;
  padding: 11px 14px;
  text-align: left;
  border-bottom: 2px solid var(--clr-btn-gold);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.winners-table tbody tr {
  border-bottom: 1px solid rgba(233, 191, 128, 0.1);
  transition: background var(--transition);
}
.winners-table tbody tr:hover {
  background: rgba(233, 191, 128, 0.06);
}
.winners-table tbody td {
  padding: 9px 14px;
  color: var(--clr-text);
}
.winners-table tbody td:first-child {
  font-weight: 700;
  color: var(--clr-gold);
  text-align: center;
}
.winners-table tbody td.win-amount {
  color: #6ddc8b;
  font-weight: 700;
}
.winners-table tr.top-3 td:first-child {
  color: #ffd700;
}
.winner-nick {
  display: flex;
  align-items: center;
  gap: 8px;
}
.winner-avatar {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--clr-btn-blue), var(--clr-btn-gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--clr-header);
  flex-shrink: 0;
}

.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.pros-box,
.cons-box {
  border-radius: var(--radius);
  padding: 22px;
}
.pros-box {
  background: rgba(109, 220, 139, 0.08);
  border: 1px solid rgba(109, 220, 139, 0.3);
}
.cons-box {
  background: rgba(220, 90, 90, 0.08);
  border: 1px solid rgba(220, 90, 90, 0.3);
}
.pros-cons-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pros-cons-title svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.pros-box .pros-cons-title {
  color: #6ddc8b;
}
.cons-box .pros-cons-title {
  color: #e06060;
}
.pros-cons-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.pros-cons-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--clr-text);
}
.pros-cons-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}
.pros-box .pros-cons-list li::before {
  background: #6ddc8b;
}
.cons-box .pros-cons-list li::before {
  background: #e06060;
}

.review-block {
  padding: 28px 32px;
}
.author-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(233, 191, 128, 0.07);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 18px;
  margin-bottom: 28px;
}
.author-avatar {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--clr-header), var(--clr-btn-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--clr-gold);
  flex-shrink: 0;
  border: 2px solid var(--clr-btn-gold);
}
.author-info {
  flex: 1;
}
.author-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-gold);
  margin-bottom: 2px;
}
.author-title {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  margin-bottom: 6px;
}
.author-bio {
  font-size: 0.82rem;
  color: var(--clr-text);
  line-height: 1.5;
  margin-bottom: 0;
}
.author-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
  color: var(--clr-btn-blue);
  margin-top: 6px;
}
.author-link:hover {
  color: var(--clr-gold);
}
.author-link svg {
  width: 13px;
  height: 13px;
}

.review-content {
  font-size: 0.95rem;
  color: var(--clr-text);
  line-height: 1.75;
}
.review-content h2,
.review-content h3,
.review-content h4 {
  color: var(--clr-gold);
  margin: 1.4rem 0 0.7rem;
}
.review-content p {
  margin-bottom: 1rem;
}
.review-content ul,
.review-content ol {
  margin-bottom: 1rem;
  padding-left: 1.6rem;
}
.review-content li {
  margin-bottom: 0.35rem;
}
.review-content a {
  color: var(--clr-btn-gold);
  text-decoration: underline;
}
.review-content a:hover {
  color: var(--clr-white);
}
.review-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  border: 1px solid var(--clr-border);
}
.review-content table th,
.review-content table td {
  padding: 9px 12px;
  border: 1px solid var(--clr-border);
  text-align: left;
  font-size: 0.85rem;
}
.review-content table th {
  background: rgba(80, 23, 9, 0.5);
  color: var(--clr-gold);
  font-weight: 700;
}
.review-content table tr:hover {
  background: rgba(233, 191, 128, 0.05);
}
.review-content strong,
.review-content b {
  color: var(--clr-gold);
}
.review-content blockquote {
  border-left: 3px solid var(--clr-btn-gold);
  padding: 10px 16px;
  background: rgba(233, 191, 128, 0.07);
  margin: 1rem 0;
  font-style: italic;
}
.review-content img {
  border-radius: var(--radius-sm);
  max-width: 100%;
}
.review-content code {
  background: rgba(0, 0, 0, 0.3);
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 0.85em;
}
.review-content pre {
  background: rgba(0, 0, 0, 0.4);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  overflow-x: auto;
  margin-bottom: 1rem;
}
.review-content hr {
  border: none;
  border-top: 1px solid var(--clr-border);
  margin: 1.5rem 0;
}

.site-footer {
  background: linear-gradient(
    180deg,
    var(--clr-header) 0%,
    var(--clr-header-dark) 100%
  );
  border-top: 2px solid var(--clr-btn-gold);
  margin-top: auto;
  padding: 40px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--clr-border);
}
.footer-col-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--clr-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.footer-nav-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-nav-list a {
  color: var(--clr-text-muted);
  font-size: 0.83rem;
  transition:
    color var(--transition),
    padding-left var(--transition);
  display: block;
}
.footer-nav-list a:hover {
  color: var(--clr-gold);
  padding-left: 4px;
}

.footer-logos-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}
.footer-logo-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 5px 10px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--clr-text-muted);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-logo-item:hover {
  background: rgba(255, 255, 255, 0.14);
  color: var(--clr-gold);
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.trust-badge {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 5px 9px;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--clr-text-muted);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition:
    background var(--transition),
    color var(--transition);
}
.trust-badge:hover {
  background: rgba(233, 191, 128, 0.12);
  color: var(--clr-gold);
}
.trust-badge.age-badge {
  background: rgba(220, 90, 90, 0.2);
  border-color: rgba(220, 90, 90, 0.4);
  color: #ff9999;
  font-size: 0.88rem;
  font-weight: 800;
  padding: 4px 10px;
}

.footer-bottom {
  padding: 18px 0;
  text-align: center;
}
.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.footer-logo-main {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo-main img {
  height: 36px;
  object-fit: contain;
}
.footer-copyright {
  font-size: 0.75rem;
  color: var(--clr-text-muted);
}
.footer-flag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  color: var(--clr-text-muted);
}
.footer-social {
  display: flex;
  gap: 8px;
}
.social-link {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-text-muted);
  transition:
    background var(--transition),
    color var(--transition),
    border-color var(--transition);
}
.social-link:hover {
  background: rgba(233, 191, 128, 0.15);
  color: var(--clr-gold);
  border-color: var(--clr-btn-gold);
}
.social-link svg {
  width: 16px;
  height: 16px;
}
.footer-legal {
  font-size: 0.72rem;
  color: rgba(201, 168, 130, 0.5);
  line-height: 1.6;
  padding: 12px 0;
  border-top: 1px solid rgba(233, 191, 128, 0.1);
  margin-top: 8px;
}

.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(
    90deg,
    var(--clr-header-dark),
    var(--clr-btn-blue)
  );
  border-top: 2px solid var(--clr-btn-gold);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}
.sticky-widget-text {
  color: var(--clr-white);
  font-size: 0.88rem;
  font-weight: 600;
}
.sticky-widget-text strong {
  color: var(--clr-gold);
}
.sticky-widget-close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: var(--clr-text-muted);
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  padding: 4px;
  transition: color var(--transition);
}
.sticky-widget-close:hover {
  color: var(--clr-gold);
}

.bonuses-slider-wrap {
  position: relative;
}
.slider-controls {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 14px;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clr-border);
  cursor: pointer;
  transition:
    background var(--transition),
    transform var(--transition);
  border: none;
}
.slider-dot.active {
  background: var(--clr-btn-gold);
  transform: scale(1.3);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  padding: 10px 0;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: var(--clr-text-muted);
}
.breadcrumb a:hover {
  color: var(--clr-gold);
}
.breadcrumb span.sep {
  color: rgba(201, 168, 130, 0.4);
}
.breadcrumb span.current {
  color: var(--clr-text);
}

.page-loader {
  display: none;
}

.xf2a9b {
  display: none;
}
.wp-post-image {
  max-width: 100%;
  height: auto;
}
.entry-content {
  display: none;
}
.wp-block-group {
  display: none;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(233, 191, 128, 0.3);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(233, 191, 128, 0);
  }
}
@keyframes jackpot-tick {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.animate-in {
  animation: fadeInUp 0.5s ease both;
}
.hero-content {
  animation: fadeIn 0.7s ease;
}

.btn--blue {
  animation: pulse-glow 2.5s infinite;
}
.btn--blue:hover {
  animation: none;
}

@media (max-width: 900px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
    gap: 8px;
  }
  .header-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--clr-header-dark);
    border-top: 1px solid var(--clr-border);
    padding: 12px 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    z-index: 100;
  }
  .header-nav.active {
    display: flex;
  }
  .header-nav a {
    padding: 10px 12px;
    width: 100%;
    border-radius: var(--radius-sm);
  }
  .burger-btn {
    display: flex;
  }
  .header-actions {
    gap: 6px;
  }
  .header-actions .btn {
    padding: 8px 12px;
    font-size: 0.78rem;
  }
  .jackpot-ticker {
    display: none;
  }
  .site-header {
    position: relative;
  }
  .header-inner {
    position: relative;
  }
  .header-logo-text {
    font-size: 0.95rem;
  }
  .bonuses-grid {
    grid-template-columns: 1fr;
  }
  .demo-game-wrap {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pros-cons-grid {
    grid-template-columns: 1fr;
  }
  .hero-section {
    min-height: 400px;
  }
}
@media (max-width: 480px) {
  .header-logo img {
    height: 36px;
  }
  .header-logo-text {
    display: none;
  }
  .header-actions .btn--sm {
    padding: 8px 11px;
    font-size: 0.75rem;
  }
}

@media (max-width: 600px) {
  .section-block {
    padding: 20px 16px;
    margin: 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
  .bonuses-grid {
    grid-template-columns: 1fr;
  }
  .hero-content {
    padding: 40px 0;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }
  .winner-nick {
    gap: 5px;
  }
  .game-details-table td:first-child {
    width: 45%;
  }
  .sticky-widget {
    flex-direction: column;
    padding: 12px 40px 12px 16px;
    text-align: center;
  }
}

.k7x3p {
  visibility: hidden;
  height: 0;
  overflow: hidden;
}
.wp9-placeholder {
  display: none;
}
.elementor-hidden {
  visibility: hidden;
}
.yoast-placeholder {
  display: none;
}
