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

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  background: #750a02;
}
body {
  font-family: "Inter", sans-serif;
  background: #750a02;
  color: #f5e9d0;
  line-height: 1.6;
  min-width: 320px;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #38ab7e;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: #d88f16;
}

.x7k2m9 {
  display: none;
}
.q3p8r1 {
  visibility: hidden;
  position: absolute;
  width: 0;
  height: 0;
}
.f6n4s0 {
  overflow: hidden;
  height: 0;
  width: 0;
}

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

.site-header {
  background: #17140c;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid #d88f16;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  flex-wrap: wrap;
}
.header-logo {
  flex-shrink: 0;
}
.header-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}
.header-logo-text {
  font-size: 1.3rem;
  font-weight: 800;
  color: #d88f16;
  letter-spacing: 0.04em;
  line-height: 1.2;
}
.header-logo-text span {
  color: #38ab7e;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.header-nav a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #f5e9d0;
  transition:
    background 0.2s,
    color 0.2s;
  white-space: nowrap;
}
.header-nav a:hover {
  background: rgba(216, 143, 22, 0.15);
  color: #d88f16;
}
.header-nav a svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.header-ctas {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.15s,
    box-shadow 0.15s,
    filter 0.15s;
  border: none;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}
.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.1);
}
.btn:active {
  transform: translateY(0);
}
.btn--play {
  background: #d88f16;
  color: #17140c;
  box-shadow: 0 3px 12px rgba(216, 143, 22, 0.4);
}
.btn--play:hover {
  color: #17140c;
  box-shadow: 0 5px 20px rgba(216, 143, 22, 0.6);
}
.btn--bonus {
  background: #38ab7e;
  color: #17140c;
  box-shadow: 0 3px 12px rgba(56, 171, 126, 0.4);
}
.btn--bonus:hover {
  color: #17140c;
  box-shadow: 0 5px 20px rgba(56, 171, 126, 0.6);
}
.btn--outline {
  background: transparent;
  border: 2px solid #38ab7e;
  color: #38ab7e;
}
.btn--outline:hover {
  background: #38ab7e;
  color: #17140c;
}
.btn--sm {
  padding: 7px 14px;
  font-size: 0.8rem;
}
.btn--lg {
  padding: 14px 28px;
  font-size: 1rem;
}

.jackpot-badge {
  background: linear-gradient(135deg, #17140c 0%, #2a2415 100%);
  border: 1px solid #d88f16;
  border-radius: 8px;
  padding: 6px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-size: 0.8rem;
}
.jackpot-badge__label {
  color: #f5e9d0;
  opacity: 0.7;
  font-size: 0.75rem;
}
.jackpot-badge__value {
  color: #d88f16;
  font-weight: 800;
  font-size: 1rem;
  font-variant-numeric: tabular-nums;
  min-width: 90px;
  text-align: right;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  border-radius: 6px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #f5e9d0;
  border-radius: 2px;
  transition:
    transform 0.3s,
    opacity 0.3s,
    width 0.3s;
}
.burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.is-open span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #17140c;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("/wban.avif");
  background-size: cover;
  background-position: center top;
  opacity: 0.45;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(23, 20, 12, 0.92) 0%,
    rgba(23, 20, 12, 0.55) 60%,
    rgba(23, 20, 12, 0.1) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 60px 0;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(216, 143, 22, 0.15);
  border: 1px solid rgba(216, 143, 22, 0.4);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #d88f16;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 18px;
}
.hero h1 span {
  color: #d88f16;
}
.hero-desc {
  font-size: 1.05rem;
  color: #d4c9b0;
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 480px;
}
.hero-stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-stat__val {
  font-size: 1.3rem;
  font-weight: 800;
  color: #d88f16;
}
.hero-stat__label {
  font-size: 0.75rem;
  color: #9e9080;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-img-wrap {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 45%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 1;
  pointer-events: none;
}
.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.6;
  mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.8) 40%);
}

.section {
  padding: 64px 0;
}
.section--dark {
  background: #17140c;
}
.section--darker {
  background: #120f08;
}
.section--accent {
  background: linear-gradient(135deg, #17140c 0%, #1f1a0d 100%);
}
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.section-title span {
  color: #d88f16;
}
.section-desc {
  font-size: 1rem;
  color: #9e9080;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.65;
}
.divider {
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    #d88f16 30%,
    #38ab7e 70%,
    transparent
  );
  margin: 0 auto 40px;
  width: 120px;
  border-radius: 2px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 860px;
  margin: 0 auto;
}
.faq-item {
  background: #1f1a0e;
  border: 1px solid rgba(216, 143, 22, 0.2);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:hover {
  border-color: rgba(216, 143, 22, 0.45);
}
.faq-item.is-open {
  border-color: #d88f16;
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.97rem;
  color: #f5e9d0;
  user-select: none;
  list-style: none;
}
.faq-q::marker,
.faq-q::-webkit-details-marker {
  display: none;
}
.faq-q svg {
  flex-shrink: 0;
  transition: transform 0.3s;
  color: #d88f16;
  width: 18px;
  height: 18px;
}
.faq-item.is-open .faq-q svg {
  transform: rotate(45deg);
}
.faq-a {
  padding: 0 20px 18px;
  font-size: 0.92rem;
  color: #c4b89e;
  line-height: 1.7;
  border-top: 1px solid rgba(216, 143, 22, 0.1);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}
.review-card {
  background: #1f1a0e;
  border: 1px solid rgba(56, 171, 126, 0.2);
  border-radius: 12px;
  padding: 24px;
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.review-card:hover {
  border-color: #38ab7e;
  transform: translateY(-3px);
}
.review-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #38ab7e;
  flex-shrink: 0;
}
.review-name {
  font-weight: 700;
  color: #f5e9d0;
  font-size: 0.95rem;
}
.review-stars {
  display: flex;
  gap: 3px;
  color: #d88f16;
  font-size: 1.1rem;
  margin-top: 3px;
}
.review-text {
  font-size: 0.9rem;
  color: #b0a58c;
  line-height: 1.65;
}

.review-form-wrap {
  background: #1f1a0e;
  border: 1px solid rgba(216, 143, 22, 0.25);
  border-radius: 12px;
  padding: 32px;
  max-width: 560px;
  margin: 0 auto;
}
.review-form-wrap h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #f5e9d0;
  margin-bottom: 24px;
}
.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #9e9080;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-input,
.form-textarea {
  background: #2a2415;
  border: 1px solid rgba(216, 143, 22, 0.3);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: "Inter", sans-serif;
  font-size: 0.92rem;
  color: #f5e9d0;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  width: 100%;
  outline: none;
}
.form-input:focus,
.form-textarea:focus {
  border-color: #d88f16;
  box-shadow: 0 0 0 3px rgba(216, 143, 22, 0.15);
}
.form-textarea {
  resize: vertical;
  min-height: 110px;
}
.form-success {
  display: none;
  background: rgba(56, 171, 126, 0.15);
  border: 1px solid #38ab7e;
  border-radius: 8px;
  padding: 14px 18px;
  color: #38ab7e;
  font-weight: 600;
  margin-top: 14px;
  font-size: 0.92rem;
}

.casino-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}
.casino-card {
  background: #1f1a0e;
  border: 1px solid rgba(216, 143, 22, 0.2);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: stretch;
  gap: 16px;
  transition:
    border-color 0.2s,
    transform 0.2s;
  flex-wrap: wrap;
}
.casino-card:hover {
  border-color: #d88f16;
  transform: translateX(3px);
}
.casino-card--top {
  border-color: #d88f16;
  background: linear-gradient(135deg, #1f1a0e 0%, #251e0e 100%);
}
.casino-card--top-2 {
  border-color: rgba(216, 143, 22, 0.6);
}
.casino-card--top-3 {
  border-color: rgba(216, 143, 22, 0.4);
}
.casino-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  flex-shrink: 0;
  font-size: 1.4rem;
  font-weight: 900;
  color: #d88f16;
  align-self: center;
}
.casino-card--top .casino-num {
  font-size: 1.8rem;
}
.casino-logo-wrap {
  width: 80px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
}
.casino-logo-wrap img {
  max-width: 80px;
  max-height: 50px;
  object-fit: contain;
}
.casino-logo-placeholder {
  width: 80px;
  height: 50px;
  background: #2a2415;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: #6b6050;
  font-weight: 600;
  text-align: center;
  padding: 4px;
}
.casino-info {
  flex: 1;
  min-width: 200px;
}
.casino-info-top {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.casino-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #f5e9d0;
}
.casino-flag {
  font-size: 1.1rem;
}
.casino-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.casino-rating-val {
  font-weight: 800;
  color: #d88f16;
  font-size: 1rem;
}
.casino-rating-stars {
  color: #d88f16;
  font-size: 0.85rem;
}
.casino-bonus {
  font-size: 0.88rem;
  color: #38ab7e;
  font-weight: 600;
  margin-bottom: 8px;
}
.casino-pros {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.casino-pro {
  background: rgba(56, 171, 126, 0.1);
  border: 1px solid rgba(56, 171, 126, 0.25);
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 0.75rem;
  color: #38ab7e;
}
.casino-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.casino-tc {
  font-size: 0.68rem;
  color: #6b6050;
  margin-top: 6px;
}
.casino-tc a {
  color: #6b6050;
  text-decoration: underline;
}

.load-more-wrap {
  text-align: center;
  margin-top: 16px;
}
.hidden-casino {
  display: none;
}

.adv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}
.adv-tile {
  background: #1f1a0e;
  border: 1px solid rgba(216, 143, 22, 0.2);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.adv-tile:hover {
  border-color: #d88f16;
  transform: translateY(-4px);
}
.adv-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(216, 143, 22, 0.15),
    rgba(56, 171, 126, 0.1)
  );
  border-radius: 12px;
  color: #d88f16;
}
.adv-icon svg {
  width: 28px;
  height: 28px;
}
.adv-title {
  font-size: 0.97rem;
  font-weight: 700;
  color: #f5e9d0;
  margin-bottom: 8px;
}
.adv-desc {
  font-size: 0.83rem;
  color: #9e9080;
  line-height: 1.55;
}

.app-section-inner {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.app-phone-wrap {
  flex-shrink: 0;
  width: 200px;
}
.phone-frame {
  width: 200px;
  height: 400px;
  border: 8px solid #2a2415;
  border-radius: 36px;
  background: #120f08;
  overflow: hidden;
  box-shadow:
    0 0 0 2px #d88f16,
    0 20px 60px rgba(0, 0, 0, 0.6);
  position: relative;
}
.phone-frame::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 10px;
  background: #2a2415;
  border-radius: 6px;
  z-index: 2;
}
.phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.app-info {
  flex: 1;
  min-width: 260px;
}
.app-info h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #f5e9d0;
  margin-bottom: 20px;
}
.app-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 28px;
}
.app-table th,
.app-table td {
  padding: 10px 14px;
  text-align: left;
  font-size: 0.88rem;
  border: 1px solid rgba(216, 143, 22, 0.2);
}
.app-table th {
  background: #2a2415;
  color: #d88f16;
  font-weight: 600;
  white-space: nowrap;
}
.app-table td {
  color: #c4b89e;
  background: #1f1a0e;
}
.app-table tr:hover td {
  background: #252010;
}
.app-dl-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn--store {
  background: #2a2415;
  border: 1px solid rgba(216, 143, 22, 0.35);
  color: #f5e9d0;
  padding: 12px 18px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.btn--store:hover {
  border-color: #d88f16;
  background: #33291a;
  color: #f5e9d0;
}
.btn--store svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.btn--store span {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.btn--store .store-sub {
  font-size: 0.7rem;
  font-weight: 400;
  color: #9e9080;
}
.btn--store .store-name {
  font-weight: 700;
  color: #f5e9d0;
  font-size: 0.88rem;
}

.content-review {
  background: #1f1a0e;
  border-radius: 12px;
  border: 1px solid rgba(216, 143, 22, 0.2);
  padding: 36px;
  line-height: 1.75;
}
.content-review h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #f5e9d0;
  margin: 28px 0 14px;
}
.content-review h2:first-child {
  margin-top: 0;
}
.content-review h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #d88f16;
  margin: 22px 0 10px;
}
.content-review h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #c4b89e;
  margin: 18px 0 8px;
}
.content-review p {
  color: #c4b89e;
  margin-bottom: 14px;
  font-size: 0.95rem;
}
.content-review ul,
.content-review ol {
  padding-left: 24px;
  margin-bottom: 14px;
  color: #c4b89e;
  font-size: 0.95rem;
}
.content-review ul li,
.content-review ol li {
  margin-bottom: 6px;
}
.content-review ul li::marker {
  color: #d88f16;
}
.content-review ol li::marker {
  color: #d88f16;
}
.content-review a {
  color: #38ab7e;
}
.content-review a:hover {
  color: #d88f16;
}
.content-review strong,
.content-review b {
  color: #f5e9d0;
  font-weight: 600;
}
.content-review em,
.content-review i {
  color: #d88f16;
  font-style: italic;
}
.content-review table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  overflow-x: auto;
  display: block;
}
.content-review table th,
.content-review table td {
  padding: 10px 14px;
  border: 1px solid rgba(216, 143, 22, 0.25);
  text-align: left;
  font-size: 0.88rem;
}
.content-review table th {
  background: #2a2415;
  color: #d88f16;
  font-weight: 600;
}
.content-review table td {
  background: #17140c;
  color: #c4b89e;
}
.content-review blockquote {
  border-left: 3px solid #d88f16;
  padding: 12px 20px;
  background: rgba(216, 143, 22, 0.07);
  border-radius: 0 8px 8px 0;
  margin: 14px 0;
  color: #d4c9b0;
  font-style: italic;
}
.content-review hr {
  border: none;
  border-top: 1px solid rgba(216, 143, 22, 0.2);
  margin: 24px 0;
}
.content-review img {
  border-radius: 8px;
  margin: 12px 0;
}
.content-review code {
  background: #2a2415;
  color: #d88f16;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.85rem;
}
.content-review pre {
  background: #2a2415;
  padding: 16px;
  border-radius: 8px;
  overflow-x: auto;
  margin-bottom: 14px;
}
.author-box {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: rgba(56, 171, 126, 0.07);
  border: 1px solid rgba(56, 171, 126, 0.2);
  border-radius: 10px;
  padding: 20px;
  margin-top: 32px;
}
.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #38ab7e, #17140c);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.author-meta {
  flex: 1;
}
.author-name {
  font-weight: 700;
  color: #f5e9d0;
  font-size: 0.97rem;
  margin-bottom: 4px;
}
.author-bio {
  font-size: 0.83rem;
  color: #9e9080;
  line-height: 1.55;
}
.author-link {
  font-size: 0.8rem;
  color: #38ab7e;
  margin-top: 4px;
  display: inline-block;
}

.site-footer {
  background: #17140c;
  border-top: 2px solid rgba(216, 143, 22, 0.3);
  padding: 48px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  margin-bottom: 36px;
}
.footer-col-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9e9080;
  font-weight: 600;
  margin-bottom: 14px;
}
.footer-logo {
  margin-bottom: 14px;
}
.footer-logo img {
  height: 40px;
  width: auto;
}
.footer-logo-text {
  font-size: 1.1rem;
  font-weight: 800;
  color: #d88f16;
  margin-bottom: 10px;
}
.footer-logo-text span {
  color: #38ab7e;
}
.footer-desc {
  font-size: 0.82rem;
  color: #6b6050;
  line-height: 1.6;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  font-size: 0.85rem;
  color: #9e9080;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #d88f16;
}
.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #2a2415;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9e9080;
  transition:
    background 0.2s,
    color 0.2s;
}
.social-btn:hover {
  background: #d88f16;
  color: #17140c;
}
.social-btn svg {
  width: 18px;
  height: 18px;
}
.footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}
.pay-badge {
  background: #2a2415;
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 0.7rem;
  color: #9e9080;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.07);
}
.trust-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
}
.trust-badge {
  background: #2a2415;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 0.7rem;
  color: #9e9080;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}
.trust-badge svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}
.footer-legal {
  font-size: 0.72rem;
  color: #4a4030;
  line-height: 1.6;
  max-width: 860px;
}
.footer-copy {
  font-size: 0.78rem;
  color: #5a5040;
}
.footer-flag {
  font-size: 1.3rem;
}
.footer-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #9e9080;
  font-size: 0.8rem;
  font-weight: 800;
  color: #9e9080;
}
.provider-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.provider-logo-wrap img {
  height: 28px;
  width: auto;
  object-fit: contain;
  opacity: 0.6;
  filter: grayscale(40%);
  transition:
    opacity 0.2s,
    filter 0.2s;
}
.provider-logo-wrap img:hover {
  opacity: 1;
  filter: none;
}
.license-badge {
  background: #2a2415;
  border: 1px solid rgba(216, 143, 22, 0.2);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 0.72rem;
  color: #9e9080;
}

/* ========== WIDGET ========== */
.bonus-widget {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #17140c, #251e0e);
  border: 2px solid #d88f16;
  border-radius: 50px;
  padding: 10px 20px 10px 14px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.6),
    0 0 20px rgba(216, 143, 22, 0.2);
  animation: widgetPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.8s both;
}
.bonus-widget a {
  text-decoration: none !important;
  color: #17140c !important;
}
.bonus-widget-close {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #17140c;
  border: 1px solid rgba(216, 143, 22, 0.4);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: #9e9080;
  transition: background 0.2s;
}
.bonus-widget-close:hover {
  background: #d88f16;
  color: #17140c;
}
.bonus-widget-icon {
  font-size: 1.4rem;
}
.bonus-widget-text {
  font-size: 0.88rem;
  color: #f5e9d0;
  font-weight: 600;
}
.bonus-widget-text span {
  color: #d88f16;
  font-weight: 800;
}
@keyframes widgetPop {
  from {
    opacity: 0;
    transform: translateX(-50%) scale(0.7);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
}

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

.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 8px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: #6b6050;
  padding: 14px 0;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: #9e9080;
  transition: color 0.2s;
}
.breadcrumb a:hover {
  color: #d88f16;
}
.breadcrumb span {
  color: #d88f16;
}

.info-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 0;
}
.info-page h1 {
  font-size: 2rem;
  font-weight: 800;
  color: #f5e9d0;
  margin-bottom: 24px;
}
.info-page h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #d88f16;
  margin: 28px 0 12px;
}
.info-page p,
.info-page li {
  font-size: 0.95rem;
  color: #c4b89e;
  line-height: 1.75;
}
.info-page ul,
.info-page ol {
  padding-left: 24px;
  margin-bottom: 14px;
}
.info-page li {
  margin-bottom: 6px;
}
.info-page a {
  color: #38ab7e;
}
.info-page a:hover {
  color: #d88f16;
}
.info-page hr {
  border: none;
  border-top: 1px solid rgba(216, 143, 22, 0.15);
  margin: 24px 0;
}

.wp-caption,
.wp-caption-text {
  max-width: 100%;
}
.alignleft {
  float: left;
  margin: 0 20px 10px 0;
}
.alignright {
  float: right;
  margin: 0 0 10px 20px;
}
.aligncenter {
  display: block;
  margin: 10px auto;
}
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
#wpadminbar {
  display: none !important;
}
.wp-block-group,
.wp-block-columns {
  display: block;
}

@media (max-width: 900px) {
  .header-nav {
    display: none;
    position: fixed;
    inset: 0;
    top: 72px;
    background: #17140c;
    flex-direction: column;
    padding: 20px;
    gap: 8px;
    z-index: 999;
    overflow-y: auto;
    align-items: flex-start;
  }
  .header-nav.is-open {
    display: flex;
  }
  .header-nav a {
    width: 100%;
    padding: 13px 16px;
    border-radius: 8px;
    font-size: 1rem;
  }
  .burger {
    display: flex;
  }
  .hero-img-wrap {
    display: none;
  }
  .hero-content {
    max-width: 100%;
  }
  .hero {
    min-height: 420px;
  }
  .app-section-inner {
    justify-content: center;
  }
  .casino-card {
    flex-direction: column;
  }
  .casino-logo-wrap {
    width: 100%;
    justify-content: flex-start;
  }
}
@media (max-width: 600px) {
  .hero h1 {
    font-size: 1.7rem;
  }
  .header-ctas {
    gap: 6px;
  }
  .btn--play,
  .btn--bonus {
    padding: 8px 13px;
    font-size: 0.8rem;
  }
  .section {
    padding: 40px 0;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .adv-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .bonus-widget {
    bottom: 8px;
    left: 8px;
    right: 8px;
    transform: none;
    border-radius: 14px;
  }
  @keyframes widgetPop {
    from {
      opacity: 0;
      transform: scale(0.9);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }
}
@media (max-width: 380px) {
  .adv-grid {
    grid-template-columns: 1fr;
  }
}


/* Mobile header: keep everything in one row and move jackpot into burger menu */
.mobile-jackpot {
  display: none;
}

@media (max-width: 900px) {
  .header-inner {
    flex-wrap: nowrap !important;
    min-height: 64px;
    padding: 8px 0 !important;
  }

  .header-logo {
    min-width: 0;
    flex: 0 1 auto;
  }

  .header-logo img {
    width: auto;
    height: 40px;
    max-width: 150px;
  }

  .header-ctas {
    margin-left: auto;
    flex: 0 0 auto;
    flex-wrap: nowrap;
  }

  .header-ctas > .jackpot-badge {
    display: none !important;
  }

  .mobile-jackpot {
    display: flex;
    width: 100%;
    margin-top: 10px;
    padding: 14px 16px;
    border: 1px solid #d88f16;
    border-radius: 10px;
    background: linear-gradient(135deg, #17140c 0%, #2a2415 100%);
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .mobile-jackpot__label {
    color: #f5e9d0;
    font-size: 0.9rem;
    opacity: 0.75;
  }

  .mobile-jackpot__value {
    color: #d88f16;
    font-size: 1rem;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
  }
}

@media (max-width: 600px) {
  .header-logo img {
    height: 34px;
    max-width: 128px;
  }

  .header-ctas .btn--play {
    display: none !important;
  }

  .header-ctas .btn--bonus {
    padding: 9px 11px;
    font-size: 0.76rem;
  }

  .burger {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
  }
}

@media (max-width: 390px) {
  .header-ctas .btn--bonus {
    display: none !important;
  }
}
