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

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

:root {
  --clr-bg: #0f1923;
  --clr-header: #171f2c;
  --clr-btn-blue: #2087ec;
  --clr-btn-red: #f9335c;
  --clr-text: #e8edf5;
  --clr-text-muted: #8a9bb5;
  --clr-border: #253040;
  --clr-card: #1a2535;
  --clr-card2: #1e2d42;
  --clr-accent: #2087ec;
  --clr-gold: #f5c518;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --font-main: "Inter", Arial, sans-serif;
  --transition: 0.25s ease;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

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

a {
  color: var(--clr-btn-blue);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: #5aa8f5;
}

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;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    opacity var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  opacity: 0.93;
}
.btn:active {
  transform: translateY(0);
}

.btn--blue {
  background: var(--clr-btn-blue);
  color: #fff;
}
.btn--red {
  background: var(--clr-btn-red);
  color: #fff;
}
.btn--green {
  background: var(--clr-btn-blue);
  color: #fff;
}
.btn--bonus {
  background: linear-gradient(135deg, #f9335c 0%, #ff6b35 100%);
  color: #fff;
}
.btn--lg {
  padding: 14px 34px;
  font-size: 16px;
  border-radius: var(--radius-md);
}
.btn--md {
  padding: 9px 18px;
  font-size: 13px;
}
.btn--full {
  width: 100%;
}

.site-header {
  background: var(--clr-header);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--clr-border);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}
.site-header .container {
  padding-top: 0;
  padding-bottom: 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  height: 64px;
  flex-wrap: nowrap;
}

.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.header-logo img {
  height: 40px;
  width: auto;
  border-radius: 6px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: nowrap;
}
.header-nav a {
  color: var(--clr-text-muted);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition:
    color var(--transition),
    background var(--transition);
  white-space: nowrap;
}
.header-nav a:hover {
  color: var(--clr-text);
  background: rgba(255, 255, 255, 0.06);
}
.header-nav a.active {
  color: var(--clr-btn-blue);
}

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

.online-counter {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--clr-text-muted);
  white-space: nowrap;
}
.online-dot {
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  flex-shrink: 0;
}
.burger span {
  display: block;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: all var(--transition);
}
.burger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: var(--clr-header);
  border-top: 1px solid var(--clr-border);
  padding: 12px 16px 16px;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  color: var(--clr-text-muted);
  font-size: 14px;
  font-weight: 500;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition:
    color var(--transition),
    background var(--transition);
}
.mobile-menu a:hover {
  color: var(--clr-text);
  background: rgba(255, 255, 255, 0.06);
}
.mobile-menu-actions {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0a1520 0%, #162034 50%, #0f1923 100%);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("/bancoins.png");
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 60px 0;
  max-width: 640px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(32, 135, 236, 0.18);
  border: 1px solid rgba(32, 135, 236, 0.4);
  color: #7cc4f8;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 99px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hero h1 {
  font-size: clamp(26px, 4vw, 46px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
  text-wrap: balance;
}
.hero p {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--clr-text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-slider {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}
.hero-slider .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0a1520 0%, #162034 60%, #0f1923 100%);
}
.hero-slider .slide.active {
  opacity: 1;
  position: relative;
}
.slider-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.slider-dot {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition:
    background var(--transition),
    transform var(--transition);
}
.slider-dot.active {
  background: var(--clr-btn-blue);
  transform: scale(1.3);
}

.section {
  padding: 60px 0;
}
.section-title {
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  text-wrap: balance;
}
.section-sub {
  color: var(--clr-text-muted);
  font-size: 15px;
  margin-bottom: 32px;
}

.box {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 28px;
}

.box--alt {
  background: var(--clr-card2);
}

.info-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.info-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 500px;
}
.info-table th,
.info-table td {
  padding: 12px 16px;
  text-align: left;
  border: 1px solid var(--clr-border);
  font-size: 14px;
  line-height: 1.5;
}
.info-table th {
  background: rgba(32, 135, 236, 0.12);
  color: var(--clr-btn-blue);
  font-weight: 600;
  white-space: nowrap;
  width: 35%;
}
.info-table td {
  color: var(--clr-text);
  background: var(--clr-card);
}
.info-table tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.025);
}

.pros-cons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.pros-col,
.cons-col {
  flex: 1 1 260px;
  border-radius: var(--radius-md);
  padding: 22px;
}
.pros-col {
  background: rgba(34, 197, 94, 0.07);
  border: 1px solid rgba(34, 197, 94, 0.2);
}
.cons-col {
  background: rgba(249, 51, 92, 0.07);
  border: 1px solid rgba(249, 51, 92, 0.2);
}
.pros-col h3 {
  color: #4ade80;
  margin-bottom: 14px;
  font-size: 16px;
}
.cons-col h3 {
  color: #fb7185;
  margin-bottom: 14px;
  font-size: 16px;
}
.pros-col ul,
.cons-col ul {
  list-style: none;
  padding: 0;
}
.pros-col li,
.cons-col li {
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 14px;
  color: var(--clr-text);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.pros-col li::before {
  content: "✓";
  color: #4ade80;
  font-weight: 700;
  flex-shrink: 0;
}
.cons-col li::before {
  content: "✗";
  color: #fb7185;
  font-weight: 700;
  flex-shrink: 0;
}

.advantages-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.advantage-item {
  flex: 1 1 220px;
  background: var(--clr-card2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 20px;
  transition:
    border-color var(--transition),
    transform var(--transition);
}
.advantage-item:hover {
  border-color: var(--clr-btn-blue);
  transform: translateY(-3px);
}
.advantage-icon {
  font-size: 28px;
  margin-bottom: 10px;
}
.advantage-title {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}
.advantage-desc {
  font-size: 13px;
  color: var(--clr-text-muted);
  line-height: 1.5;
}

.jackpot-block {
  background: linear-gradient(135deg, #1a2535 0%, #1e2d42 100%);
  border: 1px solid rgba(245, 197, 24, 0.3);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  margin-bottom: 28px;
}
.jackpot-title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--clr-gold);
  margin-bottom: 8px;
  font-weight: 700;
}
.jackpot-amount {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  color: var(--clr-gold);
  letter-spacing: -1px;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 30px rgba(245, 197, 24, 0.4);
  transition: all 0.5s ease;
}
.jackpot-sub {
  color: var(--clr-text-muted);
  font-size: 14px;
  margin-top: 8px;
}

.demo-game-wrap {
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  background: #000;
  margin-bottom: 28px;
}
.demo-game-wrap iframe {
  display: block;
  width: 100%;
  height: 520px;
  border: none;
}

.content-block {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 28px;
}
.content-block h2 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 24px 0 12px;
}
.content-block h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--clr-btn-blue);
  margin: 20px 0 10px;
}
.content-block h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin: 16px 0 8px;
}
.content-block p {
  margin-bottom: 14px;
  color: var(--clr-text);
  font-size: 15px;
  line-height: 1.7;
}
.content-block ul,
.content-block ol {
  margin: 10px 0 16px 22px;
}
.content-block li {
  margin-bottom: 6px;
  color: var(--clr-text);
  font-size: 15px;
  line-height: 1.6;
}
.content-block strong {
  color: #fff;
  font-weight: 600;
}
.content-block a {
  color: var(--clr-btn-blue);
  text-decoration: underline;
}
.content-block a:hover {
  color: #5aa8f5;
}
.content-block table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  overflow-x: auto;
  display: block;
}
.content-block th,
.content-block td {
  padding: 10px 14px;
  border: 1px solid var(--clr-border);
  font-size: 14px;
  text-align: left;
}
.content-block th {
  background: rgba(32, 135, 236, 0.1);
  color: var(--clr-btn-blue);
  font-weight: 600;
}
.content-block blockquote {
  border-left: 3px solid var(--clr-btn-blue);
  padding-left: 16px;
  margin: 16px 0;
  color: var(--clr-text-muted);
  font-style: italic;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--clr-card2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item:hover {
  border-color: rgba(32, 135, 236, 0.4);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  user-select: none;
}
.faq-question::after {
  content: "+";
  font-size: 20px;
  color: var(--clr-btn-blue);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
  padding: 0 20px;
  color: var(--clr-text-muted);
  font-size: 14px;
  line-height: 1.7;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 20px 16px;
}

.bonus-cards {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.bonus-card {
  flex: 1 1 260px;
  background: var(--clr-card2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition:
    border-color var(--transition),
    transform var(--transition);
}
.bonus-card:hover {
  border-color: var(--clr-btn-blue);
  transform: translateY(-3px);
}
.bonus-card-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--clr-btn-blue);
  background: rgba(32, 135, 236, 0.1);
  padding: 3px 10px;
  border-radius: 99px;
  align-self: flex-start;
}
.bonus-card-amount {
  font-size: 28px;
  font-weight: 800;
  color: var(--clr-gold);
}
.bonus-card-title {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}
.bonus-card-desc {
  font-size: 13px;
  color: var(--clr-text-muted);
  line-height: 1.5;
  flex: 1;
}

.promo-accent {
  background: linear-gradient(
    135deg,
    rgba(32, 135, 236, 0.15) 0%,
    rgba(249, 51, 92, 0.1) 100%
  );
  border: 2px solid var(--clr-btn-blue);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  margin-bottom: 28px;
}
.promo-code-label {
  font-size: 13px;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.promo-code-value {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--clr-header);
  border: 1px dashed var(--clr-btn-blue);
  border-radius: var(--radius-md);
  padding: 14px 24px;
  font-size: 26px;
  font-weight: 800;
  color: var(--clr-gold);
  letter-spacing: 4px;
  cursor: pointer;
  transition: background var(--transition);
}
.promo-code-value:hover {
  background: rgba(32, 135, 236, 0.1);
}
.promo-copy-btn {
  background: var(--clr-btn-blue);
  border: none;
  border-radius: 6px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  cursor: pointer;
  transition: opacity var(--transition);
}
.promo-copy-btn:hover {
  opacity: 0.85;
}
.promo-bonus {
  margin-top: 14px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}
.promo-sub {
  font-size: 13px;
  color: var(--clr-text-muted);
  margin-top: 6px;
}

.comparison-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 28px;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 500px;
}
.comparison-table th,
.comparison-table td {
  padding: 12px 16px;
  border: 1px solid var(--clr-border);
  font-size: 14px;
  text-align: left;
}
.comparison-table th {
  background: var(--clr-header);
  color: var(--clr-btn-blue);
  font-weight: 600;
}
.comparison-table td {
  color: var(--clr-text);
  background: var(--clr-card);
}
.comparison-table tr:nth-child(even) td {
  background: var(--clr-card2);
}
.comparison-table .highlight {
  color: var(--clr-gold);
  font-weight: 600;
}
.comparison-table .yes {
  color: #4ade80;
  font-weight: 600;
}
.comparison-table .no {
  color: #fb7185;
  font-weight: 600;
}

.screenshots-slider {
  position: relative;
}
.screenshots-grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.screenshot-item {
  flex: 0 0 calc(33.333% - 12px);
  min-width: 220px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  scroll-snap-align: start;
}
.screenshot-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.providers-grid {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.provider-tag {
  background: var(--clr-card2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-text);
  transition:
    border-color var(--transition),
    color var(--transition);
}
.provider-tag:hover {
  border-color: var(--clr-btn-blue);
  color: var(--clr-btn-blue);
}

.features-grid {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.feature-card {
  flex: 1 1 160px;
  background: var(--clr-card2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  text-align: center;
  transition:
    border-color var(--transition),
    transform var(--transition);
}
.feature-card:hover {
  border-color: var(--clr-btn-blue);
  transform: translateY(-3px);
}
.feature-icon {
  font-size: 30px;
  margin-bottom: 8px;
}
.feature-name {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}

.reviews-list {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.review-card {
  flex: 1 1 260px;
  background: var(--clr-card2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 20px;
}
.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--clr-btn-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: 16px;
  flex-shrink: 0;
}
.review-name {
  font-weight: 600;
  font-size: 14px;
  color: #fff;
}
.review-stars {
  color: var(--clr-gold);
  font-size: 14px;
  margin-top: 2px;
}
.review-text {
  font-size: 13px;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

.review-form {
  background: var(--clr-card2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 24px;
}
.review-form h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 13px;
  color: var(--clr-text-muted);
  font-weight: 500;
}
.form-group input,
.form-group textarea {
  background: var(--clr-header);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  color: var(--clr-text);
  font-family: var(--font-main);
  font-size: 14px;
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--clr-btn-blue);
}
.form-group textarea {
  min-height: 100px;
  resize: vertical;
}
.form-success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: #4ade80;
  font-size: 14px;
  display: none;
  margin-top: 12px;
}
.form-success.show {
  display: block;
}

.author-block {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--clr-card2);
  border: 1px solid var(--clr-border);
  border-left: 3px solid var(--clr-btn-blue);
  border-radius: var(--radius-md);
  padding: 22px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.author-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--clr-btn-blue);
}
.author-info {
  flex: 1;
  min-width: 200px;
}
.author-name {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.author-role {
  font-size: 12px;
  color: var(--clr-btn-blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-weight: 600;
}
.author-bio {
  font-size: 13px;
  color: var(--clr-text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}
.author-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.author-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 99px;
  background: rgba(32, 135, 236, 0.12);
  color: var(--clr-btn-blue);
  border: 1px solid rgba(32, 135, 236, 0.3);
  transition: background var(--transition);
}
.author-link:hover {
  background: rgba(32, 135, 236, 0.25);
  color: var(--clr-btn-blue);
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  padding: 14px 0;
  font-size: 13px;
  color: var(--clr-text-muted);
}
.breadcrumbs a {
  color: var(--clr-text-muted);
  transition: color var(--transition);
}
.breadcrumbs a:hover {
  color: var(--clr-btn-blue);
}
.breadcrumbs span {
  color: var(--clr-text);
}
.breadcrumb-sep {
  color: var(--clr-border);
}

.bypass-methods {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.bypass-card {
  flex: 1 1 200px;
  background: var(--clr-card2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  transition: border-color var(--transition);
}
.bypass-card:hover {
  border-color: var(--clr-btn-blue);
}
.bypass-icon {
  font-size: 32px;
  margin-bottom: 10px;
}
.bypass-name {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.bypass-desc {
  font-size: 13px;
  color: var(--clr-text-muted);
  line-height: 1.5;
}
.bypass-badge {
  display: inline-block;
  margin-top: 8px;
  padding: 3px 10px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 700;
}
.bypass-badge.easy {
  background: rgba(34, 197, 94, 0.12);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.3);
}
.bypass-badge.medium {
  background: rgba(245, 197, 24, 0.1);
  color: var(--clr-gold);
  border: 1px solid rgba(245, 197, 24, 0.3);
}

.app-specs {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.app-spec-card {
  flex: 1 1 220px;
  background: var(--clr-card2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 20px;
}
.app-spec-os {
  font-size: 24px;
  margin-bottom: 8px;
}
.app-spec-name {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.app-spec-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 13px;
}
.app-spec-row:last-child {
  border-bottom: none;
}
.app-spec-label {
  color: var(--clr-text-muted);
}
.app-spec-value {
  color: var(--clr-text);
  font-weight: 500;
}

.video-wrap {
  border-radius: var(--radius-lg);
  margin-bottom: 28px;
  border: 1px solid var(--clr-border);
  background: #000;
}
.video-wrap iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: none;
}

.signup-methods {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.signup-method {
  flex: 1 1 180px;
  background: var(--clr-card2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  transition:
    border-color var(--transition),
    transform var(--transition);
}
.signup-method:hover {
  border-color: var(--clr-btn-blue);
  transform: translateY(-3px);
}
.signup-method-icon {
  font-size: 32px;
  margin-bottom: 10px;
}
.signup-method-name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.signup-method-desc {
  font-size: 12px;
  color: var(--clr-text-muted);
  line-height: 1.5;
}

.bonus-deposit-block {
  background: linear-gradient(
    135deg,
    rgba(249, 51, 92, 0.1) 0%,
    rgba(32, 135, 236, 0.1) 100%
  );
  border: 1px solid rgba(249, 51, 92, 0.3);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  margin-bottom: 28px;
}
.bonus-deposit-amount {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800;
  color: var(--clr-btn-red);
  margin: 10px 0;
}
.bonus-deposit-label {
  font-size: 13px;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}
.bonus-deposit-desc {
  font-size: 15px;
  color: var(--clr-text);
  margin-top: 10px;
}

.site-footer {
  background: var(--clr-header);
  border-top: 1px solid var(--clr-border);
  margin-top: auto;
}
.footer-main {
  padding: 40px 0 24px;
}
.footer-top {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--clr-border);
}
.footer-logo-col {
  flex: 0 0 200px;
}
.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.footer-logo img {
  height: 36px;
  width: auto;
  border-radius: 6px;
}
.footer-tagline {
  font-size: 13px;
  color: var(--clr-text-muted);
  line-height: 1.6;
}
.footer-nav-col {
  flex: 1;
  min-width: 130px;
}
.footer-nav-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.footer-nav-col a {
  display: block;
  color: var(--clr-text-muted);
  font-size: 13px;
  padding: 4px 0;
  transition: color var(--transition);
}
.footer-nav-col a:hover {
  color: var(--clr-text);
}
.footer-payments {
  margin-bottom: 20px;
}
.footer-payments-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.payment-icons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.payment-icon {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 700;
  color: var(--clr-text-muted);
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.footer-providers {
  margin-bottom: 20px;
}
.footer-providers-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.footer-bottom {
  padding: 18px 0;
  border-top: 1px solid var(--clr-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-copyright {
  font-size: 12px;
  color: var(--clr-text-muted);
}
.footer-legal-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-legal-links a {
  font-size: 12px;
  color: var(--clr-text-muted);
  transition: color var(--transition);
}
.footer-legal-links a:hover {
  color: var(--clr-text);
}
.footer-disclaimer {
  font-size: 11px;
  color: rgba(138, 155, 181, 0.6);
  margin-top: 10px;
  line-height: 1.5;
}

.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: linear-gradient(90deg, #0f1923ee 0%, #171f2cee 100%);
  border-top: 1px solid var(--clr-border);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  backdrop-filter: blur(8px);
}
.widget-text {
  font-size: 13px;
  color: var(--clr-text);
  font-weight: 500;
  flex: 1;
}
.widget-bonus {
  color: var(--clr-gold);
  font-weight: 700;
}
.widget-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}
.widget-close {
  background: none;
  border: none;
  color: var(--clr-text-muted);
  cursor: pointer;
  font-size: 18px;
  padding: 4px;
  line-height: 1;
  transition: color var(--transition);
}
.widget-close:hover {
  color: var(--clr-text);
}

.text-page {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 16px;
}
.text-page h1 {
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
}
.text-page h2 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 30px 0 12px;
}
.text-page h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--clr-btn-blue);
  margin: 20px 0 10px;
}
.text-page p {
  margin-bottom: 14px;
  color: var(--clr-text);
  font-size: 15px;
  line-height: 1.7;
}
.text-page ul,
.text-page ol {
  margin: 10px 0 16px 22px;
}
.text-page li {
  margin-bottom: 6px;
  color: var(--clr-text);
  font-size: 15px;
  line-height: 1.6;
}

.page-section {
  padding: 50px 0;
}

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

@media (max-width: 1024px) {
  .header-nav {
    display: none;
  }
  .burger {
    display: flex;
  }
  .header-actions .online-counter {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 340px;
  }
  .hero-content {
    padding: 40px 0;
  }
  .demo-game-wrap iframe {
    height: 320px;
  }
  .video-wrap iframe {
    height: 240px;
  }
  .footer-top {
    gap: 20px;
  }
  .footer-logo-col {
    flex: 0 0 100%;
  }
  .pros-cons {
    flex-direction: column;
  }
  .box {
    padding: 18px;
  }
  .jackpot-block {
    padding: 22px;
  }
}

@media (max-width: 480px) {
  .header-inner {
    height: 56px;
  }
  .header-logo img {
    height: 32px;
  }
  .btn--lg {
    padding: 12px 20px;
    font-size: 14px;
  }
  .bonus-cards {
    flex-direction: column;
  }
  .reviews-list {
    flex-direction: column;
  }
  .screenshot-item {
    flex: 0 0 80%;
  }
  .sticky-widget {
    flex-wrap: wrap;
  }
  .widget-text {
    width: 100%;
  }
  .app-specs {
    flex-direction: column;
  }
  .bypass-methods {
    flex-direction: column;
  }
  .signup-methods {
    flex-direction: column;
  }
}

.xb47d2 {
  display: none;
}
.wp-block-group {
  display: block;
}
.elementor-section {
  display: block;
}
.wpcf7 {
  display: block;
}

@media (max-width: 1024px) {
  .header-actions .btn--blue {
    display: none;
  }
}
