*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
  background: #f46c2e;
}
body {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #1a0800;
  background: #f46c2e;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #66cc39;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: #f4b911;
}
.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}
.box {
  border-radius: 12px;
  overflow: hidden;
}

.hdr-container {
  padding-top: 10px;
  padding-bottom: 0;
}
.header {
  background: linear-gradient(135deg, #400d00 0%, #5a1200 60%, #400d00 100%);
  border-radius: 12px;
  padding: 0 20px;
  position: sticky;
  top: 8px;
  z-index: 100;
  box-shadow: 0 4px 24px rgba(64, 13, 0, 0.5);
}
.hdr-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 68px;
  flex-wrap: nowrap;
}
.hdr-logo-wrap {
  flex-shrink: 0;
}
.hdr-logo img {
  height: 48px;
  width: auto;
  display: block;
}

.hdr-jackpot-live {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(244, 185, 17, 0.12);
  border: 1px solid rgba(244, 185, 17, 0.3);
  border-radius: 20px;
  padding: 5px 14px;
  margin-left: 4px;
  white-space: nowrap;
}
.hdr-jackpot-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 4px;
}
.hdr-jackpot-val {
  font-size: 0.9rem;
  font-weight: 800;
  color: #f4b911;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}

.hdr-cta-btns {
  display: flex;
  gap: 8px;
  margin-left: auto;
  flex-shrink: 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  border: none;
  transition:
    transform 0.15s,
    box-shadow 0.15s,
    filter 0.15s;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}
.btn:active {
  transform: translateY(0);
}
.btn-play {
  background: linear-gradient(135deg, #66cc39, #4da82c);
  color: #fff;
}
.btn-play:hover {
  color: #fff;
  filter: brightness(1.1);
}
.btn-bonus {
  background: linear-gradient(135deg, #f4b911, #d49a0a);
  color: #1a0800;
}
.btn-bonus:hover {
  color: #1a0800;
  filter: brightness(1.08);
}

.hdr-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  padding: 8px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  margin-left: 8px;
}
.hdr-burger span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition:
    transform 0.25s,
    opacity 0.25s;
}
.hdr-burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hdr-burger.is-open span:nth-child(2) {
  opacity: 0;
}
.hdr-burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hdr-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.hdr-navlist {
  list-style: none;
  display: flex;
  gap: 2px;
}
.hdr-navlink {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 6px;
  transition:
    background 0.2s,
    color 0.2s;
}
.hdr-navlink:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #f4b911;
}
.hdr-nav-btns-mobile {
  display: none;
}
.hdr-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 98;
  backdrop-filter: blur(2px);
}

.hero-wrap {
  width: 100%;
  position: relative;
  overflow: hidden;
  margin: 12px 0;
}
.hero-banner {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  background: url("/hero-banner.png") center/cover no-repeat;
  border-radius: 12px;
  overflow: hidden;
}
.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(64, 13, 0, 0.82) 0%,
    rgba(64, 13, 0, 0.55) 50%,
    rgba(64, 13, 0, 0.2) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 48px 56px;
  max-width: 600px;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #f4b911;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-eyebrow::before {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: #f4b911;
}
.hero-h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}
.hero-h1 span {
  color: #f4b911;
}
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
  line-height: 1.6;
  max-width: 480px;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-btns .btn {
  font-size: 0.95rem;
  padding: 13px 28px;
}
.hero-stats {
  display: flex;
  gap: 24px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.hero-stat {
  text-align: left;
}
.hero-stat-val {
  font-size: 1.4rem;
  font-weight: 800;
  color: #f4b911;
  display: block;
}
.hero-stat-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.main-container {
  padding-top: 0;
  padding-bottom: 24px;
}
.main-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.content.box {
  background: rgba(40, 8, 0, 0.88);
  border-radius: 12px;
  padding: 0;
  border: 1px solid rgba(244, 185, 17, 0.18);
}
.section-block {
  background: rgba(40, 8, 0, 0.88);
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 0;
}
.section-block + .section-block {
  margin-top: 0;
}

.sec-title {
  font-size: 1.55rem;
  font-weight: 800;
  color: #f4b911;
  margin-bottom: 8px;
  line-height: 1.2;
}
.sec-subtitle {
  font-size: 0.92rem;
  color: rgba(255, 220, 180, 0.7);
  margin-bottom: 24px;
  line-height: 1.5;
}
.sec-divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, #f4b911, #f46c2e);
  border-radius: 2px;
  margin-bottom: 20px;
}

.main-h1 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #f4b911;
  padding: 32px 32px 0;
  line-height: 1.2;
}

.demo-section {
  padding: 32px;
}
.demo-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  align-items: start;
}
.demo-frame-wrap {
  position: relative;
  background: #1a0800;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.demo-frame-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.demo-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(
    135deg,
    rgba(64, 13, 0, 0.92),
    rgba(90, 18, 0, 0.92)
  );
  cursor: pointer;
  transition: opacity 0.3s;
}
.demo-overlay.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.demo-overlay-icon {
  font-size: 3.5rem;
  line-height: 1;
}
.demo-overlay-text {
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center;
}
.demo-overlay .btn {
  margin-top: 4px;
}
.demo-real-btn {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}

.game-details {
  background: rgba(30, 6, 0, 0.82);
  border: 1px solid rgba(244, 185, 17, 0.25);
  border-radius: 10px;
  overflow: hidden;
}
.game-details-title {
  background: linear-gradient(135deg, #400d00, #5a1200);
  color: #f4b911;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 16px;
}
.gd-table {
  width: 100%;
  border-collapse: collapse;
}
.gd-table tr {
  border-bottom: 1px solid rgba(244, 109, 46, 0.12);
}
.gd-table tr:last-child {
  border-bottom: none;
}
.gd-table td {
  padding: 7px 14px;
  font-size: 0.8rem;
  vertical-align: middle;
}
.gd-table td:first-child {
  color: rgba(255, 220, 180, 0.65);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.gd-table td:last-child {
  color: #fff8f0;
  font-weight: 600;
  text-align: right;
}
.gd-table tr:nth-child(even) {
  background: rgba(244, 185, 17, 0.06);
}
.gd-icon {
  font-size: 0.95rem;
  width: 16px;
  text-align: center;
}

.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 8px;
}
.pros-card,
.cons-card {
  border-radius: 10px;
  padding: 22px;
  border: 1px solid transparent;
}
.pros-card {
  background: rgba(20, 50, 10, 0.7);
  border-color: rgba(102, 204, 57, 0.35);
}
.cons-card {
  background: rgba(50, 10, 10, 0.7);
  border-color: rgba(220, 53, 69, 0.35);
}
.pc-title {
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pros-card .pc-title {
  color: #2d7a1f;
}
.cons-card .pc-title {
  color: #b02a37;
}
.pc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.pc-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.87rem;
  line-height: 1.5;
  color: rgba(255, 240, 220, 0.88);
}
.pc-list li::before {
  flex-shrink: 0;
  font-size: 1rem;
  margin-top: 1px;
}
.pros-card .pc-list li::before {
  content: "✓";
  color: #2d7a1f;
  font-weight: 800;
}
.cons-card .pc-list li::before {
  content: "✗";
  color: #b02a37;
  font-weight: 800;
}

.jackpots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 8px;
}
.jackpot-card {
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.jackpot-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.18);
}
.jackpot-mini {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  border: 1px solid rgba(102, 204, 57, 0.4);
}
.jackpot-minor {
  background: linear-gradient(135deg, #1a1a2e, #0f3460);
  border: 1px solid rgba(102, 180, 255, 0.4);
}
.jackpot-major {
  background: linear-gradient(135deg, #2d1a00, #4a2c00);
  border: 1px solid rgba(244, 185, 17, 0.5);
}
.jackpot-grand {
  background: linear-gradient(135deg, #400d00, #6b1200);
  border: 2px solid rgba(244, 185, 17, 0.7);
  box-shadow: 0 0 32px rgba(244, 185, 17, 0.15);
}
.jk-tier {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
  padding: 3px 10px;
  border-radius: 20px;
  display: inline-block;
}
.jackpot-mini .jk-tier {
  color: #66cc39;
  background: rgba(102, 204, 57, 0.15);
}
.jackpot-minor .jk-tier {
  color: #66b4ff;
  background: rgba(102, 180, 255, 0.15);
}
.jackpot-major .jk-tier {
  color: #f4b911;
  background: rgba(244, 185, 17, 0.15);
}
.jackpot-grand .jk-tier {
  color: #f4b911;
  background: rgba(244, 185, 17, 0.2);
}
.jk-amount {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin: 8px 0;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
}
.jackpot-grand .jk-amount {
  font-size: 1.9rem;
  color: #f4b911;
  text-shadow: 0 0 20px rgba(244, 185, 17, 0.4);
}
.jk-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 14px;
}
.jk-winners {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 12px;
  margin-top: 6px;
}
.jk-winner-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
  font-size: 0.72rem;
}
.jk-winner-nick {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
}
.jk-winner-val {
  color: #f4b911;
  font-weight: 700;
}

.winners-section {
  padding: 32px;
}
.winners-table-wrap {
  overflow-x: auto;
  border-radius: 10px;
  border: 1px solid rgba(244, 109, 46, 0.2);
  margin-top: 16px;
}
.winners-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 500px;
}
.winners-table thead {
  background: linear-gradient(135deg, #400d00, #5a1200);
}
.winners-table thead th {
  padding: 12px 16px;
  text-align: left;
  color: #f4b911;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.winners-table tbody tr {
  border-bottom: 1px solid rgba(244, 109, 46, 0.1);
  transition: background 0.15s;
}
.winners-table tbody tr:hover {
  background: rgba(244, 109, 46, 0.06);
}
.winners-table tbody tr:nth-child(even) {
  background: rgba(244, 109, 46, 0.03);
}
.winners-table tbody td {
  padding: 10px 16px;
  font-size: 0.85rem;
  color: rgba(255, 240, 220, 0.88);
  vertical-align: middle;
}
.wt-rank {
  font-weight: 800;
  color: rgba(255, 240, 220, 0.7);
}
.wt-rank-1 {
  color: #f4b911;
}
.wt-rank-2 {
  color: #a8a9ad;
}
.wt-rank-3 {
  color: #c87533;
}
.wt-nick {
  font-weight: 600;
  color: #fff8f0;
}
.wt-amount {
  font-weight: 800;
  color: #66cc39;
}
.wt-date {
  color: #9e6555;
  font-size: 0.78rem;
}
.wt-game-badge {
  background: rgba(244, 185, 17, 0.15);
  color: rgba(255, 220, 180, 0.8);
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 12px;
  font-weight: 600;
}

.faq-section {
  padding: 32px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}
.faq-item {
  border: 1px solid rgba(244, 109, 46, 0.2);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.is-open {
  border-color: rgba(244, 185, 17, 0.5);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  cursor: pointer;
  background: rgba(40, 8, 0, 0.6);
  transition: background 0.2s;
  gap: 12px;
}
.faq-q:hover {
  background: rgba(244, 185, 17, 0.1);
}
.faq-q-text {
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff8f0;
  line-height: 1.4;
  flex: 1;
}
.faq-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #400d00;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.25s,
    background 0.2s;
}
.faq-icon svg {
  color: #fff;
  transition: transform 0.25s;
}
.faq-item.is-open .faq-icon {
  background: #f4b911;
}
.faq-item.is-open .faq-icon svg {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.25s;
}
.faq-item.is-open .faq-a {
  max-height: 600px;
}
.faq-a-inner {
  padding: 0 20px 18px;
  font-size: 0.88rem;
  color: rgba(255, 240, 220, 0.85);
  line-height: 1.7;
  border-top: 1px solid rgba(244, 185, 17, 0.15);
}

.reviews-section {
  padding: 32px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}
.review-card {
  background: rgba(40, 8, 0, 0.72);
  border: 1px solid rgba(244, 185, 17, 0.2);
  border-radius: 12px;
  padding: 22px;
  transition: box-shadow 0.2s;
}
.review-card:hover {
  box-shadow: 0 6px 24px rgba(244, 109, 46, 0.12);
}
.review-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #400d00, #6b1200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: #f4b911;
  flex-shrink: 0;
}
.review-meta {
  flex: 1;
  min-width: 0;
}
.review-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff8f0;
}
.review-date {
  font-size: 0.72rem;
  color: #9e6555;
}
.review-stars {
  display: flex;
  gap: 2px;
  margin-top: 3px;
}
.review-star {
  color: #f4b911;
  font-size: 0.9rem;
}
.review-star.empty {
  color: rgba(255, 255, 255, 0.2);
}
.review-text {
  font-size: 0.85rem;
  color: rgba(255, 240, 220, 0.85);
  line-height: 1.65;
}

.review-form-wrap {
  margin-top: 24px;
  background: rgba(30, 6, 0, 0.75);
  border: 1px solid rgba(244, 185, 17, 0.25);
  border-radius: 12px;
  padding: 28px;
}
.review-form-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #f4b911;
  margin-bottom: 20px;
}
.review-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.form-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 220, 180, 0.75);
  letter-spacing: 0.02em;
}
.form-input,
.form-textarea {
  padding: 11px 14px;
  border: 1.5px solid rgba(244, 109, 46, 0.3);
  border-radius: 8px;
  font-family: "Manrope", sans-serif;
  font-size: 0.88rem;
  color: #fff8f0;
  background: rgba(20, 4, 0, 0.7);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  outline: none;
}
.form-input:focus,
.form-textarea:focus {
  border-color: #f4b911;
  box-shadow: 0 0 0 3px rgba(244, 185, 17, 0.15);
}
.form-textarea {
  min-height: 90px;
  resize: vertical;
}
.form-submit-btn {
  align-self: flex-start;
  background: linear-gradient(135deg, #f4b911, #d49a0a);
  color: #1a0800;
  font-size: 0.92rem;
  font-weight: 800;
  padding: 12px 28px;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  transition:
    filter 0.2s,
    transform 0.15s;
}
.form-submit-btn:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}
.form-success {
  display: none;
  background: linear-gradient(135deg, #f0fff4, #e6f7e9);
  border: 1px solid rgba(102, 204, 57, 0.3);
  border-radius: 8px;
  padding: 16px 20px;
  font-weight: 600;
  color: #2d7a1f;
  font-size: 0.9rem;
}
.form-success.is-visible {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-content-block {
  padding: 32px;
}
.review-content-block h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #f4b911;
  margin: 0 0 8px;
}
.review-content-block .sec-divider {
  margin-bottom: 16px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding: 16px;
  background: rgba(30, 6, 0, 0.7);
  border-radius: 10px;
  border-left: 4px solid #f4b911;
}
.review-author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #400d00, #6b1200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  color: #f4b911;
  flex-shrink: 0;
}
.review-author-info h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff8f0;
  margin-bottom: 3px;
}
.review-author-info p {
  font-size: 0.8rem;
  color: rgba(255, 240, 220, 0.7);
  line-height: 1.5;
}
.review-author-info a {
  color: #66cc39;
  font-weight: 600;
}

.info-content {
  padding: 32px;
}
.info-text {
  max-width: 800px;
}
.info-h1 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #f4b911;
  margin-bottom: 24px;
  line-height: 1.2;
  padding: 0 0 0;
}
.info-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  font-size: 0.8rem;
}
.bc-link {
  color: #66cc39;
  font-weight: 600;
}
.bc-current {
  color: rgba(255, 240, 220, 0.65);
  font-weight: 600;
}

.text h1,
.text h2,
.text h3,
.text h4,
.text h5,
.text h6 {
  color: #f4b911;
  margin: 1.2em 0 0.6em;
  line-height: 1.25;
}
.text h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #f4b911;
}
.text h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #f0c84a;
}
.text p {
  margin-bottom: 1em;
  color: rgba(255, 240, 220, 0.9);
  line-height: 1.65;
}
.text ul,
.text ol {
  margin: 0 0 1em 1.4em;
  line-height: 1.65;
  color: rgba(255, 240, 220, 0.9);
}
.text li {
  margin-bottom: 0.4em;
}
.text table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1em;
  overflow-x: auto;
  display: block;
}
.text table th {
  background: rgba(20, 4, 0, 0.9);
  color: #f4b911;
  padding: 10px 14px;
  text-align: left;
  font-size: 0.85rem;
}
.text table td {
  padding: 9px 14px;
  border-bottom: 1px solid rgba(244, 185, 17, 0.18);
  font-size: 0.88rem;
  color: rgba(255, 240, 220, 0.88);
}
.text table tr:nth-child(even) td {
  background: rgba(244, 185, 17, 0.06);
}
.text a {
  color: #66cc39;
  font-weight: 600;
}
.text a:hover {
  color: #f4b911;
}
.text strong,
.text b {
  font-weight: 700;
  color: #400d00;
}
.text blockquote {
  border-left: 4px solid #f4b911;
  padding: 12px 18px;
  background: rgba(244, 185, 17, 0.08);
  border-radius: 0 8px 8px 0;
  margin: 1em 0;
  font-style: italic;
  color: rgba(255, 240, 220, 0.85);
}

.ftr-container {
  padding-bottom: 16px;
  padding-top: 8px;
}
.footer {
  background: linear-gradient(135deg, #2d0900 0%, #400d00 60%, #2d0900 100%);
  border-radius: 12px;
  padding: 0;
}
.ftr-inner {
  padding: 32px 32px 0;
}
.ftr-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 32px;
  margin-bottom: 28px;
}
.ftr-brand {
}
.ftr-logo img {
  height: 44px;
  width: auto;
  margin-bottom: 12px;
}
.ftr-tagline {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
  margin-bottom: 14px;
}
.ftr-social {
  display: flex;
  gap: 10px;
}
.ftr-social-link {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition:
    background 0.2s,
    color 0.2s;
}
.ftr-social-link:hover {
  background: rgba(244, 185, 17, 0.2);
  color: #f4b911;
}
.ftr-col-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f4b911;
  margin-bottom: 14px;
}
.ftr-navlist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ftr-link {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s;
}
.ftr-link:hover {
  color: #f4b911;
}
.ftr-contact-email {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.65);
}
.ftr-contact-email .ftr-link {
  color: #66cc39;
}
.ftr-flag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 14px;
}
.ftr-provider img {
  height: 28px;
  width: auto;
  opacity: 0.7;
  filter: brightness(1.4) grayscale(0.3);
}
.ftr-payments {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  margin-bottom: 0;
}
.ftr-payments-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 12px;
}
.ftr-payments-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ftr-payment-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.04em;
}
.ftr-trust {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  margin-bottom: 0;
}
.ftr-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.ftr-trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.ftr-trust-badge:hover {
  opacity: 1;
}
.ftr-trust-badge span {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  letter-spacing: 0.03em;
}
.ftr-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0 28px;
}
.ftr-legal-text {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.6;
  margin-bottom: 8px;
}
.ftr-copyright {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 12px;
  line-height: 1.5;
}
.ftr-link-inline {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}
.ftr-link-inline:hover {
  color: #f4b911;
}

.bonus-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: linear-gradient(90deg, #400d00, #5a1200);
  border-top: 2px solid #f4b911;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 20px;
  transform: translateY(0);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.bonus-widget.is-hidden {
  transform: translateY(100%);
}
.bonus-widget-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  transition: color 0.2s;
}
.bonus-widget-link:hover {
  color: #f4b911;
}
.bonus-widget-text {
  color: #fff;
}
.bonus-widget-badge {
  background: #f4b911;
  color: #1a0800;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 12px;
  white-space: nowrap;
}
.bonus-widget-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  transition: color 0.2s;
  margin-left: 8px;
}
.bonus-widget-close:hover {
  color: #fff;
}

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

@keyframes jackpotFlip {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}
.jk-flip {
  animation: jackpotFlip 0.4s ease;
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(244, 185, 17, 0.4);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(244, 185, 17, 0);
  }
}
.jackpot-grand {
  animation: pulse 2.5s infinite;
}

.au-flag-placeholder {
  display: inline-block;
  width: 32px;
  height: 22px;
  background: linear-gradient(180deg, #00008b 50%, #fff 50%);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

body > div.wp-page-template,
.wp-content-area,
.elementor-section-wrap,
.post-thumbnail,
.woocommerce-page,
.wp-block-group,
.entry-content,
.widget-area {
  display: none !important;
}
.screen-reader-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  clip: rect(0, 0, 0, 0) !important;
  overflow: hidden !important;
}

@media (max-width: 1100px) {
  .demo-grid {
    grid-template-columns: 1fr;
  }
  .jackpots-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ftr-top {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .header {
    padding: 0 12px;
    position: sticky;
    top: 6px;
  }
  .hdr-inner {
    min-height: 60px;
    gap: 8px;
  }
  .hdr-jackpot-live {
    display: none;
  }
  .hdr-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: min(280px, 85vw);
    height: 100vh;
    background: linear-gradient(160deg, #2d0900, #400d00);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 24px 32px;
    gap: 8px;
    z-index: 99;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -6px 0 32px rgba(0, 0, 0, 0.4);
    overflow-y: auto;
  }
  .hdr-nav.is-open {
    display: flex;
    right: 0;
  }
  .hdr-navlist {
    flex-direction: column;
    width: 100%;
  }
  .hdr-navlink {
    padding: 12px 14px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    border-radius: 8px;
    width: 100%;
  }
  .hdr-navlink:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #f4b911;
  }
  .hdr-nav-btns-mobile {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 8px;
  }
  .hdr-nav-btns-mobile .btn {
    width: 100%;
    justify-content: center;
    padding: 13px;
  }
  .hdr-burger {
    display: flex;
  }
  .hdr-overlay.is-open {
    display: block;
  }
  .hdr-cta-btns .hdrbtn-play,
  .hdr-cta-btns .hdrbtn-bonus {
    font-size: 0.7rem;
    padding: 8px 10px;
  }
  .hero-banner {
    min-height: 320px;
  }
  .hero-content {
    padding: 28px 20px;
    max-width: 100%;
  }
  .hero-h1 {
    font-size: 1.6rem;
  }
  .hero-desc {
    display: none;
  }
  .hero-stats {
    gap: 16px;
  }
  .hero-stat-val {
    font-size: 1.1rem;
  }
  .section-block,
  .demo-section,
  .faq-section,
  .reviews-section,
  .review-content-block,
  .winners-section {
    padding: 20px;
  }
  .main-h1 {
    padding: 20px 20px 0;
    font-size: 1.3rem;
  }
  .pros-cons-grid {
    grid-template-columns: 1fr;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .jackpots-grid {
    grid-template-columns: 1fr 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .ftr-top {
    grid-template-columns: 1fr;
  }
  .ftr-inner {
    padding: 24px 20px 0;
  }
  .bonus-widget {
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 10px 16px;
  }
  .bonus-widget-text {
    font-size: 0.8rem;
  }
}
@media (max-width: 480px) {
  .jackpots-grid {
    grid-template-columns: 1fr;
  }
  .hdr-cta-btns {
    gap: 5px;
  }
  .hdr-cta-btns .hdrbtn-play svg,
  .hdr-cta-btns .hdrbtn-bonus svg {
    display: none;
  }
}
