:root {
  --color-header: #fe87d7;
  --color-header-dark: #e870c4;
  --color-btn-green: #73d245;
  --color-btn-green-hover: #5fb534;
  --color-btn-orange: #ff8603;
  --color-btn-orange-hover: #e07500;
  --color-bg: #07a3fe;
  --color-bg-dark: #0590e0;
  --color-text-light: #ffffff;
  --color-text-dark: #0d1a2b;
  --color-card-bg: rgba(255, 255, 255, 0.12);
  --color-card-border: rgba(255, 255, 255, 0.25);
  --color-footer-bg: #fe87d7;
  --color-accent: #ffd700;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.18);
  --transition: 0.22s ease;
  --font-main: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  background: var(--color-bg);
}

body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-light);
  background: linear-gradient(160deg, #07a3fe 0%, #0580d0 50%, #0465ab 100%);
  min-height: 100vh;
}

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

.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

.site-header {
  background: var(--color-header);
  box-shadow: 0 2px 16px rgba(254, 135, 215, 0.4);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
  max-width: 1240px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.header-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
  border-radius: var(--radius-sm);
}
.header-logo-text {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-text-dark);
  letter-spacing: -0.3px;
  line-height: 1.2;
}
.header-logo-text span {
  color: var(--color-btn-orange);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.header-nav a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--color-text-dark);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  transition:
    background var(--transition),
    color var(--transition);
}
.header-nav a:hover {
  background: rgba(0, 0, 0, 0.1);
  color: var(--color-text-dark);
}
.nav-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

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

.online-count {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-text-dark);
  white-space: nowrap;
}
.online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #73d245;
  animation: pulse-dot 1.6s infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(0.8);
  }
}

.lang-dropdown {
  position: relative;
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-dark);
  cursor: pointer;
  transition: background var(--transition);
}
.lang-btn:hover {
  background: rgba(255, 255, 255, 0.45);
}
.lang-flag {
  font-size: 1.1rem;
}
.lang-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  min-width: 140px;
  overflow: hidden;
  display: none;
  z-index: 200;
}
.lang-menu.active {
  display: block;
}
.lang-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  color: var(--color-text-dark);
  font-size: 0.875rem;
  font-weight: 500;
}
.lang-menu a:hover {
  background: #f5f5f5;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.3px;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.btn:active {
  transform: translateY(0);
}

.btn-green {
  background: var(--color-btn-green);
  color: #fff;
  box-shadow: 0 3px 12px rgba(115, 210, 69, 0.4);
}
.btn-green:hover {
  background: var(--color-btn-green-hover);
  color: #fff;
}

.btn-orange {
  background: var(--color-btn-orange);
  color: #fff;
  box-shadow: 0 3px 12px rgba(255, 134, 3, 0.4);
}
.btn-orange:hover {
  background: var(--color-btn-orange-hover);
  color: #fff;
}

.btn-outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.btn-lg {
  padding: 14px 32px;
  font-size: 1rem;
  border-radius: var(--radius-lg);
}
.btn-xl {
  padding: 18px 44px;
  font-size: 1.15rem;
  border-radius: var(--radius-lg);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.1);
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text-dark);
  border-radius: 2px;
  transition: 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;
  flex-direction: column;
  background: var(--color-header);
  padding: 16px;
  gap: 8px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.mobile-menu.active {
  display: flex;
}
.mobile-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  color: var(--color-text-dark);
  font-weight: 600;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
}
.mobile-menu a:hover {
  background: rgba(0, 0, 0, 0.1);
}
.mobile-menu-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding-top: 8px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("/b.avif");
  background-size: cover;
  background-position: center top;
  filter: brightness(0.7);
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(7, 40, 80, 0.85) 0%,
    rgba(7, 40, 80, 0.4) 60%,
    transparent 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 60px 0;
}
.hero-badge {
  display: inline-block;
  background: var(--color-btn-orange);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}
.hero h1 span {
  color: var(--color-btn-orange);
}
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 28px;
  line-height: 1.6;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.hero-stat {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 10px 18px;
  text-align: center;
}
.hero-stat-val {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--color-accent);
  line-height: 1.1;
}
.hero-stat-lbl {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

/* =========== SECTIONS =========== */
.section {
  padding: 52px 0;
}
.section-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.section-sub {
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 36px;
  font-size: 1rem;
}

.info-table-wrap {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-card-border);
  overflow-x: auto;
  box-shadow: var(--shadow-card);
  margin: 0 4px;
}
.info-table {
  width: 100%;
  min-width: 580px;
  border-collapse: collapse;
}
.info-table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.info-table tr:last-child {
  border-bottom: none;
}
.info-table td {
  padding: 13px 20px;
  font-size: 0.925rem;
  vertical-align: middle;
  text-align: left;
  color: #fff;
}
.info-table td:first-child {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  width: 42%;
  background: rgba(0, 0, 0, 0.08);
}
.info-table td:last-child {
  color: #fff;
  font-weight: 500;
}
.info-table tr:hover td {
  background: rgba(255, 255, 255, 0.06);
}
.info-table .val-accent {
  color: var(--color-accent);
  font-weight: 700;
}
.info-table .val-green {
  color: var(--color-btn-green);
  font-weight: 700;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.adv-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.adv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
.adv-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  background: linear-gradient(
    135deg,
    var(--color-btn-orange),
    var(--color-btn-green)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.adv-icon svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}
.adv-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.adv-text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.jackpots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.jackpot-card {
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 2px solid transparent;
}
.jackpot-card.gold {
  background: linear-gradient(145deg, #7a5c00, #c8960a);
  border-color: #ffd700;
}
.jackpot-card.silver {
  background: linear-gradient(145deg, #3a4a5a, #607080);
  border-color: #c0d0e0;
}
.jackpot-card.bronze {
  background: linear-gradient(145deg, #5c2d00, #9c5010);
  border-color: #cd7f32;
}
.jackpot-label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 6px;
  color: #fff;
}
.jackpot-name {
  font-size: 1.3rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
}
.jackpot-amount {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  color: var(--color-accent);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  margin-bottom: 20px;
  font-variant-numeric: tabular-nums;
}
.jackpot-players {
  list-style: none;
}
.jackpot-players li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  margin-bottom: 6px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.9);
}
.jackpot-players li:last-child {
  margin-bottom: 0;
}
.jp-nick {
  font-weight: 600;
}
.jp-amount {
  color: var(--color-accent);
  font-weight: 700;
}

/* =========== SCREENSHOTS =========== */
.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.screenshot-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 2px solid var(--color-card-border);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  cursor: pointer;
}
.screenshot-item:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
.screenshot-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.screenshots-slider {
  display: none;
}
.slider-track {
  display: flex;
  transition: transform 0.35s ease;
}
.slider-track .screenshot-item {
  min-width: 85vw;
  flex-shrink: 0;
}
.slider-track .screenshot-item img {
  height: 220px;
}
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 12px;
}
.slider-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.slider-btn:hover {
  background: rgba(255, 255, 255, 0.35);
}
.slider-dots {
  display: flex;
  gap: 6px;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition:
    background var(--transition),
    transform var(--transition);
}
.slider-dot.active {
  background: #fff;
  transform: scale(1.25);
}

.demo-wrap {
  background: rgba(0, 0, 0, 0.3);
  border-radius: var(--radius-lg);
  border: 2px solid var(--color-card-border);
  box-shadow: var(--shadow-card);
  margin: 0 4px;
}
.demo-frame-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #000;
}
.demo-frame-container iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.demo-footer {
  padding: 16px 24px;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.demo-footer-text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
}

/* =========== REVIEWS =========== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 36px;
}
.review-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: transform var(--transition);
}
.review-card:hover {
  transform: translateY(-3px);
}
.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.review-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-btn-green);
  flex-shrink: 0;
}
.review-meta {
  flex: 1;
}
.review-name {
  font-weight: 700;
  font-size: 0.975rem;
  color: #fff;
}
.review-date {
  font-size: 0.775rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 2px;
}
.review-stars {
  display: flex;
  gap: 3px;
  margin-top: 4px;
}
.star-svg {
  width: 15px;
  height: 15px;
  fill: var(--color-accent);
}
.review-text {
  font-size: 0.895rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.review-form-wrap {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  max-width: 600px;
  margin: 0 auto;
}
.review-form-wrap h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  text-align: center;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-md);
  padding: 11px 16px;
  font-size: 0.925rem;
  color: #fff;
  font-family: var(--font-main);
  transition:
    border-color var(--transition),
    background var(--transition);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-btn-green);
  background: rgba(255, 255, 255, 0.18);
}
.form-group textarea {
  resize: vertical;
  min-height: 110px;
}
.form-success {
  display: none;
  background: rgba(115, 210, 69, 0.2);
  border: 1px solid var(--color-btn-green);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
  color: #fff;
  font-weight: 600;
  margin-top: 16px;
}
.form-success.show {
  display: block;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.faq-question {
  padding: 16px 22px;
  font-size: 0.975rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  user-select: none;
}
.faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    transform var(--transition),
    background var(--transition);
  font-size: 1rem;
  color: #fff;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--color-btn-green);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
}
.faq-answer-inner {
  padding: 0 22px 18px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}
.faq-item.open .faq-answer {
  max-height: 300px;
}

.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.pros-card,
.cons-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  border: 1px solid var(--color-card-border);
}
.pros-card {
  border-top: 4px solid var(--color-btn-green);
}
.cons-card {
  border-top: 4px solid #ff4757;
}
.pros-cons-title {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pros-card .pros-cons-title {
  color: var(--color-btn-green);
}
.cons-card .pros-cons-title {
  color: #ff6b78;
}
.pros-cons-list {
  list-style: none;
}
.pros-cons-list li {
  padding: 7px 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.pros-cons-list li:last-child {
  border-bottom: none;
}
.pros-cons-list li::before {
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.pros-card .pros-cons-list li::before {
  content: "✓";
  color: var(--color-btn-green);
  font-weight: 700;
}
.cons-card .pros-cons-list li::before {
  content: "✗";
  color: #ff6b78;
  font-weight: 700;
}

.casinos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.casino-card {
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-lg);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.casino-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.22);
}
.casino-header {
  display: flex;
  align-items: center;
  gap: 14px;
}
.casino-logo-placeholder {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #1a3a6a, #2a5a9a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  color: #fff;
  flex-shrink: 0;
}
.casino-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}
.casino-rating {
  font-size: 0.82rem;
  color: var(--color-accent);
  display: flex;
  align-items: center;
  gap: 4px;
}
.casino-bonus {
  background: rgba(255, 134, 3, 0.2);
  border: 1px solid rgba(255, 134, 3, 0.4);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 0.875rem;
  color: #fff;
}
.casino-bonus strong {
  color: var(--color-btn-orange);
}
.casino-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.casino-tag {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

.author-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  max-width: 800px;
  margin: 0 auto;
}
.author-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--color-btn-orange);
  flex-shrink: 0;
}
.author-info {
  flex: 1;
}
.author-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}
.author-title {
  font-size: 0.85rem;
  color: var(--color-btn-orange);
  font-weight: 600;
  margin-bottom: 10px;
}
.author-bio {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  margin-bottom: 12px;
}
.author-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-btn-green);
}
.author-link:hover {
  color: var(--color-btn-green-hover);
}

.content-review-block {
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--color-card-border);
}
.content-review-block h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin: 24px 0 12px;
  line-height: 1.3;
}
.content-review-block h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin: 20px 0 10px;
}
.content-review-block p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  margin-bottom: 14px;
}
.content-review-block ul,
.content-review-block ol {
  padding-left: 22px;
  margin-bottom: 14px;
}
.content-review-block li {
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  margin-bottom: 6px;
}
.content-review-block table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
}
.content-review-block table th,
.content-review-block table td {
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 14px;
  font-size: 0.9rem;
  text-align: left;
  color: rgba(255, 255, 255, 0.85);
}
.content-review-block table th {
  background: rgba(255, 255, 255, 0.1);
  font-weight: 700;
  color: #fff;
}
.content-review-block a {
  color: var(--color-btn-green);
}
.content-review-block a:hover {
  color: var(--color-btn-green-hover);
}
.content-review-block strong {
  color: #fff;
}

.site-footer {
  background: var(--color-footer-bg);
  margin-top: auto;
  padding: 40px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
}
.footer-logo-section {
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-logo img {
  height: 42px;
  width: auto;
  object-fit: contain;
  border-radius: var(--radius-sm);
}
.footer-logo-text {
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-text-dark);
}
.footer-desc {
  font-size: 0.85rem;
  color: var(--color-text-dark);
  opacity: 0.7;
  line-height: 1.6;
}

.footer-links-title {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--color-text-dark);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 8px;
}
.footer-links a {
  font-size: 0.875rem;
  color: var(--color-text-dark);
  opacity: 0.75;
  transition: opacity var(--transition);
}
.footer-links a:hover {
  opacity: 1;
  color: var(--color-text-dark);
}

.footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.payment-badge {
  background: rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-sm);
  padding: 5px 12px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-text-dark);
}
.footer-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.trust-badge {
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-sm);
  padding: 4px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-text-dark);
}
.footer-provider {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.footer-provider img {
  height: 32px;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  padding: 18px 0;
}
.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.footer-copyright {
  font-size: 0.8rem;
  color: var(--color-text-dark);
  opacity: 0.7;
}
.footer-legal {
  font-size: 0.75rem;
  color: var(--color-text-dark);
  opacity: 0.6;
  max-width: 600px;
  line-height: 1.5;
}

.widget-sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: linear-gradient(90deg, #1a0a30 0%, #2d0850 50%, #1a0a30 100%);
  border-top: 2px solid var(--color-btn-orange);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.widget-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
}
.widget-text strong {
  color: var(--color-accent);
}
.widget-close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.widget-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.breadcrumbs {
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.breadcrumbs a,
.breadcrumbs span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
}
.breadcrumbs a:hover {
  color: #fff;
}
.breadcrumbs .sep {
  color: rgba(255, 255, 255, 0.35);
}
.breadcrumbs .current {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.technical-content {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin: 32px 0;
}
.technical-content h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin: 22px 0 10px;
}
.technical-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin: 18px 0 8px;
}
.technical-content p {
  font-size: 0.925rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  margin-bottom: 12px;
}
.technical-content ul,
.technical-content ol {
  padding-left: 22px;
  margin-bottom: 14px;
}
.technical-content li {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  margin-bottom: 6px;
}
.technical-content a {
  color: var(--color-btn-green);
}

.mt-section {
  margin-top: 20px;
}
.box-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.wp-block-group {
  display: none !important;
}
.wp-post-nav {
  display: none !important;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in {
  animation: fadeInUp 0.5s ease both;
}
.fade-in-d1 {
  animation-delay: 0.1s;
}
.fade-in-d2 {
  animation-delay: 0.2s;
}
.fade-in-d3 {
  animation-delay: 0.3s;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
.jackpot-amount {
  background: linear-gradient(90deg, #ffd700, #ffe066, #ffd700);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 2.5s linear infinite;
}

@media (max-width: 900px) {
  .jackpots-grid {
    grid-template-columns: 1fr;
  }
  .screenshots-grid {
    display: none;
  }
  .screenshots-slider {
    display: block;
  }
  .pros-cons-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .author-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 700px) {
  .header-nav {
    display: none;
  }
  /* Hide Demo and Money buttons on mobile - they're in burger menu */
  .header-right .btn {
    display: none;
  }
  .burger {
    display: flex;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: 380px;
  }
  .screenshots-grid {
    display: none;
  }
  .screenshots-slider {
    display: block;
  }
  .info-table td:first-child {
    width: 48%;
  }
  .review-form-wrap {
    padding: 22px 16px;
  }
  .content-review-block {
    padding: 22px 16px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.6rem;
  }
  .hero-btns {
    flex-direction: column;
  }
  .hero-btns .btn {
    width: 100%;
    justify-content: center;
  }
  .widget-sticky {
    flex-direction: column;
    gap: 8px;
    padding: 14px 40px;
  }
  .footer-payments {
    justify-content: center;
  }
}

.x7f3k9q {
  display: none;
}
.b2m5p8r {
  visibility: hidden;
}
.q1z4n6w {
  opacity: 0;
  pointer-events: none;
}
.elementor-widget-wrap > .elementor-element {
  display: none;
}
.wp-caption {
  display: none;
}
.post-thumbnail {
  display: none;
}
.entry-meta {
  display: none;
}
