@import url("https://fonts.googleapis.com/css2?family=Lilita+One&display=swap");

:root {
  --clr-header: #3e1819;
  --clr-bg: #5d150f;
  --clr-btn-gold: #fbcc49;
  --clr-btn-green: #7dc734;
  --clr-text: #f5e6c8;
  --clr-text-muted: #c9a87a;
  --clr-block: rgba(62, 24, 25, 0.82);
  --clr-block-alt: rgba(30, 10, 10, 0.72);
  --clr-border: rgba(251, 204, 73, 0.25);
  --radius: 14px;
  --radius-sm: 8px;
  --trans: 0.25s ease;
  --font-main: "Lilita One", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background-color: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

.wrapper {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 20px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--clr-btn-gold);
  text-decoration: none;
  transition: color var(--trans);
}
a:hover {
  color: var(--clr-btn-green);
}

.site-header {
  background: var(--clr-header);
  border-bottom: 2px solid var(--clr-border);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.5);
}

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

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.header-logo img {
  height: 82px;
  width: auto;
  object-fit: contain;
}
.header-logo-text {
  font-size: 1.1rem;
  color: var(--clr-btn-gold);
  line-height: 1.2;
  display: none;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.header-nav a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--clr-text);
  font-size: 0.82rem;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition:
    background var(--trans),
    color var(--trans);
  text-decoration: none;
}
.header-nav a svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.header-nav a:hover {
  background: rgba(251, 204, 73, 0.15);
  color: var(--clr-btn-gold);
}

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

.jackpot-ticker {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--clr-btn-gold);
  border-radius: 999px;
  padding: 4px 14px;
  font-size: 0.8rem;
  color: var(--clr-btn-gold);
  white-space: nowrap;
}
.jackpot-ticker .jp-icon {
  font-size: 1rem;
}
.jackpot-ticker .jp-val {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  font-family: var(--font-main);
  font-size: 0.88rem;
  padding: 9px 20px;
  line-height: 1;
  text-decoration: none;
  transition:
    transform var(--trans),
    box-shadow var(--trans),
    filter var(--trans);
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}
.btn:active {
  transform: translateY(0);
}

.btn-gold {
  background: var(--clr-btn-gold);
  color: #1a0a00;
}
.btn-green {
  background: var(--clr-btn-green);
  color: #fff;
}
.btn-green-lg {
  background: var(--clr-btn-green);
  color: #fff;
  font-size: 1.1rem;
  padding: 14px 34px;
}
.btn-gold-lg {
  background: var(--clr-btn-gold);
  color: #1a0a00;
  font-size: 1.1rem;
  padding: 14px 34px;
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--clr-btn-gold);
  color: var(--clr-btn-gold);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.burger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--clr-text);
  border-radius: 3px;
  transition:
    transform var(--trans),
    opacity var(--trans);
}
.burger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero-section {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #2b0a0a 0%, #5d150f 50%, #3e1819 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("/khanban.jpg");
  background-size: cover;
  background-position: center;
  filter: brightness(0.45) saturate(1.2);
  z-index: 0;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(30, 5, 5, 0.9) 0%,
    rgba(93, 21, 15, 0.5) 60%,
    transparent 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1260px;
  margin: 0 auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  width: 100%;
}
.hero-text h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.15;
  color: var(--clr-btn-gold);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
  margin-bottom: 16px;
}
.hero-text p {
  font-size: 1.05rem;
  color: var(--clr-text);
  margin-bottom: 28px;
  max-width: 500px;
  line-height: 1.7;
}
.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.hero-badge {
  background: rgba(251, 204, 73, 0.18);
  border: 1px solid var(--clr-btn-gold);
  border-radius: 999px;
  padding: 4px 14px;
  font-size: 0.78rem;
  color: var(--clr-btn-gold);
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-img-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-img-wrap img {
  max-height: 340px;
  width: auto;
  filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.7));
  animation: floatImg 4s ease-in-out infinite;
}
@keyframes floatImg {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.content-area {
  padding: 40px 0 60px;
}

.section-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--clr-btn-gold);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-btn-gold), var(--clr-btn-green));
  border-radius: 3px;
}

.block {
  background: var(--clr-block);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  margin: 0 0 24px;
  backdrop-filter: blur(4px);
}
.block-alt {
  background: var(--clr-block-alt);
  border-color: rgba(125, 199, 52, 0.2);
}
.block-rounded {
  border-radius: 24px;
}
.block-cols2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.demo-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 24px;
  align-items: start;
}
.demo-frame-wrap {
  background: #000;
  border-radius: var(--radius);
  position: relative;
  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;
  background: rgba(30, 5, 5, 0.92);
  gap: 16px;
}
.demo-overlay .game-icon {
  font-size: 4rem;
}
.demo-real-btn {
  margin-top: 8px;
}

.game-table-wrap {
  overflow-x: auto;
}
.game-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}
.game-table tr {
  border-bottom: 1px solid var(--clr-border);
}
.game-table tr:last-child {
  border-bottom: none;
}
.game-table td {
  padding: 8px 12px;
  vertical-align: middle;
}
.game-table td:first-child {
  color: var(--clr-text-muted);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}
.game-table td:last-child {
  color: var(--clr-text);
  font-size: 0.85rem;
}
.gt-icon {
  font-size: 1rem;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 16px;
}
.adv-tile {
  background: rgba(30, 10, 10, 0.7);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  transition:
    transform var(--trans),
    border-color var(--trans),
    box-shadow var(--trans);
}
.adv-tile:hover {
  transform: translateY(-4px);
  border-color: var(--clr-btn-gold);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
.adv-icon {
  margin: 0 auto 12px;
  width: 48px;
  height: 48px;
}
.adv-icon svg {
  width: 48px;
  height: 48px;
}
.adv-title {
  font-size: 0.9rem;
  color: var(--clr-btn-gold);
  margin-bottom: 6px;
}
.adv-desc {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  line-height: 1.5;
}

.mobile-app-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: start;
}
.phone-frame-wrap {
  position: relative;
  width: 180px;
  flex-shrink: 0;
}
.phone-frame {
  width: 180px;
  background: #1a0a0a;
  border: 3px solid #fbcc49;
  border-radius: 32px;
  overflow: hidden;
  padding: 16px 8px;
  box-shadow:
    0 0 30px rgba(251, 204, 73, 0.2),
    inset 0 0 10px rgba(0, 0, 0, 0.5);
  position: relative;
}
.phone-frame::before {
  content: "";
  display: block;
  width: 50px;
  height: 6px;
  background: #fbcc49;
  border-radius: 3px;
  margin: 0 auto 12px;
}
.phone-frame img {
  width: 100%;
  border-radius: 10px;
}
.phone-frame::after {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background: #fbcc49;
  border-radius: 50%;
  margin: 12px auto 0;
}
.app-info {
  flex: 1;
}
.app-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  font-size: 0.83rem;
}
.app-table tr {
  border-bottom: 1px solid var(--clr-border);
}
.app-table td {
  padding: 7px 10px;
}
.app-table td:first-child {
  color: var(--clr-text-muted);
  width: 40%;
}
.app-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.app-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  color: var(--clr-text);
  font-size: 0.82rem;
  text-decoration: none;
  transition:
    border-color var(--trans),
    background var(--trans);
}
.app-btn:hover {
  border-color: var(--clr-btn-gold);
  background: rgba(251, 204, 73, 0.1);
  color: var(--clr-text);
}
.app-btn svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.app-btn-label span {
  display: block;
  font-size: 0.68rem;
  color: var(--clr-text-muted);
}
.app-btn-label strong {
  font-size: 0.9rem;
}

/* ===================== PROS CONS ===================== */
.proscons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.proscons-col {
  padding: 20px;
  border-radius: var(--radius-sm);
}
.proscons-pros {
  background: rgba(125, 199, 52, 0.1);
  border: 1px solid rgba(125, 199, 52, 0.3);
}
.proscons-cons {
  background: rgba(200, 50, 50, 0.1);
  border: 1px solid rgba(200, 50, 50, 0.25);
}
.proscons-title {
  font-size: 1.1rem;
  margin-bottom: 14px;
}
.proscons-pros .proscons-title {
  color: var(--clr-btn-green);
}
.proscons-cons .proscons-title {
  color: #f87171;
}
.proscons-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.proscons-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  line-height: 1.5;
}
.proscons-list li::before {
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 1rem;
}
.proscons-pros li::before {
  content: "✅";
}
.proscons-cons li::before {
  content: "❌";
}

/* ===================== BONUSES SLIDER ===================== */
.bonuses-slider {
  position: relative;
  overflow: hidden;
}
.bonuses-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  transition: transform 0.4s ease;
}
.bonus-card {
  background: linear-gradient(
    145deg,
    rgba(62, 24, 25, 0.9),
    rgba(30, 10, 10, 0.9)
  );
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
  transition:
    transform var(--trans),
    box-shadow var(--trans);
  flex-shrink: 0;
  width: 100%;
}
.bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}
.bonus-casino-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clr-btn-gold);
  margin-bottom: 6px;
}
.bonus-badge {
  display: inline-block;
  background: var(--clr-btn-green);
  color: #fff;
  border-radius: 999px;
  padding: 3px 14px;
  font-size: 0.72rem;
  margin-bottom: 12px;
}
.bonus-amount {
  font-size: 1.8rem;
  color: var(--clr-btn-gold);
  margin-bottom: 6px;
  line-height: 1.2;
}
.bonus-desc {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}
.bonus-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.bonus-feature {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--clr-text);
}
.bonus-feature::before {
  content: "🎁";
}
.bonus-terms {
  font-size: 0.68rem;
  color: var(--clr-text-muted);
  margin-top: 10px;
}
.slider-dots {
  display: none;
  gap: 8px;
  justify-content: center;
  margin-top: 14px;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clr-border);
  border: none;
  cursor: pointer;
  transition: background var(--trans);
  padding: 0;
}
.slider-dot.active {
  background: var(--clr-btn-gold);
}

/* ===================== REVIEW CONTENT ===================== */
.review-block {
  padding: 32px;
}
.review-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--clr-border);
}
.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--clr-btn-gold),
    var(--clr-btn-green)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.author-name {
  font-size: 1rem;
  color: var(--clr-btn-gold);
}
.author-title {
  font-size: 0.75rem;
  color: var(--clr-text-muted);
}
.review-date {
  margin-left: auto;
  font-size: 0.75rem;
  color: var(--clr-text-muted);
}
.review-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--clr-btn-gold);
  font-size: 1rem;
}

.review-content {
  line-height: 1.8;
}
.review-content h2,
.review-content h3,
.review-content h4 {
  color: var(--clr-btn-gold);
  margin: 20px 0 10px;
}
.review-content p {
  margin-bottom: 14px;
  color: var(--clr-text);
}
.review-content ul,
.review-content ol {
  padding-left: 24px;
  margin-bottom: 14px;
}
.review-content li {
  margin-bottom: 6px;
  color: var(--clr-text);
}
.review-content a {
  color: var(--clr-btn-gold);
}
.review-content strong {
  color: var(--clr-btn-gold);
}
.review-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  overflow-x: auto;
  display: block;
}
.review-content th,
.review-content td {
  border: 1px solid var(--clr-border);
  padding: 8px 12px;
  text-align: left;
}
.review-content th {
  background: rgba(62, 24, 25, 0.7);
  color: var(--clr-btn-gold);
}

/* ===================== FAQ ===================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: rgba(30, 10, 10, 0.7);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 16px 20px;
  cursor: pointer;
  color: var(--clr-text);
  font-family: var(--font-main);
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition:
    color var(--trans),
    background var(--trans);
}
.faq-q:hover {
  color: var(--clr-btn-gold);
  background: rgba(251, 204, 73, 0.05);
}
.faq-q.active {
  color: var(--clr-btn-gold);
  background: rgba(251, 204, 73, 0.08);
}
.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-q.active .faq-chevron {
  transform: rotate(180deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s ease;
  padding: 0 20px;
}
.faq-a.open {
  max-height: 400px;
  padding: 0 20px 16px;
}
.faq-a p {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
}

.site-footer {
  background: var(--clr-header);
  border-top: 2px solid var(--clr-border);
  padding: 40px 0 100px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 200px 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.footer-logo-wrap img {
  height: 50px;
  margin-bottom: 12px;
}
.footer-desc {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}
.footer-col-title {
  font-size: 0.88rem;
  color: var(--clr-btn-gold);
  margin-bottom: 12px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-links a {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  text-decoration: none;
  transition: color var(--trans);
}
.footer-links a:hover {
  color: var(--clr-btn-gold);
}

.footer-divider {
  border: none;
  border-top: 1px solid var(--clr-border);
  margin: 24px 0;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  justify-content: center;
  margin-bottom: 20px;
}
.trust-badge {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 6px 14px;
  font-size: 0.72rem;
  color: var(--clr-text-muted);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
}

.payments-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-bottom: 16px;
}
.payment-tag {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 0.75rem;
  color: var(--clr-text-muted);
}

.social-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
}
.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(251, 204, 73, 0.1);
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-text-muted);
  text-decoration: none;
  transition:
    background var(--trans),
    border-color var(--trans),
    color var(--trans);
}
.social-link:hover {
  background: rgba(251, 204, 73, 0.2);
  border-color: var(--clr-btn-gold);
  color: var(--clr-btn-gold);
}
.social-link svg {
  width: 18px;
  height: 18px;
}

.footer-legal {
  font-size: 0.7rem;
  color: var(--clr-text-muted);
  text-align: center;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto;
}
.footer-copyright {
  text-align: center;
  margin-top: 16px;
  font-size: 0.78rem;
  color: var(--clr-text-muted);
}

.footer-flag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--clr-text-muted);
}
.footer-flag img {
  height: 18px;
  border-radius: 2px;
}

.provider-logo-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.provider-logo-wrap img {
  height: 30px;
  filter: brightness(0) invert(1);
  opacity: 0.6;
}

.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: linear-gradient(
    90deg,
    var(--clr-header) 0%,
    rgba(62, 24, 25, 0.97) 100%
  );
  border-top: 2px solid var(--clr-btn-gold);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}
.sticky-widget-text {
  font-size: 0.85rem;
  color: var(--clr-text);
  flex: 1;
}
.sticky-widget-text strong {
  color: var(--clr-btn-gold);
}
.sticky-widget-close {
  background: none;
  border: none;
  color: var(--clr-text-muted);
  cursor: pointer;
  font-size: 1.2rem;
  padding: 4px;
  transition: color var(--trans);
  flex-shrink: 0;
}
.sticky-widget-close:hover {
  color: var(--clr-text);
}

.text-gold {
  color: var(--clr-btn-gold);
}
.text-green {
  color: var(--clr-btn-green);
}
.text-center {
  text-align: center;
}
.mb-0 {
  margin-bottom: 0;
}
.mt-6 {
  margin-top: 6px;
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.rtp-bar-wrap {
  margin-top: 6px;
}
.rtp-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}
.rtp-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--clr-btn-gold), var(--clr-btn-green));
  border-radius: 3px;
}

.vol-dots {
  display: flex;
  gap: 4px;
}
.vol-dot {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.15);
}
.vol-dot.active {
  background: #f87171;
}

.jp-amounts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.jp-pill {
  background: rgba(251, 204, 73, 0.12);
  border: 1px solid rgba(251, 204, 73, 0.3);
  border-radius: 999px;
  padding: 3px 12px;
  font-size: 0.75rem;
  color: var(--clr-btn-gold);
}

.wp-block-group {
  display: block;
}
.entry-content {
  display: block;
}
.elementor-section {
  display: block;
}
.wp-site-blocks {
  display: block;
}
.is-layout-constrained {
  display: block;
}
.wp-block-post-content {
  display: block;
}
.site-content {
  display: block;
}
.alignwide {
  display: block;
}
.has-global-padding {
  display: block;
}

@media (max-width: 1024px) {
  .demo-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-logo-wrap {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .header-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: var(--clr-header);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 20px 20px;
    gap: 4px;
    transition: left 0.3s ease;
    z-index: 997;
    overflow-y: auto;
    border-right: 1px solid var(--clr-border);
  }
  .header-nav.open {
    left: 0;
  }
  .header-nav a {
    width: 100%;
    padding: 12px 16px;
    font-size: 0.95rem;
  }
  .burger {
    display: flex;
  }
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }
  .hero-content {
    grid-template-columns: 1fr;
  }
  .hero-img-wrap {
    display: none;
  }
  .hero-text h1 {
    font-size: 2rem;
  }
  .block-cols2 {
    grid-template-columns: 1fr;
  }
  .proscons-grid {
    grid-template-columns: 1fr;
  }
  .mobile-app-grid {
    grid-template-columns: 1fr;
  }
  .phone-frame-wrap {
    margin: 0 auto;
  }
  .bonuses-track {
    grid-template-columns: 1fr;
  }
  .slider-dots {
    display: flex;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .sticky-widget {
    flex-wrap: wrap;
  }
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .jackpot-ticker {
    font-size: 0.72rem;
    padding: 3px 10px;
  }
  .jackpot-ticker .jp-val {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 1.6rem;
  }
  .hero-actions {
    flex-direction: column;
  }
  .btn-green-lg,
  .btn-gold-lg {
    font-size: 1rem;
    padding: 12px 24px;
  }
  .advantages-grid {
    grid-template-columns: 1fr;
  }
  .app-btns {
    flex-direction: column;
  }
  .header-actions {
    gap: 5px;
  }
  .btn {
    font-size: 0.78rem;
    padding: 7px 14px;
  }
}

.wpcf7-form {
  display: block;
}
.yoast-seo-markup {
  display: none;
}
.elementor-widget-wrap {
  display: block;
}
.elementor-column {
  display: block;
}
.wp-block-image {
  display: block;
}
.wp-caption {
  display: block;
}
.gallery-caption {
  display: block;
}
.alignnone {
  display: block;
}
.alignleft {
  display: block;
}
.alignright {
  display: block;
}
.size-full {
  display: block;
}
.size-large {
  display: block;
}
.size-medium {
  display: block;
}
.size-thumbnail {
  display: block;
}
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}
.wp-caption-text {
  display: block;
}
.bypostauthor {
  display: block;
}
.sticky {
  display: block;
}

@keyframes bgPulse {
  0%,
  100% {
    background-color: #5d150f;
  }
  50% {
    background-color: #6b1a12;
  }
}

@keyframes shine {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}
.btn-green-lg,
.btn-green {
  background-size: 200% auto;
  background-image: linear-gradient(90deg, #7dc734, #9fe34a, #7dc734);
  animation: shine 3s linear infinite;
}
.btn-gold-lg,
.btn-gold {
  background-size: 200% auto;
  background-image: linear-gradient(90deg, #fbcc49, #fde285, #fbcc49);
  animation: shine 3s linear infinite;
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: var(--clr-header);
}
::-webkit-scrollbar-thumb {
  background: var(--clr-btn-gold);
  border-radius: 3px;
}

/* =========================================================
   2026-08-10 MOBILE REBUILD
   Force every public + info page to behave as a real mobile layout.
   ========================================================= */
@media (max-width: 768px) {
  html,
  body,
  .wp-site,
  .wp-site-blocks,
  .wrapper,
  .hero-wrap,
  .content-area,
  .site-main,
  .entry-content,
  .review-content {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  html,
  body {
    overflow-x: hidden !important;
  }

  .wrapper {
    display: block !important;
    min-height: 100vh;
  }

  .container {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  /* Header: logo + burger only. Actions already exist inside navigation flow. */
  .site-header {
    position: sticky;
    top: 0;
    width: 100%;
  }

  .header-inner {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px !important;
    padding: 8px 14px !important;
  }

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

  .header-logo img {
    width: auto !important;
    height: 54px !important;
    max-width: 145px !important;
    object-fit: contain !important;
  }

  .header-actions {
    margin-left: auto !important;
    flex: 0 0 auto !important;
  }

  .header-actions > a,
  .header-actions > .jackpot-ticker {
    display: none !important;
  }

  .burger {
    display: flex !important;
    flex: 0 0 auto !important;
    width: 42px !important;
    height: 42px !important;
    padding: 8px !important;
    align-items: center !important;
    justify-content: center !important;
    background: transparent !important;
    border: 0 !important;
  }

  .header-nav {
    display: flex !important;
    position: fixed !important;
    top: 0 !important;
    left: -100% !important;
    width: min(86vw, 320px) !important;
    max-width: 320px !important;
    height: 100dvh !important;
    min-width: 0 !important;
    padding: 78px 16px 24px !important;
    flex-direction: column !important;
    align-items: stretch !important;
    flex-wrap: nowrap !important;
    overflow-y: auto !important;
    z-index: 1001 !important;
  }

  .header-nav.open {
    left: 0 !important;
  }

  .header-nav a {
    width: 100% !important;
    min-width: 0 !important;
    padding: 12px 14px !important;
    font-size: 0.95rem !important;
  }

  /* Hero */
  .hero-section {
    min-height: 0 !important;
    height: auto !important;
    width: 100% !important;
    overflow: hidden !important;
  }

  .hero-content {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    display: block !important;
    padding: 34px 16px 38px !important;
  }

  .hero-text,
  .hero-text p,
  .hero-actions,
  .hero-badges {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .hero-text h1 {
    font-size: clamp(2rem, 10vw, 2.8rem) !important;
    line-height: 1.05 !important;
    overflow-wrap: anywhere !important;
    word-break: normal !important;
  }

  .hero-text p {
    font-size: 0.98rem !important;
    line-height: 1.55 !important;
  }

  .hero-badges {
    gap: 8px !important;
  }

  .hero-badge {
    max-width: 100% !important;
    white-space: normal !important;
  }

  .hero-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .hero-actions .btn,
  .hero-actions .btn-green-lg,
  .hero-actions .btn-gold-lg {
    width: 100% !important;
    max-width: 100% !important;
  }

  .hero-img-wrap {
    display: none !important;
  }

  /* Main content */
  .content-area {
    padding: 22px 0 42px !important;
  }

  .block,
  .block-rounded,
  .block-alt,
  .review-block {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 18px 14px !important;
    border-radius: 16px !important;
  }

  .section-title,
  .review-content h1,
  .review-content h2,
  .review-content h3,
  .review-content h4 {
    max-width: 100% !important;
    overflow-wrap: anywhere !important;
  }

  .section-title {
    font-size: 1.45rem !important;
    line-height: 1.2 !important;
  }

  .demo-grid,
  .block-cols2,
  .proscons-grid,
  .mobile-app-grid,
  .footer-grid,
  .bonuses-track,
  .advantages-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    gap: 14px !important;
  }

  .demo-grid > *,
  .block-cols2 > *,
  .proscons-grid > *,
  .mobile-app-grid > *,
  .bonuses-track > *,
  .advantages-grid > * {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .demo-frame-wrap {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 0 !important;
    aspect-ratio: 16 / 10 !important;
  }

  .demo-overlay {
    padding: 18px !important;
  }

  .demo-overlay .game-icon {
    font-size: 2.7rem !important;
  }

  .bonus-card,
  .adv-tile,
  .proscons-col {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .bonuses-slider {
    overflow: visible !important;
  }

  .bonuses-track {
    transform: none !important;
  }

  .slider-dots {
    display: none !important;
  }

  .phone-frame-wrap,
  .phone-frame {
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .app-btns {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .app-btn,
  .app-btns .btn {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Tables: never make viewport wider. */
  .game-table-wrap,
  .review-content .table-wrap,
  .review-content > table,
  .review-content table,
  .app-table {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow-x: auto !important;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
  }

  .game-table,
  .review-content table,
  .app-table table {
    width: 100% !important;
    max-width: 100% !important;
  }

  .review-content table {
    min-width: 560px !important;
  }

  .game-table td,
  .game-table th,
  .review-content td,
  .review-content th {
    white-space: normal !important;
    overflow-wrap: anywhere !important;
  }

  .game-table td:first-child {
    display: table-cell !important;
    white-space: normal !important;
  }

  /* Technical/info pages */
  body.info-page .container {
    padding-top: 18px !important;
    padding-bottom: 36px !important;
  }

  body.info-page .review-block {
    max-width: 100% !important;
  }

  body.info-page .review-block > h1 {
    font-size: 1.55rem !important;
    line-height: 1.2 !important;
  }

  .review-content {
    font-size: 0.96rem !important;
    line-height: 1.65 !important;
  }

  .review-content img,
  .entry-content img,
  iframe,
  video,
  svg {
    max-width: 100% !important;
  }

  /* Footer */
  .site-footer {
    width: 100% !important;
    overflow: hidden !important;
  }

  .footer-grid {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .footer-links,
  .footer-desc,
  .footer-legal,
  .footer-copyright {
    max-width: 100% !important;
    overflow-wrap: anywhere !important;
  }

  /* Sticky bonus widget */
  .sticky-widget {
    left: 10px !important;
    right: 10px !important;
    bottom: max(10px, env(safe-area-inset-bottom)) !important;
    width: auto !important;
    max-width: calc(100vw - 20px) !important;
    min-width: 0 !important;
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    gap: 10px !important;
    padding: 12px !important;
    z-index: 1100 !important;
  }

  .sticky-widget-text {
    grid-column: 1 / -1 !important;
    min-width: 0 !important;
    overflow-wrap: anywhere !important;
  }

  .sticky-widget .btn {
    width: 100% !important;
    min-width: 0 !important;
  }
}

@media (max-width: 420px) {
  .container {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .header-inner {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .header-logo img {
    height: 48px !important;
    max-width: 128px !important;
  }

  .hero-content {
    padding: 28px 12px 32px !important;
  }

  .hero-text h1 {
    font-size: 1.9rem !important;
  }

  .block,
  .block-rounded,
  .block-alt,
  .review-block {
    padding: 16px 12px !important;
  }

  .btn,
  .btn-green-lg,
  .btn-gold-lg {
    white-space: normal !important;
    text-align: center !important;
  }
}
