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

:root {
  --clr-header: #400d00;
  --clr-header-dark: #2a0800;
  --clr-btn-play: #f4b911;
  --clr-btn-play-hover: #e5ab00;
  --clr-btn-green: #66cc39;
  --clr-btn-green-hover: #52b32a;
  --clr-bg: #f46c2e;
  --clr-bg-light: #f5813e;
  --clr-text-light: #fff9f5;
  --clr-text-dark: #1a0800;
  --clr-card: rgba(64, 13, 0, 0.82);
  --clr-card-light: rgba(255, 255, 255, 0.08);
  --clr-gold: #f4b911;
  --clr-accent: #66cc39;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow: 0 4px 24px rgba(64, 13, 0, 0.38);
  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  --font: "Manrope", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  background: var(--clr-bg);
  font-size: 16px;
}
body {
  font-family: var(--font);
  background: var(--clr-bg);
  color: var(--clr-text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--clr-accent);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--clr-btn-play);
}

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

.box {
  border-radius: var(--radius-lg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.93rem;
  letter-spacing: 0.02em;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  padding: 11px 22px;
  transition:
    background var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn--play {
  background: var(--clr-btn-play);
  color: var(--clr-header);
  box-shadow: 0 2px 14px rgba(244, 185, 17, 0.42);
}
.btn--play:hover {
  background: var(--clr-btn-play-hover);
  color: var(--clr-header);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(244, 185, 17, 0.55);
}
.btn--green {
  background: var(--clr-btn-green);
  color: #fff;
  box-shadow: 0 2px 12px rgba(102, 204, 57, 0.3);
}
.btn--green:hover {
  background: var(--clr-btn-green-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 18px rgba(102, 204, 57, 0.45);
}
.btn--ghost {
  background: transparent;
  color: var(--clr-text-light);
  border: 2px solid rgba(255, 255, 255, 0.4);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: #fff;
}
.btn--lg {
  font-size: 1.08rem;
  padding: 15px 34px;
  border-radius: var(--radius-lg);
}
.btn--sm {
  font-size: 0.82rem;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
}
.btn--pulse {
  animation: btnPulse 2.2s infinite;
}
@keyframes btnPulse {
  0%,
  100% {
    box-shadow: 0 2px 14px rgba(244, 185, 17, 0.42);
  }
  50% {
    box-shadow: 0 4px 28px rgba(244, 185, 17, 0.82);
  }
}

.site-header {
  background: var(--clr-header);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 18px rgba(64, 13, 0, 0.55);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  flex-wrap: nowrap;
}
.header-logo {
  flex-shrink: 0;
}
.header-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}
.header-logo span {
  color: var(--clr-gold);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  margin: 0 10px;
}
.header-nav a {
  color: rgba(255, 249, 245, 0.88);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 7px 11px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 6px;
  transition:
    background var(--transition),
    color var(--transition);
}
.header-nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.header-nav svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.header-winner {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(244, 185, 17, 0.35);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 0.78rem;
  color: var(--clr-text-light);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.header-winner-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clr-accent);
  flex-shrink: 0;
  animation: blinkDot 1.5s infinite;
}
@keyframes blinkDot {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.header-winner strong {
  color: var(--clr-gold);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition:
    transform var(--transition),
    opacity var(--transition);
}
.burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  background: var(--clr-header-dark);
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.mobile-menu.active {
  display: block;
}
.mobile-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 249, 245, 0.9);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 11px 20px;
  transition: background var(--transition);
}
.mobile-menu a:hover {
  background: rgba(255, 255, 255, 0.07);
}
.mobile-menu svg {
  width: 17px;
  height: 17px;
}

.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  display: flex;
  align-items: center;
  background: var(--clr-header) url("/gonban.jpg") center/cover no-repeat;
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(40, 5, 0, 0.88) 0%,
    rgba(40, 5, 0, 0.55) 55%,
    rgba(40, 5, 0, 0.12) 100%
  );
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 60px 0;
  max-width: 560px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(244, 185, 17, 0.18);
  border: 1px solid rgba(244, 185, 17, 0.45);
  border-radius: 50px;
  padding: 5px 14px;
  margin-bottom: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--clr-gold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 16px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
}
.hero-title span {
  color: var(--clr-gold);
}
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
  margin-bottom: 28px;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-rating {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-stars {
  display: flex;
  gap: 3px;
}
.hero-stars svg {
  width: 20px;
  height: 20px;
  fill: var(--clr-gold);
}
.hero-rating-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
  font-weight: 600;
}

.hero-scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: scrollBounce 2s infinite;
}
@keyframes scrollBounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}
.hero-scroll svg {
  width: 28px;
  height: 28px;
  fill: rgba(255, 255, 255, 0.4);
}

/* ========== SECTIONS LAYOUT ========== */
.section-gap {
  padding: 52px 0;
}
.section-gap--sm {
  padding: 32px 0;
}
.section-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--clr-header);
  margin-bottom: 8px;
  text-shadow: none;
}
.section-subtitle {
  color: rgba(64, 13, 0, 0.7);
  font-size: 0.97rem;
  margin-bottom: 32px;
  line-height: 1.55;
}
.section-title--light {
  color: #fff;
}
.section-subtitle--light {
  color: rgba(255, 255, 255, 0.75);
}

/* ========== AUTHOR BLOCK ========== */
.author-card {
  background: var(--clr-card);
  color: var(--clr-text-light);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  gap: 28px;
  box-shadow: var(--shadow);
  margin: 0 4px;
  align-items: flex-start;
  border: 1px solid rgba(244, 185, 17, 0.2);
}
.author-photo {
  flex-shrink: 0;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 3px solid var(--clr-gold);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.author-photo svg {
  width: 56px;
  height: 56px;
  fill: rgba(255, 255, 255, 0.35);
}
.author-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--clr-gold);
  margin-bottom: 3px;
}
.author-title {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px;
}
.author-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 14px;
}
.author-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
}
.author-meta-item svg {
  width: 15px;
  height: 15px;
  fill: var(--clr-accent);
  flex-shrink: 0;
}
.author-bio {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 14px;
}
.author-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.author-socials a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--clr-text-light);
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  transition: background var(--transition);
}
.author-socials a:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.author-socials svg {
  width: 16px;
  height: 16px;
}
.author-date {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 10px;
}

/* ========== BONUSES ========== */
.bonuses-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.bonus-card {
  flex: 1 1 280px;
  background: var(--clr-card);
  border-radius: var(--radius-lg);
  padding: 26px;
  color: var(--clr-text-light);
  border: 1px solid rgba(244, 185, 17, 0.25);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(64, 13, 0, 0.5);
}
.bonus-casino-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.bonus-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--clr-gold);
  line-height: 1.2;
}
.bonus-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}
.bonus-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(102, 204, 57, 0.15);
  border: 1px solid rgba(102, 204, 57, 0.35);
  color: var(--clr-accent);
  font-size: 0.77rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  width: fit-content;
}
.bonus-wager {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}

/* Slider mobile */
@media (max-width: 720px) {
  .bonuses-slider-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
  }
  .bonuses-grid {
    flex-wrap: nowrap;
  }
  .bonus-card {
    min-width: 280px;
  }
}

.demo-block {
  background: var(--clr-card);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(244, 185, 17, 0.18);
  margin: 0 4px;
}
.demo-iframe-wrap {
  position: relative;
  width: 100%;
  border-radius: var(--radius-md);
  background: #000;
  aspect-ratio: 16/9;
  margin-bottom: 18px;
}
.demo-iframe-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.demo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(40, 5, 0, 0.72);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  transition: opacity var(--transition);
}
.demo-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}
.demo-overlay-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  text-align: center;
}
.demo-overlay-sub {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
}
.demo-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.demo-disclaimer {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 8px;
  text-align: center;
}

/* ========== PROS CONS ========== */
.pros-cons-grid {
  display: flex;
  gap: 18px;
  margin: 0 4px;
}
.pros-col,
.cons-col {
  flex: 1 1 45%;
  background: var(--clr-card);
  border-radius: var(--radius-lg);
  padding: 24px;
  color: var(--clr-text-light);
  box-shadow: var(--shadow);
}
.pros-col {
  border-top: 4px solid var(--clr-accent);
}
.cons-col {
  border-top: 4px solid #e74c3c;
}
.pros-cons-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 18px;
}
.pros-cons-head svg {
  width: 22px;
  height: 22px;
}
.pros-col .pros-cons-head {
  color: var(--clr-accent);
}
.cons-col .pros-cons-head {
  color: #e74c3c;
}
.pros-cons-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.pros-cons-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
}
.pros-cons-list li::before {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  margin-top: 2px;
}
.pros-col .pros-cons-list li::before {
  background: var(--clr-accent)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath fill-rule='evenodd' d='M16.704 4.153a.75.75 0 01.143 1.052l-8 10.5a.75.75 0 01-1.127.075l-4.5-4.5a.75.75 0 011.06-1.06l3.894 3.893 7.48-9.817a.75.75 0 011.05-.143z'/%3E%3C/svg%3E")
    center/12px no-repeat;
}
.cons-col .pros-cons-list li::before {
  background: #e74c3c
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath d='M6.28 5.22a.75.75 0 00-1.06 1.06L8.94 10l-3.72 3.72a.75.75 0 101.06 1.06L10 11.06l3.72 3.72a.75.75 0 101.06-1.06L11.06 10l3.72-3.72a.75.75 0 00-1.06-1.06L10 8.94 6.28 5.22z'/%3E%3C/svg%3E")
    center/12px no-repeat;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 16px;
  margin: 0 4px;
}
.feature-tile {
  background: var(--clr-card);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  text-align: center;
  color: var(--clr-text-light);
  box-shadow: var(--shadow);
  border: 1px solid rgba(244, 185, 17, 0.12);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.feature-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(64, 13, 0, 0.5);
}
.feature-tile-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(244, 185, 17, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-tile-icon svg {
  width: 26px;
  height: 26px;
  fill: var(--clr-gold);
}
.feature-tile-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--clr-gold);
}
.feature-tile-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.5;
}

/* ========== APP BLOCK ========== */
.app-block {
  background: var(--clr-card);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
  margin: 0 4px;
  border: 1px solid rgba(244, 185, 17, 0.18);
}
.app-inner {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.app-phone-frame {
  flex-shrink: 0;
  width: 180px;
  position: relative;
}
.app-phone-svg {
  width: 100%;
}
.app-phone-screen {
  position: absolute;
  top: 10.5%;
  left: 8.5%;
  width: 83%;
  height: 79%;
  border-radius: 8px;
  overflow: hidden;
  background: #111;
}
.app-phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.app-info {
  flex: 1;
  color: var(--clr-text-light);
}
.app-info h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--clr-gold);
  margin-bottom: 18px;
}
.app-table-wrap {
  overflow-x: auto;
  margin-bottom: 22px;
}
.app-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  min-width: 340px;
  margin: 0 auto;
}
.app-table th,
.app-table td {
  text-align: left;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.app-table th {
  background: rgba(255, 255, 255, 0.08);
  color: var(--clr-gold);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.app-table td {
  color: rgba(255, 255, 255, 0.8);
}
.app-table tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.03);
}
.app-dl-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.app-dl-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background var(--transition);
  text-decoration: none;
}
.app-dl-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}
.app-dl-btn svg {
  width: 20px;
  height: 20px;
  fill: #fff;
  flex-shrink: 0;
}

/* ========== REVIEW CONTENT BLOCK ========== */
.review-block {
  background: var(--clr-card);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
  margin: 0 4px;
  color: var(--clr-text-light);
}
.review-block h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--clr-gold);
  margin: 24px 0 10px;
}
.review-block h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--clr-gold);
  margin: 20px 0 8px;
}
.review-block h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-gold);
  margin: 16px 0 6px;
}
.review-block p {
  margin-bottom: 14px;
  line-height: 1.7;
  font-size: 0.96rem;
}
.review-block ul,
.review-block ol {
  margin: 0 0 14px 20px;
  line-height: 1.7;
}
.review-block li {
  margin-bottom: 6px;
}
.review-block table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px auto 18px;
  font-size: 0.9rem;
}
.review-block table th,
.review-block table td {
  text-align: left;
  padding: 10px 14px;
  border: 2px solid rgba(64, 13, 0, 0.15);
}
.review-block table th {
  background: var(--clr-header);
  color: #fff;
  font-weight: 700;
}
.review-block table tr:nth-child(even) td {
  background: rgba(64, 13, 0, 0.04);
}
.review-block a {
  color: var(--clr-gold);
  text-decoration: underline;
}
.review-block img {
  border-radius: var(--radius-sm);
  margin: 12px 0;
}
.review-block blockquote {
  border-left: 4px solid var(--clr-btn-play);
  background: rgba(244, 185, 17, 0.08);
  padding: 14px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 16px 0;
  font-style: italic;
  color: rgba(64, 13, 0, 0.8);
}

/* ========== FAQ ========== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 4px;
}
.faq-item {
  background: var(--clr-card);
  border-radius: var(--radius-md);
  border: 1px solid rgba(244, 185, 17, 0.18);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(64, 13, 0, 0.18);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 22px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--clr-text-light);
  font-family: var(--font);
  font-size: 0.96rem;
  font-weight: 700;
  text-align: left;
  gap: 12px;
  transition: background var(--transition);
}
.faq-question:hover {
  background: rgba(255, 255, 255, 0.05);
}
.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: var(--clr-gold);
  transition: transform var(--transition);
}
.faq-item.active .faq-icon {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    padding var(--transition);
  padding: 0 22px;
}
.faq-item.active .faq-answer {
  max-height: 400px;
  padding: 0 22px 18px;
}
.faq-answer p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ========== FOOTER ========== */
.site-footer {
  background: var(--clr-header);
  margin-top: auto;
}
.footer-top {
  padding: 44px 0 28px;
}
.footer-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-col {
  flex: 1 1 180px;
}
.footer-logo {
  margin-bottom: 14px;
}
.footer-logo img {
  height: 42px;
}
.footer-logo span {
  color: var(--clr-gold);
  font-size: 1.3rem;
  font-weight: 800;
}
.footer-about {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin-bottom: 16px;
}
.footer-col-title {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 14px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition);
}
.footer-links a:hover {
  color: var(--clr-gold);
}
.footer-email {
  font-size: 0.85rem;
  color: var(--clr-accent);
  margin-top: 8px;
}
.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.footer-badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  gap: 5px;
}
.footer-socials {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.footer-social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  color: rgba(255, 255, 255, 0.7);
}
.footer-social:hover {
  background: var(--clr-btn-play);
  color: #000;
}
.footer-social svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}
.footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.footer-payment-icon {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 5px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copyright {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.38);
}
.footer-legal {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.55;
  max-width: 700px;
}
.footer-flag {
  font-size: 1.4rem;
}
.footer-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.trust-badge {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 5px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
}
.age-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e74c3c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
}

/* ========== STICKY WIDGET ========== */
.sticky-widget {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 900;
  background: var(--clr-header-dark);
  border: 2px solid rgba(244, 185, 17, 0.45);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  min-width: 170px;
  text-align: center;
  animation: widgetSlideIn 0.6s 0.5s both;
}
@keyframes widgetSlideIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.widget-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.widget-logo-wrap img {
  max-height: 32px;
  width: auto;
}
.widget-logo {
  font-size: 1rem;
  font-weight: 800;
  color: var(--clr-gold);
}
.widget-bonus {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}
.widget-bonus strong {
  color: var(--clr-gold);
}
.widget-close {
  position: absolute;
  top: 6px;
  right: 8px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  transition: color var(--transition);
}
.widget-close:hover {
  color: #fff;
}

/* ========== INFO PAGE ========== */
.info-page-main {
  padding: 32px 0 52px;
}
.info-page-box {
  max-width: 860px;
  margin: 0 auto;
}
.info-page-box h1 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--clr-header);
  margin-bottom: 24px;
}
.info-page-content {
  background: var(--clr-card);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
  color: var(--clr-text-light);
}
.info-content {
  background: var(--clr-card);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin: 32px 0;
  box-shadow: var(--shadow);
  color: var(--clr-text-light);
}
.info-content h1 {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--clr-gold);
  margin-bottom: 20px;
}
.info-content h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--clr-gold);
  margin: 22px 0 10px;
}
.info-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--clr-text-light);
  margin-bottom: 14px;
}
.info-content ul,
.info-content ol {
  margin: 0 0 14px 22px;
}
.info-content li {
  margin-bottom: 6px;
  line-height: 1.65;
  font-size: 0.95rem;
}
.info-content a {
  color: var(--clr-gold);
}
.info-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px auto;
  font-size: 0.9rem;
}
.info-content table th,
.info-content table td {
  text-align: left;
  padding: 10px 14px;
  border: 2px solid rgba(64, 13, 0, 0.15);
}
.info-content table th {
  background: var(--clr-header);
  color: #fff;
  font-weight: 700;
}

/* ========== WP DECOYS ========== */
.wp-block-group,
.wp-block-columns,
.wp-block-column,
.wp-site-blocks {
  display: contents;
}
.elementor-kit-9,
.elementor-section,
.elementor-widget,
.elementor-container {
  display: inherit;
}
.wpcf7-response-output {
  display: none;
}
.yoast-seo-meta-tag {
  display: none;
}

.breadcrumbs {
  padding: 10px 0;
  display: flex;
  gap: 6px;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}
.breadcrumbs a {
  color: rgba(255, 255, 255, 0.65);
}
.breadcrumbs span {
  color: rgba(255, 255, 255, 0.35);
}

.wave-sep {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  display: block;
}
.wave-sep svg {
  display: block;
  width: 100%;
}

.text-center {
  text-align: center;
}
.mt-2 {
  margin-top: 8px;
}
.mt-4 {
  margin-top: 16px;
}
.mt-6 {
  margin-top: 24px;
}
.mb-2 {
  margin-bottom: 8px;
}
.mb-4 {
  margin-bottom: 16px;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

@media (max-width: 900px) {
  .header-nav {
    display: none;
  }
  .burger {
    display: flex;
  }
  .header-winner {
    display: none;
  }
  .pros-cons-grid {
    flex-direction: column;
  }
  .app-inner {
    flex-direction: column;
    align-items: center;
  }
  .app-phone-frame {
    width: 150px;
  }
  .footer-grid {
    gap: 28px;
  }
}
@media (max-width: 640px) {
  .hero-section {
    min-height: 440px;
  }
  .hero-inner {
    padding: 40px 0;
  }
  .section-gap {
    padding: 36px 0;
  }
  .author-card {
    flex-direction: column;
  }
  .author-photo {
    width: 80px;
    height: 80px;
  }
  .demo-block {
    padding: 16px;
  }
  .review-block {
    padding: 20px;
  }
  .app-block {
    padding: 20px;
  }
  .sticky-widget {
    bottom: 14px;
    right: 12px;
    min-width: 150px;
    padding: 12px 14px;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 400px) {
  .hero-btns {
    flex-direction: column;
  }
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.pxl-nav-wrap,
.pxl-header-main,
.pxl-header-sticky {
  display: inherit;
}
.elementor-column-gap-default {
  column-gap: inherit;
}
.wp-block-latest-posts__list {
  list-style: inherit;
}
.e-con-inner {
  display: inherit;
}
.entry-content,
.entry-title {
  display: inherit;
}
.c8fx2q,
.bv39rp7,
.ax91z {
  display: inherit;
}
