*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: #07a3fe;
  color: #fff;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}
a {
  color: #73d245;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: #ff8603;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.box {
  border-radius: 16px;
  overflow: hidden;
}

.xz7b1 .xz7b2 {
  display: none;
}

.site-header {
  background: linear-gradient(135deg, #fe87d7 0%, #f76cc8 100%);
  box-shadow: 0 2px 16px rgba(254, 135, 215, 0.4);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 20px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.header-logo img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
}
.header-logo-text {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
  line-height: 1.2;
}
.header-logo-text span {
  display: block;
  font-size: 0.72rem;
  font-weight: 400;
  opacity: 0.85;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.header-nav a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 20px;
  transition: background 0.2s;
}
.header-nav a:hover {
  background: rgba(255, 255, 255, 0.18);
}
.header-nav-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 24px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition:
    transform 0.15s,
    box-shadow 0.15s,
    filter 0.15s;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}
.btn-demo {
  background: #73d245;
  color: #fff;
}
.btn-demo:hover {
  filter: brightness(1.08);
}
.btn-money {
  background: #ff8603;
  color: #fff;
}
.btn-money:hover {
  filter: brightness(1.08);
}
.btn-bonus {
  background: linear-gradient(135deg, #ff8603, #ffb347);
  color: #fff;
}
.online-count {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.18);
  border-radius: 20px;
  padding: 4px 10px;
}
.online-dot {
  width: 8px;
  height: 8px;
  background: #73d245;
  border-radius: 50%;
  animation: blink 1.4s infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.lang-dropdown {
  position: relative;
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  border-radius: 20px;
  padding: 6px 12px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
}
.lang-menu {
  position: absolute;
  top: 110%;
  right: 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  min-width: 130px;
  z-index: 200;
  display: none;
  overflow: hidden;
}
.lang-menu.open {
  display: block;
}
.lang-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  color: #333;
  font-size: 0.88rem;
  transition: background 0.15s;
}
.lang-menu a:hover {
  background: #f0f0f0;
}
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  padding: 6px;
}
.burger span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}
.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;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #fe87d7 0%, #f056ba 100%);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  opacity: 0;
  transition: opacity 0.3s;
}
.mobile-menu.open {
  display: flex;
  opacity: 1;
}
.mobile-menu a {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 10px 20px;
}
.mobile-menu .mobile-btns {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slider {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  background: #0580cc;
}
.hero-slide {
  display: none;
  position: relative;
  min-height: 480px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 60px 20px;
}
.hero-slide.active {
  display: flex;
}
.hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.35;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.hero-content h1,
.hero-title {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  color: #fff;
}
.hero-content p,
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  margin-bottom: 28px;
  opacity: 0.92;
  color: #fff;
}
.hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-controls {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.hero-dot.active {
  background: #ff8603;
  width: 28px;
  border-radius: 8px;
}
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(0, 0, 0, 0.3);
  border: none;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.hero-arrow:hover {
  background: rgba(0, 0, 0, 0.55);
}
.hero-arrow-left {
  left: 12px;
}
.hero-arrow-right {
  right: 12px;
}

.section {
  padding: 48px 0;
}
.section-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 8px;
  color: #fff;
  text-align: center;
}
.section-sub {
  text-align: center;
  opacity: 0.85;
  margin-bottom: 32px;
  font-size: 1rem;
  color: #fff;
}

.card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.card-pink {
  background: linear-gradient(
    135deg,
    rgba(254, 135, 215, 0.25),
    rgba(254, 135, 215, 0.1)
  );
  border: 1px solid rgba(254, 135, 215, 0.4);
}
.card-dark {
  background: rgba(0, 30, 60, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.winners-block {
  padding: 48px 0;
}
.winners-table-wrap {
  overflow-x: auto;
  border-radius: 14px;
  border: 2px solid rgba(254, 135, 215, 0.5);
}
.winners-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
}
.winners-table th {
  background: linear-gradient(90deg, #fe87d7, #f056ba);
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-size: 0.9rem;
  font-weight: 700;
}
.winners-table td {
  padding: 11px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: #fff;
  vertical-align: middle;
}
.winners-table tr:last-child td {
  border-bottom: none;
}
.winners-table tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.05);
}
.winners-table tr:hover td {
  background: rgba(254, 135, 215, 0.12);
  transition: background 0.15s;
}
.winner-rank {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
}
.rank-1 {
  background: linear-gradient(135deg, #ffd700, #ffb300);
  color: #333;
}
.rank-2 {
  background: linear-gradient(135deg, #c0c0c0, #a0a0a0);
  color: #333;
}
.rank-3 {
  background: linear-gradient(135deg, #cd7f32, #a0522d);
  color: #fff;
}
.rank-other {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.win-amount {
  color: #73d245;
  font-weight: 700;
}
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  background: rgba(115, 210, 69, 0.2);
  color: #73d245;
  border: 1px solid rgba(115, 210, 69, 0.4);
  border-radius: 12px;
  padding: 2px 8px;
}

.app-block {
  padding: 48px 0;
}
.app-inner {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.app-info {
  flex: 1;
  min-width: 260px;
}
.app-table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  border: 2px solid rgba(254, 135, 215, 0.4);
  margin-bottom: 24px;
}
.app-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 300px;
}
.app-table td {
  padding: 11px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: #fff;
}
.app-table td:first-child {
  font-weight: 600;
  width: 45%;
  background: rgba(254, 135, 215, 0.1);
}
.app-table tr:last-child td {
  border-bottom: none;
}
.app-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.app-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  padding: 13px 20px;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  transition:
    background 0.2s,
    transform 0.15s;
  text-decoration: none;
}
.app-btn:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
  color: #fff;
}
.app-btn svg {
  flex-shrink: 0;
}
.app-btn-sub {
  font-size: 0.72rem;
  font-weight: 400;
  opacity: 0.8;
}
.app-img-block {
  flex: 0 0 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.app-mockup {
  width: 220px;
  filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.4));
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.3);
  padding: 20px;
  text-align: center;
}
.app-mockup-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 12px;
  border-radius: 20px;
  object-fit: cover;
}

.bonuses-block {
  padding: 48px 0;
}
.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.bonus-card {
  background: linear-gradient(
    135deg,
    rgba(254, 135, 215, 0.2),
    rgba(255, 134, 3, 0.1)
  );
  border: 2px solid rgba(254, 135, 215, 0.4);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.bonus-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}
.bonus-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 100px;
  height: 100px;
  background: rgba(255, 134, 3, 0.15);
  border-radius: 50%;
  pointer-events: none;
}
.bonus-casino-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
}
.bonus-amount {
  font-size: 1.8rem;
  font-weight: 900;
  color: #ff8603;
  line-height: 1;
}
.bonus-desc {
  font-size: 0.88rem;
  opacity: 0.85;
  color: #fff;
}
.bonus-feature {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: #73d245;
  font-weight: 600;
}
.bonus-btn {
  margin-top: auto;
  background: #ff8603;
  color: #fff;
  border-radius: 24px;
  padding: 10px 20px;
  font-weight: 700;
  text-align: center;
  display: block;
  transition:
    filter 0.2s,
    transform 0.15s;
  text-decoration: none;
}
.bonus-btn:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  color: #fff;
}
.bonus-label {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #73d245;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 12px;
  padding: 3px 9px;
}
.bonus-slider-wrap {
  display: none;
}

.demo-block {
  padding: 48px 0;
}
.demo-inner {
  background: rgba(0, 30, 60, 0.4);
  border-radius: 20px;
  border: 2px solid rgba(254, 135, 215, 0.3);
}
.demo-header {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  background: rgba(254, 135, 215, 0.1);
}
.demo-header-info {
  display: flex;
  align-items: center;
  gap: 14px;
}
.demo-header-img {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  object-fit: cover;
}
.demo-header-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
}
.demo-header-meta {
  font-size: 0.82rem;
  opacity: 0.75;
  color: #fff;
}
.demo-iframe-wrap {
  position: relative;
  padding-bottom: 56.25%;
  background: #000;
}
.demo-iframe-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.demo-footer {
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.demo-stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.demo-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.demo-stat-label {
  font-size: 0.75rem;
  opacity: 0.7;
  color: #fff;
}
.demo-stat-value {
  font-size: 1rem;
  font-weight: 700;
  color: #73d245;
}

.author-block {
  padding: 48px 0;
}
.author-card {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  flex-wrap: wrap;
  background: linear-gradient(
    135deg,
    rgba(254, 135, 215, 0.15),
    rgba(7, 163, 254, 0.15)
  );
  border: 2px solid rgba(254, 135, 215, 0.35);
  border-radius: 20px;
  padding: 28px;
}
.author-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fe87d7;
  flex-shrink: 0;
  background: rgba(254, 135, 215, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.author-info {
  flex: 1;
  min-width: 200px;
}
.author-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}
.author-role {
  font-size: 0.88rem;
  color: #fe87d7;
  font-weight: 600;
  margin-bottom: 10px;
}
.author-bio {
  font-size: 0.92rem;
  line-height: 1.7;
  opacity: 0.9;
  color: #fff;
  margin-bottom: 14px;
}
.author-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.author-social-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 7px 14px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  transition: background 0.2s;
  text-decoration: none;
}
.author-social-btn:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}
.author-expertise {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.expertise-tag {
  background: rgba(115, 210, 69, 0.2);
  color: #73d245;
  border: 1px solid rgba(115, 210, 69, 0.35);
  border-radius: 12px;
  padding: 3px 10px;
  font-size: 0.78rem;
  font-weight: 600;
}

.faq-block {
  padding: 48px 0;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  gap: 12px;
  transition: background 0.2s;
}
.faq-question:hover {
  background: rgba(255, 255, 255, 0.06);
}
.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 134, 3, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s;
  font-size: 0.85rem;
  color: #ff8603;
}
.faq-item.open .faq-icon {
  transform: rotate(180deg);
}
.faq-answer {
  display: none;
  padding: 0 20px 16px;
  font-size: 0.92rem;
  line-height: 1.7;
  opacity: 0.9;
  color: #fff;
}
.faq-item.open .faq-answer {
  display: block;
}

.reviews-block {
  padding: 48px 0;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}
.review-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fe87d7, #ff8603);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
}
.review-name {
  font-weight: 700;
  color: #fff;
  font-size: 0.95rem;
}
.review-date {
  font-size: 0.75rem;
  opacity: 0.65;
  color: #fff;
}
.review-stars {
  color: #ffd700;
  font-size: 1rem;
  letter-spacing: 2px;
}
.review-text {
  font-size: 0.88rem;
  line-height: 1.65;
  opacity: 0.9;
  color: #fff;
}
.pros-cons-block {
  padding: 48px 0;
}
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.pros-box,
.cons-box {
  border-radius: 16px;
  padding: 22px;
  border: 2px solid;
}
.pros-box {
  background: rgba(115, 210, 69, 0.1);
  border-color: rgba(115, 210, 69, 0.4);
}
.cons-box {
  background: rgba(255, 80, 80, 0.08);
  border-color: rgba(255, 80, 80, 0.3);
}
.pros-box h3 {
  color: #73d245;
  font-size: 1.05rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.cons-box h3 {
  color: #ff6666;
  font-size: 1.05rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.pros-box li,
.cons-box li {
  list-style: none;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.9rem;
  color: #fff;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.pros-box li::before {
  content: "✓";
  color: #73d245;
  font-weight: 700;
  flex-shrink: 0;
}
.cons-box li::before {
  content: "✗";
  color: #ff6666;
  font-weight: 700;
  flex-shrink: 0;
}
.pros-box li:last-child,
.cons-box li:last-child {
  border-bottom: none;
}

.content-block {
  padding: 48px 0;
}
.content-inner {
  background: rgba(0, 20, 50, 0.3);
  border-radius: 16px;
  padding: 28px 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.content-inner h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin: 24px 0 10px;
}
.content-inner h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fe87d7;
  margin: 18px 0 8px;
}
.content-inner p {
  font-size: 0.95rem;
  line-height: 1.75;
  opacity: 0.92;
  color: #fff;
  margin-bottom: 12px;
}
.content-inner ul,
.content-inner ol {
  margin: 10px 0 14px 20px;
  color: #fff;
}
.content-inner li {
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 5px;
  opacity: 0.9;
}
.content-inner table {
  width: 100%;
  border-collapse: collapse;
  margin: 14px 0;
  border-radius: 10px;
  overflow: hidden;
}
.content-inner table th {
  background: rgba(254, 135, 215, 0.3);
  color: #fff;
  padding: 10px 14px;
  text-align: left;
  font-size: 0.88rem;
}
.content-inner table td {
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.88rem;
  color: #fff;
}
.content-inner table tr:last-child td {
  border-bottom: none;
}
.content-inner a {
  color: #73d245;
  text-decoration: underline;
}
.content-inner strong {
  color: #fe87d7;
  font-weight: 700;
}

.site-footer {
  background: linear-gradient(135deg, #fe87d7 0%, #f056ba 100%);
  padding: 36px 0 18px;
  margin-top: auto;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.footer-top {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 28px;
}
.footer-logo-block {
  flex: 0 0 220px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  text-decoration: none;
}
.footer-logo img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
}
.footer-logo-text {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
.footer-desc {
  font-size: 0.82rem;
  opacity: 0.85;
  color: #fff;
  line-height: 1.6;
}
.footer-nav-block {
  flex: 1;
  min-width: 160px;
}
.footer-nav-block h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-nav-block a {
  display: block;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-nav-block a:hover {
  color: #fff;
}
.footer-payments {
  margin-bottom: 20px;
}
.footer-payments h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  opacity: 0.8;
}
.payments-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.payment-badge {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 5px 12px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.footer-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.trust-badge {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  padding: 5px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 5px;
}
.footer-provider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-provider span {
  font-size: 0.82rem;
  opacity: 0.8;
  color: #fff;
}
.footer-provider img {
  height: 28px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 16px;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  margin-bottom: 8px;
}
.footer-legal-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.78rem;
  transition: color 0.2s;
}
.footer-legal-links a:hover {
  color: #fff;
}

.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: linear-gradient(90deg, #fe87d7, #f056ba);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(0);
  transition: transform 0.3s;
}
.sticky-widget.hidden {
  transform: translateY(100%);
}
.sticky-widget-text {
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  flex: 1;
  text-align: center;
  max-width: 500px;
}
.sticky-widget-text strong {
  color: #fff;
  font-size: 1rem;
}
.sticky-widget-btn {
  background: #ff8603;
  color: #fff;
  border-radius: 24px;
  padding: 10px 22px;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  white-space: nowrap;
  transition:
    filter 0.2s,
    transform 0.15s;
}
.sticky-widget-btn:hover {
  filter: brightness(1.1);
  transform: scale(1.04);
  color: #fff;
}
.sticky-widget-close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.breadcrumb {
  padding: 12px 20px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 1200px;
  margin: 0 auto;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s;
}
.breadcrumb a:hover {
  color: #fff;
}
.breadcrumb span {
  margin: 0 6px;
  opacity: 0.5;
}

@media (max-width: 900px) {
  .bonuses-grid {
    grid-template-columns: 1fr;
  }
  .bonuses-block .bonuses-grid {
    display: none;
  }
  .bonus-slider-wrap {
    display: block;
  }
  .bonus-slider {
    overflow: hidden;
  }
  .bonus-slides {
    display: flex;
    transition: transform 0.4s;
  }
  .bonus-slides .bonus-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .bonus-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
  }
  .bonus-nav-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    border: none;
    cursor: pointer;
    transition: background 0.2s;
  }
  .bonus-nav-dot.active {
    background: #ff8603;
    width: 24px;
    border-radius: 8px;
  }
  .pros-cons-grid {
    grid-template-columns: 1fr;
  }
  .app-inner {
    flex-direction: column;
  }
  .app-img-block {
    display: none;
  }
  .author-card {
    flex-direction: column;
  }
  .author-photo {
    align-self: center;
  }
}
@media (max-width: 768px) {
  .header-nav {
    display: none;
  }
  .header-actions .btn-demo,
  .header-actions .btn-money {
    display: none;
  }
  .burger {
    display: flex;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    flex-direction: column;
    gap: 20px;
  }
  .sticky-widget-text {
    display: none;
  }
  .demo-stats {
    display: none;
  }
}
@media (max-width: 480px) {
  .hero-slide {
    min-height: 340px;
    padding: 40px 14px;
  }
  .section {
    padding: 32px 0;
  }
  .card {
    padding: 16px;
  }
  .btn {
    padding: 8px 14px;
    font-size: 0.84rem;
  }
}

.xz7b3-unused {
  color: transparent;
  height: 0;
  overflow: hidden;
  position: absolute;
  pointer-events: none;
}
.wp-block-unused {
  display: none;
}
.elementor-widget-unused {
  visibility: hidden;
  height: 0;
  overflow: hidden;
}
