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

:root {
  --clr-header: #501709;
  --clr-header-dark: #3a1005;
  --clr-footer: #501709;
  --clr-bg: #774b35;
  --clr-bg-dark: #5c3826;
  --clr-bg-light: #8a5a42;
  --clr-btn-gold: #e9bf80;
  --clr-btn-gold-hover: #f5d4a0;
  --clr-btn-blue: #0e5891;
  --clr-btn-blue-hover: #1470b8;
  --clr-text: #f5e8d8;
  --clr-text-dark: #c8a882;
  --clr-text-muted: #a07855;
  --clr-gold: #e9bf80;
  --clr-border: rgba(233, 191, 128, 0.25);
  --clr-border-strong: rgba(233, 191, 128, 0.5);
  --clr-card: rgba(80, 23, 9, 0.55);
  --clr-card-hover: rgba(80, 23, 9, 0.75);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-gold: 0 0 20px rgba(233, 191, 128, 0.3);
  --transition: 0.3s ease;
  --font-main: "Cinzel", serif;
}

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

html {
  scroll-behavior: smooth;
  background: var(--clr-bg-dark);
}

body {
  font-family: var(--font-main);
  background: linear-gradient(
    160deg,
    var(--clr-bg-dark) 0%,
    var(--clr-bg) 40%,
    var(--clr-bg-dark) 100%
  );
  color: var(--clr-text);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: var(--clr-gold);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--clr-btn-gold-hover);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button {
  cursor: pointer;
  font-family: var(--font-main);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  border: none;
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn--gold {
  background: linear-gradient(135deg, #e9bf80, #c9984e);
  color: #2a0e02;
}
.btn--gold:hover {
  background: linear-gradient(135deg, #f5d4a0, #e9bf80);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn--blue {
  background: linear-gradient(135deg, #0e5891, #0a3d6b);
  color: #fff;
}
.btn--blue:hover {
  background: linear-gradient(135deg, #1470b8, #0e5891);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(14, 88, 145, 0.5);
}
.btn--outline {
  background: transparent;
  color: var(--clr-gold);
  border: 1.5px solid var(--clr-gold);
}
.btn--outline:hover {
  background: rgba(233, 191, 128, 0.12);
  transform: translateY(-2px);
}
.btn--sm {
  padding: 7px 16px;
  font-size: 0.78rem;
}
.btn--lg {
  padding: 14px 32px;
  font-size: 1rem;
}
.btn--block {
  width: 100%;
}

.site-header {
  background: linear-gradient(
    90deg,
    var(--clr-header-dark) 0%,
    var(--clr-header) 50%,
    var(--clr-header-dark) 100%
  );
  border-bottom: 2px solid var(--clr-border-strong);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 12px;
  flex-wrap: nowrap;
}
.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.header__logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: center;
  flex-wrap: nowrap;
}
.header__nav a {
  color: var(--clr-text);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all var(--transition);
}
.header__nav a:hover,
.header__nav a.active {
  color: var(--clr-gold);
  background: rgba(233, 191, 128, 0.08);
}
.nav-icon {
  width: 15px;
  height: 15px;
  fill: currentColor;
  flex-shrink: 0;
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.header__winner {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: 5px 14px;
  font-size: 0.72rem;
  color: var(--clr-text-dark);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  animation: winnerPulse 3s ease-in-out infinite;
}
.header__winner .winner-icon {
  color: var(--clr-gold);
  font-size: 1rem;
}
.header__winner .winner-amount {
  color: var(--clr-gold);
  font-weight: 700;
}
@keyframes winnerPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.mobile-menu-cta {
  display: none !important;
}

.burger {
  display: none;
  background: none;
  border: 1.5px solid var(--clr-border-strong);
  padding: 8px;
  border-radius: var(--radius-sm);
  color: var(--clr-gold);
}
.burger svg {
  display: block;
}
.burger.active .burger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.burger.active .burger-line:nth-child(2) {
  opacity: 0;
}
.burger.active .burger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.burger-line {
  width: 22px;
  height: 2px;
  background: var(--clr-gold);
  display: block;
  transition: all var(--transition);
  margin: 3px 0;
}

.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("/ofban.jpg");
  background-size: cover;
  background-position: center;
  filter: brightness(0.55);
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(80, 23, 9, 0.85) 0%,
    rgba(80, 23, 9, 0.35) 60%,
    transparent 100%
  );
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 60px 0;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(233, 191, 128, 0.15);
  border: 1px solid var(--clr-border-strong);
  border-radius: var(--radius-xl);
  padding: 5px 14px;
  font-size: 0.75rem;
  color: var(--clr-gold);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}
.hero__title span {
  color: var(--clr-gold);
}
.hero__desc {
  font-size: 1rem;
  color: var(--clr-text);
  max-width: 520px;
  margin-bottom: 28px;
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero__rating {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.rating-stars {
  display: flex;
  gap: 3px;
}
.star {
  width: 20px;
  height: 20px;
  fill: var(--clr-gold);
}
.star.half {
  fill: url(#halfGrad);
}
.rating-text {
  font-size: 0.85rem;
  color: var(--clr-text-dark);
}
.rating-text strong {
  color: var(--clr-gold);
  font-size: 1.1rem;
}
.hero__stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.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.72rem;
  color: var(--clr-text-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.section {
  padding: 56px 0;
}
.section--dark {
  background: rgba(0, 0, 0, 0.2);
}
.section-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--clr-gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  text-align: center;
}
.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-gold), transparent);
  margin: 10px auto 0;
}
.section-sub {
  text-align: center;
  color: var(--clr-text-dark);
  font-size: 0.9rem;
  margin-bottom: 36px;
}

.box {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  backdrop-filter: blur(6px);
}

.author-card {
  display: flex;
  gap: 28px;
  padding: 28px;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  margin-bottom: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.author-photo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--clr-gold);
  flex-shrink: 0;
}
.author-info {
  flex: 1;
  min-width: 200px;
}
.author-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--clr-gold);
  margin-bottom: 4px;
}
.author-position {
  font-size: 0.82rem;
  color: var(--clr-text-dark);
  margin-bottom: 2px;
}
.author-location {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.author-bio {
  font-size: 0.88rem;
  color: var(--clr-text);
  line-height: 1.65;
  margin-bottom: 12px;
}
.author-meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.author-meta span {
  font-size: 0.78rem;
  color: var(--clr-text-dark);
  display: flex;
  align-items: center;
  gap: 5px;
}
.author-socials {
  display: flex;
  gap: 10px;
}
.author-social {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(233, 191, 128, 0.12);
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.author-social:hover {
  background: var(--clr-gold);
  color: #2a0e02;
  transform: translateY(-2px);
}
.author-social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.strategies-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.strategy-card {
  flex: 1;
  min-width: 260px;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
  cursor: pointer;
}
.strategy-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
  border-color: var(--clr-border-strong);
}
.strategy-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.strategy-body {
  padding: 18px;
}
.strategy-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-gold);
  margin-bottom: 8px;
}
.strategy-desc {
  font-size: 0.84rem;
  color: var(--clr-text);
  line-height: 1.6;
  margin-bottom: 14px;
}

.casino-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.casino-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: all var(--transition);
  position: relative;
  flex-wrap: wrap;
}
.casino-card:hover {
  border-color: var(--clr-border-strong);
  box-shadow: var(--shadow);
}
.casino-card.top-1 {
  border-color: #ffd700;
  background: rgba(80, 23, 9, 0.7);
}
.casino-card.top-2 {
  border-color: #c0c0c0;
}
.casino-card.top-3 {
  border-color: #cd7f32;
}
.casino-rank {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.9rem;
  flex-shrink: 0;
  background: rgba(233, 191, 128, 0.12);
  color: var(--clr-text-dark);
}
.casino-rank.rank-1 {
  background: linear-gradient(135deg, #ffd700, #ffa000);
  color: #2a0e02;
}
.casino-rank.rank-2 {
  background: linear-gradient(135deg, #c0c0c0, #909090);
  color: #1a0a00;
}
.casino-rank.rank-3 {
  background: linear-gradient(135deg, #cd7f32, #9c5c20);
  color: #fff;
}
.casino-logo-wrap {
  width: 80px;
  flex-shrink: 0;
  text-align: center;
}
.casino-logo {
  width: 80px;
  height: 50px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  padding: 4px;
}
.casino-info {
  flex: 1;
  min-width: 180px;
}
.casino-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--clr-gold);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.casino-flag {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
}
.casino-bonus {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  background: linear-gradient(90deg, rgba(14, 88, 145, 0.5), transparent);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  display: inline-block;
}
.casino-pros {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}
.casino-pro {
  font-size: 0.76rem;
  background: rgba(233, 191, 128, 0.1);
  border: 1px solid var(--clr-border);
  border-radius: 20px;
  padding: 3px 10px;
  color: var(--clr-text-dark);
  display: flex;
  align-items: center;
  gap: 4px;
}
.casino-pro::before {
  content: "✓";
  color: var(--clr-gold);
  font-weight: 700;
  font-size: 0.7rem;
}
.casino-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
}
.casino-rating-val {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--clr-gold);
}
.casino-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}
.casino-legal {
  font-size: 0.7rem;
  color: var(--clr-text-muted);
  margin-top: 8px;
}
.casino-legal a {
  color: var(--clr-text-muted);
  text-decoration: underline;
}
.load-more-wrap {
  text-align: center;
  padding: 28px 0 0;
}

.winners-table-wrap {
  overflow-x: auto;
}
.winners-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--clr-card);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.winners-table th {
  background: rgba(80, 23, 9, 0.9);
  color: var(--clr-gold);
  padding: 12px 16px;
  text-align: left;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 2px solid var(--clr-border-strong);
}
.winners-table td {
  padding: 10px 16px;
  font-size: 0.88rem;
  color: var(--clr-text);
  border-bottom: 1px solid var(--clr-border);
  vertical-align: middle;
}
.winners-table tr:last-child td {
  border-bottom: none;
}
.winners-table tr:hover td {
  background: rgba(233, 191, 128, 0.05);
}
.win-rank-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.8rem;
  background: rgba(233, 191, 128, 0.12);
  color: var(--clr-text-dark);
}
.win-rank-badge.r1 {
  background: linear-gradient(135deg, #ffd700, #ffa000);
  color: #2a0e02;
}
.win-rank-badge.r2 {
  background: linear-gradient(135deg, #c0c0c0, #909090);
  color: #1a0a00;
}
.win-rank-badge.r3 {
  background: linear-gradient(135deg, #cd7f32, #9c5c20);
  color: #fff;
}
.win-amount {
  color: var(--clr-gold);
  font-weight: 700;
}

.jackpot-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.jackpot-card {
  flex: 1;
  min-width: 240px;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.jackpot-card::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(233, 191, 128, 0.2) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.jackpot-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
}
.jackpot-card.tier-1 {
  border-color: #ffd700;
}
.jackpot-card.tier-2 {
  border-color: #c0c0c0;
}
.jackpot-card.tier-3 {
  border-color: #cd7f32;
}
.jackpot-tier {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clr-text-dark);
  margin-bottom: 6px;
}
.jackpot-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--clr-gold);
  margin-bottom: 14px;
}
.jackpot-amount {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 0 20px rgba(233, 191, 128, 0.5);
  margin-bottom: 18px;
  font-variant-numeric: tabular-nums;
  transition: all 0.5s ease;
}
.jackpot-players {
  font-size: 0.8rem;
  color: var(--clr-text-dark);
  margin-bottom: 8px;
}
.jackpot-tops {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.jackpot-top-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  padding: 4px 8px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-sm);
}
.jackpot-top-nick {
  color: var(--clr-text);
}
.jackpot-top-win {
  color: var(--clr-gold);
  font-weight: 700;
}

.content-block {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 32px 36px;
  margin: 0 0 40px;
}
.content-block h2,
.content-block h3,
.content-block h4 {
  color: var(--clr-gold);
  margin: 1.4em 0 0.5em;
  font-weight: 700;
}
.content-block h2 {
  font-size: 1.4rem;
  border-bottom: 1px solid var(--clr-border);
  padding-bottom: 10px;
}
.content-block h3 {
  font-size: 1.15rem;
}
.content-block h4 {
  font-size: 1rem;
}
.content-block p {
  margin-bottom: 1em;
  color: var(--clr-text);
  font-size: 0.94rem;
  line-height: 1.75;
}
.content-block ul,
.content-block ol {
  margin: 0 0 1em 1.5em;
  color: var(--clr-text);
  font-size: 0.94rem;
}
.content-block li {
  margin-bottom: 0.4em;
  line-height: 1.65;
}
.content-block table {
  width: 100%;
  border-collapse: collapse;
  margin: 1em 0;
}
.content-block table th {
  background: rgba(80, 23, 9, 0.8);
  color: var(--clr-gold);
  padding: 10px 14px;
  text-align: left;
  border: 1px solid var(--clr-border-strong);
  font-size: 0.85rem;
}
.content-block table td {
  padding: 9px 14px;
  border: 1px solid var(--clr-border);
  color: var(--clr-text);
  font-size: 0.88rem;
}
.content-block table tr:hover td {
  background: rgba(233, 191, 128, 0.05);
}
.content-block a {
  color: var(--clr-gold);
  text-decoration: underline;
}
.content-block strong,
.content-block b {
  color: var(--clr-btn-gold-hover);
}
.content-block blockquote {
  border-left: 3px solid var(--clr-gold);
  padding: 10px 16px;
  background: rgba(233, 191, 128, 0.06);
  margin: 1em 0;
  font-style: italic;
  color: var(--clr-text-dark);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.site-footer {
  background: linear-gradient(
    0deg,
    var(--clr-header-dark) 0%,
    var(--clr-header) 100%
  );
  border-top: 2px solid var(--clr-border-strong);
  padding: 48px 0 24px;
  margin-top: auto;
}
.footer__grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.footer__col {
  flex: 1;
  min-width: 180px;
}
.footer__logo img {
  height: 48px;
  margin-bottom: 14px;
}
.footer__tagline {
  font-size: 0.8rem;
  color: var(--clr-text-dark);
  line-height: 1.6;
}
.footer__title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--clr-gold);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--clr-border);
  padding-bottom: 8px;
}
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer__nav a {
  color: var(--clr-text-dark);
  font-size: 0.82rem;
  transition: color var(--transition);
}
.footer__nav a:hover {
  color: var(--clr-gold);
}
.footer__payments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.footer__payment-badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 5px 10px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--clr-text-dark);
}
.footer__socials {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.footer__social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(233, 191, 128, 0.1);
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.footer__social:hover {
  background: var(--clr-gold);
  color: #2a0e02;
  transform: translateY(-2px);
}
.footer__social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.footer__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 20px 0;
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  margin-bottom: 20px;
  align-items: center;
}
.trust-badge {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 5px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--clr-text-dark);
  white-space: nowrap;
}
.trust-badge.age18 {
  color: #e55;
  border-color: rgba(229, 85, 85, 0.4);
  background: rgba(229, 85, 85, 0.08);
  font-size: 0.9rem;
  font-weight: 900;
}
.footer__bottom {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
.footer__copyright {
  font-size: 0.76rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}
.footer__legal {
  font-size: 0.72rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
  max-width: 600px;
}
.footer__flag {
  width: 28px;
  height: 20px;
  border-radius: 3px;
  object-fit: cover;
}
.provider-logo {
  height: 30px;
  object-fit: contain;
  filter: brightness(0.8);
  transition: filter var(--transition);
}
.provider-logo:hover {
  filter: brightness(1);
}
.footer__providers {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.floating-widget {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 999;
  background: linear-gradient(
    135deg,
    var(--clr-header-dark),
    var(--clr-header)
  );
  border: 2px solid var(--clr-border-strong);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  max-width: 180px;
  text-align: center;
  animation: widgetFloat 4s ease-in-out infinite;
}
@keyframes widgetFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
.widget__logo img {
  height: 42px;
  object-fit: contain;
}
.widget__bonus {
  font-size: 0.78rem;
  color: var(--clr-text);
  line-height: 1.4;
}
.widget__bonus strong {
  color: var(--clr-gold);
  display: block;
  font-size: 0.9rem;
}
.widget__close {
  position: absolute;
  top: 6px;
  right: 8px;
  background: none;
  border: none;
  color: var(--clr-text-muted);
  font-size: 1rem;
  cursor: pointer;
  line-height: 1;
  padding: 2px;
}
.widget__close:hover {
  color: var(--clr-gold);
}


@media (min-width: 901px) {
  .site-header .container {
    max-width: 1440px;
  }
  .header__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-areas:
      "logo nav actions"
      "winner winner winner";
    gap: 8px 18px;
    padding: 12px 0 4px;
  }
  .header__logo { grid-area: logo; }
  .header__nav { grid-area: nav; }
  .header__actions { grid-area: actions; }
  .header__winner {
    grid-area: winner;
    width: 100%;
    justify-content: flex-start;
  }
}
@media (max-width: 900px) {
  .site-header {
    position: sticky;
    width: 100%;
  }
  .site-header .container {
    padding: 0 14px;
  }
  .header__inner {
    min-height: 64px;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  .header__logo {
    display: flex;
    max-width: calc(100% - 58px);
  }
  .header__actions {
    margin-left: auto;
  }
  .header__nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(48, 14, 5, 0.98);
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    z-index: 998;
    padding: 80px 20px 40px;
  }
  .header__nav.open {
    display: flex;
  }
  .header__nav a {
    font-size: 1rem;
    padding: 10px 20px;
    width: 100%;
    justify-content: center;
  }
  .header__nav .mobile-menu-cta {
    display: inline-flex !important;
    width: min(280px, 100%);
    margin-top: 8px;
    background: linear-gradient(135deg, #e9bf80, #c9984e);
    color: #2a0e02;
    border-radius: var(--radius-sm);
    font-weight: 800;
  }
  .header__nav .mobile-menu-cta:hover {
    color: #2a0e02;
    background: linear-gradient(135deg, #f5d4a0, #e9bf80);
  }
  .burger {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    z-index: 1001;
  }
  .header__logo img {
    height: 40px;
  }
  .header__winner {
    display: none;
  }
  .header__actions > a {
    display: none;
  }
  .site-header,
  .site-header .container,
  .header__inner {
    width: 100%;
    max-width: 100%;
  }
  .hero {
    min-height: 500px;
    margin-top: 0;
  }
  .hero__bg {
    background-position: center top;
  }
  .hero__content {
    padding: 42px 0;
  }
}


.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.info-page {
  padding: 48px 0;
}
.info-page .content-block {
  max-width: 860px;
  margin: 0 auto;
}

.wp-block-paragraph {
  margin-bottom: 1em;
}
.wp-block-heading {
  margin-bottom: 0.5em;
}
.elementor-widget-container {
  display: contents;
}
.entry-content {
  display: contents;
}
.screen-reader-text {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}
.aligncenter {
  text-align: center;
}
.wp-caption {
  max-width: 100%;
}

.xr7v2k {
  display: none;
}
.bq8m3n {
  visibility: hidden;
}
[data-wc-pn="true"] {
  pointer-events: none;
}
.a4f9zx,
.m2k8vp,
.t5n1qr {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
}

@media (max-width: 640px) {
  .hero {
    min-height: 400px;
  }
  .hero__title {
    font-size: 1.8rem;
  }
  .casino-card {
    flex-direction: column;
  }
  .casino-logo-wrap {
    width: 100%;
  }
  .casino-actions {
    flex-direction: row;
    width: 100%;
  }
  .casino-actions .btn {
    flex: 1;
  }
  .jackpot-card {
    min-width: 100%;
  }
  .strategy-card {
    min-width: 100%;
  }
  .content-block {
    padding: 20px 16px;
  }
  .author-card {
    flex-direction: column;
  }
  .footer__grid {
    gap: 24px;
  }
  .floating-widget {
    bottom: 12px;
    right: 10px;
    padding: 12px 14px;
    max-width: 155px;
  }
}

.breadcrumb {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  padding: 12px 0;
}
.breadcrumb a {
  color: var(--clr-text-dark);
}
.breadcrumb a:hover {
  color: var(--clr-gold);
}
.breadcrumb span {
  color: var(--clr-text-muted);
}

.game-info-wrap {
  overflow-x: auto;
  margin-bottom: 28px;
}
.game-info-table {
  min-width: 500px;
  width: 100%;
  border-collapse: collapse;
  background: var(--clr-card);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.game-info-table th,
.game-info-table td {
  padding: 10px 18px;
  border: 1px solid var(--clr-border);
  font-size: 0.88rem;
}
.game-info-table th {
  background: rgba(80, 23, 9, 0.7);
  color: var(--clr-gold);
  text-align: left;
  width: 40%;
}
.game-info-table td {
  color: var(--clr-text);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-question {
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--clr-gold);
  user-select: none;
}
.faq-question:hover {
  background: rgba(233, 191, 128, 0.06);
}
.faq-icon {
  transition: transform var(--transition);
  color: var(--clr-gold);
  font-size: 1.1rem;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding: 0 20px 16px;
  font-size: 0.88rem;
  color: var(--clr-text);
  line-height: 1.7;
}
.faq-item.open .faq-answer {
  max-height: 600px;
}
