*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  background-color: #f46c2e;
  font-size: 16px;
}
body {
  font-family: "Manrope", sans-serif;
  background-color: #f46c2e;
  color: #1a0a00;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}
body.fixed {
  overflow: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #66cc39;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: #f4b911;
}
ul,
ol {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

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

.header.box {
  background: #400d00;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0;
}
.hdr-x9k2 {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  flex-wrap: nowrap;
}
.hdr-logo-img {
  height: 46px;
  width: auto;
  object-fit: contain;
}
.hdr-logo-link {
  flex-shrink: 0;
}

.hdr-jackpot-ticker {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(244, 185, 17, 0.12);
  border: 1px solid rgba(244, 185, 17, 0.3);
  border-radius: 20px;
  padding: 4px 12px;
  white-space: nowrap;
  font-size: 0.78rem;
  color: #f4b911;
  margin-right: auto;
}
.hdr-jackpot-label {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
}
.hdr-jackpot-val {
  font-weight: 800;
  font-size: 0.9rem;
  color: #f4b911;
  letter-spacing: 0.02em;
}

.hdr-nav-wrap {
  display: flex;
  align-items: center;
}
.hdr-nav-list {
  display: flex;
  gap: 4px;
  align-items: center;
}
.hdr-nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 11px;
  border-radius: 8px;
  color: #fde8d8;
  font-size: 0.83rem;
  font-weight: 600;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.hdr-nav-link:hover,
.hdr-nav-link:focus {
  background: rgba(255, 255, 255, 0.1);
  color: #f4b911;
}
.hdr-nav-link svg {
  flex-shrink: 0;
  stroke: #f4b911;
}

.hdr-cta-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.22s ease;
  cursor: pointer;
  white-space: nowrap;
  border: none;
}
.btn--play {
  background: #f4b911;
  color: #1a0a00;
  box-shadow: 0 2px 12px rgba(244, 185, 17, 0.4);
}
.btn--play:hover {
  background: #ffd022;
  color: #1a0a00;
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(244, 185, 17, 0.5);
}
.btn--bonus {
  background: #66cc39;
  color: #fff;
  box-shadow: 0 2px 12px rgba(102, 204, 57, 0.35);
}
.btn--bonus:hover {
  background: #7de04a;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(102, 204, 57, 0.45);
}
.btn--outline {
  background: transparent;
  border: 2px solid #66cc39;
  color: #66cc39;
}
.btn--outline:hover {
  background: #66cc39;
  color: #fff;
}
.btn--lg {
  padding: 14px 30px;
  font-size: 1rem;
  border-radius: 10px;
}
.btn--xl {
  padding: 16px 36px;
  font-size: 1.1rem;
  border-radius: 12px;
}

.hdr-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
}
.hdr-burger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: #fde8d8;
  border-radius: 2px;
  transition: all 0.25s ease;
}
.hdr-burger.is-active .hdr-burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hdr-burger.is-active .hdr-burger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hdr-burger.is-active .hdr-burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero-section {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #400d00;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("/raban.jpg");
  background-size: cover;
  background-position: center top;
  opacity: 0.55;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(64, 13, 0, 0.92) 45%,
    rgba(64, 13, 0, 0.3) 100%
  );
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 60px 20px;
  max-width: 640px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(244, 185, 17, 0.18);
  border: 1px solid rgba(244, 185, 17, 0.4);
  color: #f4b911;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hero-h1 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}
.hero-h1 span {
  color: #f4b911;
}
.hero-desc {
  font-size: 1.05rem;
  color: #fde8d8;
  margin-bottom: 28px;
  line-height: 1.65;
  max-width: 520px;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
}
.hero-stat-val {
  font-size: 1.4rem;
  font-weight: 800;
  color: #f4b911;
}
.hero-stat-lbl {
  font-size: 0.75rem;
  color: #fde8d8;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.box {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  margin: 16px 0;
  box-shadow: 0 2px 16px rgba(64, 13, 0, 0.1);
}
.content-section {
  margin: 12px 0;
}
.section-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #400d00;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-title svg {
  color: #f4b911;
}

.toc-box {
  background: linear-gradient(135deg, #400d00 0%, #6b1800 100%);
  border-radius: 16px;
  padding: 28px;
  margin: 16px 0;
  box-shadow: 0 4px 24px rgba(64, 13, 0, 0.25);
}
.toc-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #f4b911;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.toc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
}
.toc-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  color: #fde8d8;
  font-size: 0.87rem;
  font-weight: 600;
  border: 1px solid rgba(244, 185, 17, 0.2);
  transition: all 0.2s ease;
  text-decoration: none;
}
.toc-item:hover {
  background: rgba(244, 185, 17, 0.15);
  color: #f4b911;
  border-color: rgba(244, 185, 17, 0.4);
  transform: translateX(3px);
}
.toc-item svg {
  color: #f4b911;
  flex-shrink: 0;
}
.toc-item-num {
  font-size: 0.75rem;
  color: #f4b911;
  font-weight: 800;
  min-width: 18px;
}

.casino-section {
  margin: 12px 0;
}
.casino-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.casino-card {
  background: #fff;
  border-radius: 14px;
  border: 2px solid #e8d5c4;
  overflow: hidden;
  transition: all 0.22s ease;
  box-shadow: 0 2px 12px rgba(64, 13, 0, 0.08);
}
.casino-card:hover {
  box-shadow: 0 6px 28px rgba(64, 13, 0, 0.16);
  transform: translateY(-2px);
  border-color: #f4b911;
}
.casino-card.top-3 {
  border-color: #f4b911;
  box-shadow: 0 4px 20px rgba(244, 185, 17, 0.2);
}
.casino-card-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  flex-wrap: wrap;
}
.casino-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: #400d00;
  min-width: 36px;
  text-align: center;
}
.casino-card.top-3 .casino-num {
  color: #f4b911;
}
.casino-logo-wrap {
  width: 80px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  background: #f8f4f0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid #e0d0c0;
}
.casino-logo-svg {
  width: 72px;
  height: 48px;
}
.casino-info {
  flex: 1;
  min-width: 200px;
}
.casino-name {
  font-size: 1rem;
  font-weight: 800;
  color: #400d00;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.casino-flag {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: #66cc39;
  font-weight: 600;
}
.casino-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 6px 0;
}
.casino-stars {
  display: flex;
  gap: 2px;
}
.casino-star {
  color: #f4b911;
  font-size: 14px;
}
.casino-star.empty {
  color: #ddd;
}
.casino-rating-val {
  font-weight: 800;
  color: #400d00;
  font-size: 0.9rem;
}
.casino-bonus {
  font-size: 0.95rem;
  font-weight: 700;
  color: #66cc39;
  margin: 4px 0;
}
.casino-pros {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.casino-pro {
  font-size: 0.75rem;
  background: #f0fae8;
  color: #3a7020;
  padding: 3px 10px;
  border-radius: 12px;
  font-weight: 600;
  border: 1px solid #c5e8a0;
}
.casino-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
  flex-shrink: 0;
}
.casino-tc {
  font-size: 0.7rem;
  color: #999;
  margin-top: 4px;
  text-align: right;
}
.casino-tc a {
  color: #999;
}
.top-badge {
  background: linear-gradient(90deg, #f4b911, #ff8c00);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.casino-load-more {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.winners-section {
  margin: 12px 0;
}
.winners-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 10px;
}
.winners-live-dot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: #66cc39;
  font-weight: 600;
}
.live-dot {
  width: 8px;
  height: 8px;
  background: #66cc39;
  border-radius: 50%;
  animation: pulse-dot 1.4s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.7;
  }
}
.winners-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.winners-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
}
.winners-table th {
  background: #400d00;
  color: #f4b911;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 10px 14px;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.winners-table th:first-child {
  border-radius: 8px 0 0 0;
}
.winners-table th:last-child {
  border-radius: 0 8px 0 0;
}
.winners-table td {
  padding: 10px 14px;
  font-size: 0.88rem;
  border-bottom: 1px solid #f0e8e0;
  color: #1a0a00;
}
.winners-table tr:nth-child(even) td {
  background: #fdf8f4;
}
.winners-table tr:hover td {
  background: #fff5e6;
}
.winners-table tr:first-child td {
  font-weight: 700;
  color: #400d00;
}
.winner-rank {
  font-weight: 800;
  color: #400d00;
}
.winner-rank.gold {
  color: #f4b911;
}
.winner-rank.silver {
  color: #aaa;
}
.winner-rank.bronze {
  color: #cd7f32;
}
.winner-amount {
  font-weight: 800;
  color: #66cc39;
}
.winner-game {
  color: #888;
  font-size: 0.8rem;
}

.features-section {
  margin: 12px 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}
.feature-tile {
  background: linear-gradient(135deg, #400d00 0%, #5c1200 100%);
  border-radius: 12px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  border: 1px solid rgba(244, 185, 17, 0.2);
}
.feature-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(64, 13, 0, 0.3);
}
.feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(244, 185, 17, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-icon svg {
  color: #f4b911;
}
.feature-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}
.feature-desc {
  font-size: 0.8rem;
  color: #fde8d8;
  line-height: 1.5;
}

.strategies-section {
  margin: 12px 0;
}
.strategies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}
.strategy-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid #e8d5c4;
  transition: all 0.22s ease;
  box-shadow: 0 2px 12px rgba(64, 13, 0, 0.08);
}
.strategy-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(64, 13, 0, 0.18);
  border-color: #66cc39;
}
.strategy-img-wrap {
  height: 160px;
  overflow: hidden;
  position: relative;
}
.strategy-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.strategy-card:hover .strategy-img-wrap img {
  transform: scale(1.06);
}
.strategy-body {
  padding: 18px;
}
.strategy-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: #400d00;
  margin-bottom: 8px;
}
.strategy-desc {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.55;
  margin-bottom: 14px;
}

.review-section {
  margin: 12px 0;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding: 16px;
  background: #fdf8f4;
  border-radius: 10px;
  border: 1px solid #e8d5c4;
}
.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #400d00, #6b1800);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  color: #f4b911;
  flex-shrink: 0;
}
.author-name {
  font-weight: 800;
  color: #400d00;
  font-size: 0.95rem;
}
.author-bio {
  font-size: 0.78rem;
  color: #666;
  line-height: 1.4;
}
.author-link {
  font-size: 0.75rem;
  color: #66cc39;
  font-weight: 600;
}

.review-content h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #400d00;
  margin: 24px 0 10px;
  border-bottom: 2px solid #f4b911;
  padding-bottom: 6px;
}
.review-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #5c1200;
  margin: 18px 0 8px;
}
.review-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #400d00;
  margin: 14px 0 6px;
}
.review-content p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 14px;
}
.review-content ul,
.review-content ol {
  margin: 10px 0 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.review-content ul {
  list-style: disc;
}
.review-content ol {
  list-style: decimal;
}
.review-content li {
  font-size: 0.92rem;
  color: #333;
  line-height: 1.6;
}
.review-content strong {
  color: #400d00;
  font-weight: 700;
}
.review-content em {
  font-style: italic;
  color: #555;
}
.review-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  overflow-x: auto;
  display: block;
}
.review-content th {
  background: #400d00;
  color: #f4b911;
  padding: 10px 14px;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 700;
}
.review-content td {
  padding: 9px 14px;
  border: 1px solid #e0d0c0;
  font-size: 0.88rem;
  color: #333;
  background: #fff;
}
.review-content tr:nth-child(even) td {
  background: #fdf8f4;
}
.review-content a {
  color: #66cc39;
  text-decoration: underline;
}
.review-content blockquote {
  border-left: 4px solid #f4b911;
  padding: 12px 18px;
  background: #fff8e6;
  margin: 16px 0;
  font-style: italic;
  color: #555;
  border-radius: 0 8px 8px 0;
}
.review-content img {
  border-radius: 8px;
  margin: 12px 0;
}
.review-content hr {
  border: none;
  border-top: 2px solid #f0e0d0;
  margin: 20px 0;
}

.faq-section {
  margin: 12px 0;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  border: 1px solid #e8d5c4;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.2s ease;
}
.faq-item.is-open {
  box-shadow: 0 4px 16px rgba(64, 13, 0, 0.12);
  border-color: #f4b911;
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 700;
  color: #400d00;
  transition: background 0.15s ease;
}
.faq-q:hover {
  background: #fdf8f4;
}
.faq-item.is-open .faq-q {
  background: #fff8e6;
  color: #5c1200;
}
.faq-q-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #f4b911;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.faq-item.is-open .faq-q-icon {
  transform: rotate(45deg);
  background: #66cc39;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.is-open .faq-a {
  max-height: 600px;
}
.faq-a-inner {
  padding: 0 18px 16px;
  font-size: 0.9rem;
  color: #444;
  line-height: 1.7;
}

footer {
  background: linear-gradient(135deg, #400d00 0%, #5a1200 60%, #400d00 100%);
  margin-top: 20px;
  padding: 0;
}
.ftr-x4m1 {
  padding: 40px 16px 24px;
}
.ftr-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.ftr-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 28px;
  flex-wrap: wrap;
}
.ftr-brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ftr-logo-link {
  display: inline-block;
}
.ftr-flag-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: #f4b911;
  font-weight: 600;
}
.ftr-tagline {
  font-size: 0.8rem;
  color: #fde8d8;
  line-height: 1.5;
  max-width: 240px;
}
.ftr-col-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #f4b911;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.ftr-nav-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ftr-nav-list a {
  font-size: 0.85rem;
  color: #fde8d8;
  transition: color 0.2s ease;
}
.ftr-nav-list a:hover {
  color: #f4b911;
}
.ftr-social-links {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}
.ftr-social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fde8d8;
  transition: all 0.2s ease;
}
.ftr-social-link:hover {
  background: #f4b911;
  color: #400d00;
}
.ftr-email {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: #f4b911;
  font-weight: 600;
}
.ftr-providers-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.ftr-provider-item {
  opacity: 0.75;
  transition: opacity 0.2s ease;
}
.ftr-provider-item:hover {
  opacity: 1;
}
.ftr-payments-row {
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.ftr-payments-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.ftr-pay-badge {
  transition: opacity 0.2s ease;
  opacity: 0.85;
}
.ftr-pay-badge:hover {
  opacity: 1;
}
.ftr-trust-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.ftr-trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.ftr-trust-badge span {
  font-size: 0.62rem;
  color: #fde8d8;
  text-align: center;
  font-weight: 600;
}
.ftr-bottom {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ftr-copyright {
  font-size: 0.82rem;
  color: #f4b911;
  font-weight: 600;
}
.ftr-legal {
  font-size: 0.73rem;
  color: #fde8d8;
  line-height: 1.6;
  opacity: 0.8;
}
.ftr-legal a {
  color: #f4b911;
}
.ftr-affil {
  font-size: 0.72rem;
  color: #fde8d8;
  opacity: 0.65;
}

.bns-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, #400d00 0%, #5c1200 100%);
  padding: 10px 16px;
  gap: 12px;
  border-top: 2px solid #f4b911;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.5s ease;
}
@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}
.bns-widget-link {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  text-decoration: none;
  color: #fff;
  transition: opacity 0.2s ease;
}
.bns-widget-link:hover {
  opacity: 0.9;
  color: #fff;
}
.bns-widget-icon {
  width: 40px;
  height: 40px;
  background: #f4b911;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #400d00;
  flex-shrink: 0;
}
.bns-widget-text {
  display: flex;
  flex-direction: column;
}
.bns-widget-text strong {
  font-size: 1rem;
  font-weight: 800;
  color: #f4b911;
}
.bns-widget-text span {
  font-size: 0.78rem;
  color: #fde8d8;
}
.bns-widget-arrow {
  color: #f4b911;
  margin-left: auto;
  animation: bounceX 0.9s ease-in-out infinite;
}
@keyframes bounceX {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(4px);
  }
}
.bns-widget-close {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fde8d8;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease;
}
.bns-widget-close:hover {
  background: rgba(255, 255, 255, 0.25);
}

.info-page-content {
  margin: 24px auto;
  max-width: 800px;
}
.info-breadcrumbs {
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 16px;
}
.info-breadcrumbs a {
  color: #66cc39;
}
.info-breadcrumbs a:hover {
  color: #f4b911;
}

.page-info .review-content {
  display: block;
}
.page-info .box {
  margin-top: 12px;
  margin-bottom: 12px;
}

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

.badge-top1 {
  background: linear-gradient(90deg, #f4b911, #ffd022);
  color: #1a0a00;
}
.badge-top2 {
  background: linear-gradient(90deg, #aaa, #ccc);
  color: #1a0a00;
}
.badge-top3 {
  background: linear-gradient(90deg, #cd7f32, #e8a05a);
  color: #fff;
}

.hidden {
  display: none !important;
}
.text-center {
  text-align: center;
}
.mt1 {
  margin-top: 8px;
}
.mb1 {
  margin-bottom: 8px;
}

@media (max-width: 1024px) {
  .ftr-top {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .hdr-nav-wrap {
    position: fixed;
    top: 0;
    right: -100%;
    width: 72vw;
    max-width: 320px;
    height: 100vh;
    background: #400d00;
    flex-direction: column;
    align-items: flex-start;
    padding: 70px 20px 30px;
    z-index: 999;
    transition: right 0.3s ease;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.4);
    overflow-y: auto;
  }
  .hdr-nav-wrap.is-open {
    right: 0;
  }
  .hdr-nav-list {
    flex-direction: column;
    width: 100%;
    gap: 4px;
  }
  .hdr-nav-link {
    width: 100%;
    padding: 12px 14px;
    font-size: 1rem;
  }
  .hdr-burger {
    display: flex;
  }
  .hdr-jackpot-ticker {
    display: none;
  }
  .hdr-x9k2 {
    padding: 10px 14px;
  }
  .hdr-btn-play,
  .hdr-btn-bonus {
    padding: 8px 12px;
    font-size: 0.78rem;
  }
  .hero-section {
    min-height: 400px;
  }
  .hero-inner {
    padding: 40px 16px;
  }
  .hero-ctas {
    flex-direction: column;
    max-width: 280px;
  }
  .ftr-top {
    grid-template-columns: 1fr 1fr;
  }
  .casino-card-inner {
    gap: 10px;
  }
  .casino-actions {
    flex-direction: row;
    align-items: center;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .strategies-grid {
    grid-template-columns: 1fr;
  }
  .bns-widget-text span {
    display: none;
  }
}
@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ftr-top {
    grid-template-columns: 1fr;
  }
  .casino-card-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .casino-actions {
    width: 100%;
    flex-direction: row;
  }
  .toc-grid {
    grid-template-columns: 1fr;
  }
  .hdr-cta-wrap {
    gap: 6px;
  }
}

.wp-block-separator {
  border: none;
  border-top: 2px solid #f0e0d0;
  margin: 24px 0;
}
.aligncenter {
  text-align: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-caption {
  max-width: 100%;
  text-align: center;
}
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.entry-content {
  display: none;
}
.post-thumbnail {
  display: none;
}
.xm2k-hidden-el {
  position: absolute;
  left: -9999px;
  visibility: hidden;
}
.nk7p-slot-wrap {
  display: none;
}
.q8r3-meta-block {
  display: none;
}
