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

:root {
  --color-bg: #0d102a;
  --color-header: #1b1f3b;
  --color-footer: #131629;
  --color-btn-pink: #ff3ea5;
  --color-btn-green: #00e676;
  --color-text: #e8eaf6;
  --color-text-muted: #9fa8c9;
  --color-border: #2a2f5a;
  --color-card: #181d3d;
  --color-card2: #1e2347;
  --color-accent: #ff3ea5;
  --color-accent2: #00e676;
  --color-gold: #ffd740;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 4px 32px rgba(0, 0, 0, 0.45);
  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: "Montserrat", sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

.box {
  padding: 0;
}

.xf4k2-hidden {
  display: none !important;
}
.xf4k2-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 20px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: nowrap;
}

.header-logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--color-text);
  font-weight: 800;
  font-size: 1.1rem;
  white-space: nowrap;
}

.header-logo img {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.header-logo .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.header-logo .logo-title {
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
}
.header-logo .logo-sub {
  color: var(--color-btn-green);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: center;
}

.header-nav a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--color-text-muted);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 7px 11px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.header-nav a:hover {
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.07);
}
.header-nav a svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

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

.online-counter {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  background: rgba(0, 230, 118, 0.08);
  border: 1px solid rgba(0, 230, 118, 0.2);
  border-radius: 20px;
  padding: 4px 10px;
  white-space: nowrap;
}

.online-counter .dot {
  width: 7px;
  height: 7px;
  background: var(--color-btn-green);
  border-radius: 50%;
  animation: pulse-dot 1.4s infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.35);
  }
}

.lang-dropdown {
  position: relative;
}

.lang-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all var(--transition);
  font-family: "Montserrat", sans-serif;
}

.lang-trigger:hover {
  border-color: var(--color-btn-pink);
}
.lang-trigger svg {
  width: 13px;
  height: 13px;
}

.lang-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 6px;
  min-width: 120px;
  z-index: 200;
  box-shadow: var(--shadow);
}

.lang-menu.open {
  display: block;
}

.lang-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  color: var(--color-text-muted);
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: all var(--transition);
}

.lang-menu a:hover {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}
.lang-menu a.active {
  color: var(--color-btn-green);
}

.flag {
  font-size: 1.1rem;
  line-height: 1;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 9px 18px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
  line-height: 1.2;
}

.btn-demo {
  background: transparent;
  border: 2px solid var(--color-btn-pink);
  color: var(--color-btn-pink);
}

.btn-demo:hover {
  background: var(--color-btn-pink);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255, 62, 165, 0.35);
}

.btn-play {
  background: var(--color-btn-green);
  color: #0d102a;
}

.btn-play:hover {
  background: #00ff87;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 230, 118, 0.4);
  color: #0d102a;
}

.btn-pink {
  background: var(--color-btn-pink);
  color: #fff;
}

.btn-pink:hover {
  background: #ff1a8c;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255, 62, 165, 0.4);
  color: #fff;
}

.btn-green {
  background: var(--color-btn-green);
  color: #0d102a;
}

.btn-green:hover {
  background: #00ff87;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 230, 118, 0.4);
  color: #0d102a;
}

.btn-lg {
  padding: 14px 32px;
  font-size: 1rem;
  border-radius: 35px;
}

.btn-xl {
  padding: 16px 40px;
  font-size: 1.1rem;
  border-radius: 40px;
}

.burger-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text);
  padding: 8px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
}

.burger-btn:hover {
  border-color: var(--color-btn-pink);
}
.burger-btn svg {
  width: 20px;
  height: 20px;
}

.mobile-menu {
  display: none;
  background: var(--color-header);
  border-top: 1px solid var(--color-border);
  padding: 12px 20px 20px;
  flex-direction: column;
  gap: 6px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all var(--transition);
}

.mobile-menu a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}
.mobile-menu a svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("/garban.avif");
  background-size: cover;
  background-position: center top;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(13, 16, 42, 0.93) 0%,
    rgba(13, 16, 42, 0.72) 55%,
    rgba(13, 16, 42, 0.2) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 20px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 62, 165, 0.15);
  border: 1px solid rgba(255, 62, 165, 0.4);
  color: var(--color-btn-pink);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
  max-width: 600px;
  text-wrap: balance;
}

.hero h1 span {
  color: var(--color-btn-pink);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  margin-bottom: 28px;
  max-width: 500px;
  line-height: 1.65;
}

.hero-stats {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat .val {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-btn-green);
  line-height: 1;
}

.hero-stat .lbl {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ========= SECTION ========= */
.section {
  padding: 60px 0;
}

.section-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 8px;
  text-wrap: balance;
}

.section-title span {
  color: var(--color-btn-pink);
}

.section-sub {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 36px;
  line-height: 1.6;
}

.section-head {
  margin-bottom: 32px;
}

/* ========= GAME INFO TABLE ========= */
.game-info-wrap {
  background: var(--color-card);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  overflow: hidden;
  margin-bottom: 40px;
}

.game-info-table {
  width: 100%;
  border-collapse: collapse;
}

.game-info-table tr {
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition);
}

.game-info-table tr:last-child {
  border-bottom: none;
}
.game-info-table tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

.game-info-table td {
  padding: 13px 20px;
  font-size: 0.9rem;
  vertical-align: middle;
  text-align: left;
}

.game-info-table td:first-child {
  color: var(--color-text-muted);
  font-weight: 600;
  width: 42%;
  border-right: 1px solid var(--color-border);
}

.game-info-table td:last-child {
  color: var(--color-text);
  font-weight: 500;
}

.game-info-table .td-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(0, 230, 118, 0.1);
  border: 1px solid rgba(0, 230, 118, 0.25);
  color: var(--color-btn-green);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 12px;
}

.game-info-table .td-badge-pink {
  background: rgba(255, 62, 165, 0.1);
  border: 1px solid rgba(255, 62, 165, 0.25);
  color: var(--color-btn-pink);
}

/* ========= PROS/CONS ========= */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.pros-block,
.cons-block {
  background: var(--color-card);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  padding: 24px;
}

.pros-block {
  border-top: 3px solid var(--color-btn-green);
}
.cons-block {
  border-top: 3px solid var(--color-btn-pink);
}

.pros-cons-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 16px;
}

.pros-block .pros-cons-title {
  color: var(--color-btn-green);
}
.cons-block .pros-cons-title {
  color: var(--color-btn-pink);
}

.pros-cons-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pros-cons-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--color-text);
}

.pros-cons-list li::before {
  content: "";
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pros-cons-list.pros li::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='8' fill='%2300e676'/%3E%3Cpath d='M4.5 8.5l2 2 5-5' stroke='%230d102a' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center/contain no-repeat;
}

.pros-cons-list.cons li::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='8' fill='%23ff3ea5'/%3E%3Cpath d='M5.5 5.5l5 5M10.5 5.5l-5 5' stroke='%23fff' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E")
    center/contain no-repeat;
}

/* ========= JACKPOTS ========= */
.jackpots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.jackpot-card {
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  overflow: hidden;
  position: relative;
}

.jackpot-card.jk-bronze {
  background: linear-gradient(145deg, #1e1a0e, #2d2410);
  border-top: 3px solid #cd7f32;
}
.jackpot-card.jk-silver {
  background: linear-gradient(145deg, #161a28, #1c2236);
  border-top: 3px solid #c0c0c0;
}
.jackpot-card.jk-gold {
  background: linear-gradient(145deg, #1e1a0a, #2a2308);
  border-top: 3px solid #ffd740;
}

.jackpot-header {
  padding: 16px 20px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.jackpot-name {
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.jk-bronze .jackpot-name {
  color: #cd7f32;
}
.jk-silver .jackpot-name {
  color: #c0c0c0;
}
.jk-gold .jackpot-name {
  color: #ffd740;
}

.jackpot-amount {
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}

.jk-bronze .jackpot-amount {
  color: #f5d08a;
}
.jk-silver .jackpot-amount {
  color: #e8e8e8;
}
.jk-gold .jackpot-amount {
  color: #ffd740;
  text-shadow: 0 0 20px rgba(255, 215, 64, 0.4);
}

.jackpot-currency {
  font-size: 0.9rem;
  font-weight: 700;
  margin-left: 3px;
  opacity: 0.8;
}

.jackpot-body {
  padding: 14px 20px;
}

.jackpot-players-title {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin-bottom: 10px;
}

.jackpot-players {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.jackpot-player {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
}

.jackpot-player-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  flex-shrink: 0;
  text-transform: uppercase;
}

.jk-bronze .jackpot-player-avatar {
  background: rgba(205, 127, 50, 0.2);
  color: #cd7f32;
}
.jk-silver .jackpot-player-avatar {
  background: rgba(192, 192, 192, 0.2);
  color: #c0c0c0;
}
.jk-gold .jackpot-player-avatar {
  background: rgba(255, 215, 64, 0.2);
  color: #ffd740;
}

.jackpot-player-name {
  color: var(--color-text);
  font-weight: 600;
  flex: 1;
}
.jackpot-player-win {
  font-weight: 700;
  font-size: 0.78rem;
}

.jk-bronze .jackpot-player-win {
  color: #cd7f32;
}
.jk-silver .jackpot-player-win {
  color: #c0c0c0;
}
.jk-gold .jackpot-player-win {
  color: #ffd740;
}

.demo-block {
  background: var(--color-card);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  margin-bottom: 40px;
}

.demo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid var(--color-border);
  flex-wrap: wrap;
  gap: 12px;
}

.demo-title {
  font-weight: 800;
  font-size: 1.05rem;
}

.demo-iframe-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #000;
}

.demo-iframe-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.demo-footer {
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  border-top: 1px solid var(--color-border);
  background: rgba(0, 0, 0, 0.2);
}

/* ========= REVIEWS ========= */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.review-card {
  background: var(--color-card);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  padding: 22px;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(255, 62, 165, 0.12);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: #fff;
}

.review-meta {
  flex: 1;
}
.review-name {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 3px;
}

.review-stars {
  display: flex;
  gap: 2px;
}

.review-stars svg {
  width: 14px;
  height: 14px;
  color: var(--color-gold);
  fill: var(--color-gold);
}

.review-text {
  font-size: 0.87rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.review-date {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-top: 10px;
  opacity: 0.7;
}

/* ========= REVIEW FORM ========= */
.review-form-wrap {
  background: var(--color-card);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  padding: 28px;
}

.review-form-title {
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.form-field {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-text-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-input,
.form-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-text);
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  padding: 11px 14px;
  outline: none;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--color-btn-pink);
  box-shadow: 0 0 0 3px rgba(255, 62, 165, 0.12);
}

.form-textarea {
  resize: vertical;
  min-height: 110px;
}

.form-success {
  display: none;
  background: rgba(0, 230, 118, 0.1);
  border: 1px solid rgba(0, 230, 118, 0.3);
  border-radius: var(--radius-sm);
  color: var(--color-btn-green);
  font-weight: 700;
  padding: 14px 18px;
  text-align: center;
  margin-top: 14px;
}

.form-success.visible {
  display: block;
}

/* ========= CONTENT BLOCK ========= */
.content-block {
  background: var(--color-card);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  padding: 32px;
  margin-bottom: 40px;
}

.content-block h2 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 12px;
  margin-top: 24px;
  color: #fff;
}
.content-block h2:first-child {
  margin-top: 0;
}
.content-block h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 20px;
  color: var(--color-text);
}
.content-block p {
  font-size: 0.93rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: 14px;
}
.content-block ul,
.content-block ol {
  margin: 0 0 14px 20px;
}
.content-block li {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--color-text-muted);
  margin-bottom: 6px;
}
.content-block table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
}
.content-block table th,
.content-block table td {
  border: 1px solid var(--color-border);
  padding: 10px 14px;
  font-size: 0.88rem;
  text-align: left;
}
.content-block table th {
  background: rgba(255, 255, 255, 0.05);
  font-weight: 700;
}
.content-block a {
  color: var(--color-btn-pink);
  text-decoration: underline;
}

/* ========= AUTHOR ========= */
.author-block {
  background: var(--color-card);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
}

.author-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--color-btn-pink),
    var(--color-btn-green)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
}

.author-info {
  flex: 1;
}
.author-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-btn-pink);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.author-name {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.author-name a {
  color: var(--color-btn-green);
  text-decoration: none;
}
.author-name a:hover {
  text-decoration: underline;
}

.author-bio {
  font-size: 0.84rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

/* ========= FAQ ========= */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--color-card);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--color-text);
  font-family: "Montserrat", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 16px 20px;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  transition: background var(--transition);
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.04);
}

.faq-question .faq-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 62, 165, 0.15);
  color: var(--color-btn-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    transform var(--transition),
    background var(--transition);
}

.faq-item.open .faq-question .faq-icon {
  transform: rotate(45deg);
  background: rgba(255, 62, 165, 0.3);
}

.faq-answer {
  display: none;
  padding: 0 20px 16px;
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--color-text-muted);
}

.faq-item.open .faq-answer {
  display: block;
}

/* ========= FOOTER ========= */
.site-footer {
  background: var(--color-footer);
  border-top: 1px solid var(--color-border);
  padding: 48px 0 24px;
  margin-top: auto;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--color-border);
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  text-decoration: none;
}

.footer-brand .footer-logo img {
  height: 36px;
  width: auto;
}

.footer-brand-name {
  font-weight: 800;
  color: #fff;
  font-size: 1rem;
  line-height: 1.1;
}

.footer-brand-sub {
  font-size: 0.65rem;
  color: var(--color-btn-green);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-desc {
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.footer-col-title {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--color-text);
  margin-bottom: 14px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: #fff;
}

.footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.payment-badge {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
  align-items: center;
}

.trust-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-text-muted);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copyright {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.footer-legal {
  font-size: 0.75rem;
  color: rgba(159, 168, 201, 0.6);
  max-width: 680px;
  line-height: 1.55;
  margin-top: 12px;
}

.provider-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.7;
  transition: opacity var(--transition);
}

.provider-logo:hover {
  opacity: 1;
}
.provider-logo img {
  height: 28px;
  filter: brightness(0) invert(1) opacity(0.6);
}

/* ========= WIDGET ========= */
.bottom-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: linear-gradient(90deg, #1b1f3b, #0f1228);
  border-top: 2px solid var(--color-btn-green);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 32px rgba(0, 0, 0, 0.6);
}

.widget-text {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

.widget-bonus {
  background: rgba(0, 230, 118, 0.1);
  border: 1px solid rgba(0, 230, 118, 0.35);
  color: var(--color-btn-green);
  font-size: 0.85rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
}

.widget-close {
  background: transparent;
  border: none;
  color: var(--color-text-muted);
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  margin-left: 8px;
  transition: color var(--transition);
}

.widget-close:hover {
  color: #fff;
}
.widget-close svg {
  width: 16px;
  height: 16px;
}

/* ========= GAMES BLOCK ========= */
.games-strip {
  background: linear-gradient(
    135deg,
    rgba(255, 62, 165, 0.06),
    rgba(0, 230, 118, 0.04)
  );
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.games-strip-label {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--color-text-muted);
  flex-shrink: 0;
}

.games-strip-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex: 1;
}

.game-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: all var(--transition);
}

.game-chip:hover {
  border-color: var(--color-btn-pink);
  color: var(--color-btn-pink);
  background: rgba(255, 62, 165, 0.08);
}

/* ========= CASINO CARDS ========= */
.casino-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.casino-card {
  background: var(--color-card);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition:
    transform var(--transition),
    border-color var(--transition);
}

.casino-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 62, 165, 0.4);
}

.casino-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.casino-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.casino-name {
  font-weight: 800;
  font-size: 0.95rem;
}
.casino-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
}

.casino-rating .star {
  color: var(--color-gold);
}
.casino-rating .val {
  font-weight: 700;
  color: var(--color-text);
}

.casino-bonus {
  background: rgba(0, 230, 118, 0.08);
  border: 1px solid rgba(0, 230, 118, 0.2);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-btn-green);
  text-align: center;
}

/* ========= TECHNICAL PAGE ========= */
.tech-content {
  background: var(--color-card);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  padding: 36px;
  margin: 32px 0 60px;
}

.tech-content h2 {
  font-size: 1.3rem;
  font-weight: 800;
  margin: 24px 0 10px;
  color: #fff;
}
.tech-content h2:first-child {
  margin-top: 0;
}
.tech-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 18px 0 8px;
  color: var(--color-text);
}
.tech-content p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}
.tech-content ul,
.tech-content ol {
  margin: 0 0 14px 22px;
}
.tech-content li {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--color-text-muted);
  margin-bottom: 6px;
}
.tech-content a {
  color: var(--color-btn-pink);
}

/* ========= ANIMATIONS ========= */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

.anim-fade-up {
  animation: fadeInUp 0.55s ease both;
}
.anim-fade {
  animation: fadeIn 0.45s ease both;
}

.jackpot-amount {
  background: linear-gradient(
    90deg,
    currentColor 30%,
    rgba(255, 255, 255, 0.8) 50%,
    currentColor 70%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 2.5s linear infinite;
}

/* ========= BREADCRUMB ========= */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  padding: 14px 0;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--color-text-muted);
  text-decoration: none;
}
.breadcrumb a:hover {
  color: #fff;
}
.breadcrumb .sep {
  opacity: 0.4;
}
.breadcrumb .cur {
  color: var(--color-btn-pink);
  font-weight: 600;
}

/* ========= SCROLLBAR ========= */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--color-border);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-btn-pink);
}

@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .jackpots-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  .casino-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .header-nav {
    display: none;
  }
  .burger-btn {
    display: flex;
  }
  .online-counter {
    display: none;
  }
  .lang-dropdown {
    display: none;
  }

  .hero {
    min-height: 400px;
  }
  .hero-content {
    padding: 48px 20px;
  }
  .hero-stats {
    gap: 16px;
  }

  .pros-cons {
    grid-template-columns: 1fr;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .casino-cards {
    grid-template-columns: 1fr;
  }
  .jackpots-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .game-info-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .author-block {
    flex-direction: column;
  }
  .author-avatar {
    width: 56px;
    height: 56px;
    font-size: 1.2rem;
  }

  .demo-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .bottom-widget {
    padding: 10px 16px;
  }
  .widget-text {
    font-size: 0.8rem;
  }

  .section {
    padding: 40px 0;
  }
  .content-block {
    padding: 20px;
  }
  .tech-content {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 1.7rem;
  }
  .header-cta .btn-demo {
    display: none;
  }
  .btn-xl {
    padding: 13px 24px;
    font-size: 0.95rem;
  }
}

.wp-block-group {
}
.wp-block-paragraph {
}
.wp-block-heading {
}
.entry-content {
}
.site-content {
}
.wp-site-blocks {
}
.elementor-widget-container {
}
.elementor-section-wrap {
}
.e-con-inner {
}
.elementor-column-wrap {
}
.post-type-page {
}
.elementor-element {
}
.elementor-widget {
}
.single-post .entry-meta {
}
.byline {
}
.updated {
}
.cat-links {
}
.tags-links {
}
.yoast-seo-plugin {
}
.wpseo-score-icon {
}
.page-id-sample {
}
