:root {
  --clr-header: #004c9d;
  --clr-header-dark: #003a7a;
  --clr-btn-login: #9101ab;
  --clr-btn-register: #cd0fe0;
  --clr-btn-register-hover: #a80ab7;
  --clr-btn-login-hover: #7200890;
  --clr-bg: #2b6af7;
  --clr-bg-dark: #1a56e0;
  --clr-bg-card: rgba(0, 0, 0, 0.25);
  --clr-bg-card2: rgba(255, 255, 255, 0.08);
  --clr-text: #ffffff;
  --clr-text-muted: rgba(255, 255, 255, 0.75);
  --clr-gold: #f5c842;
  --clr-green: #22c55e;
  --clr-red: #ef4444;
  --clr-border: rgba(255, 255, 255, 0.15);
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 4px 32px rgba(0, 0, 0, 0.35);
  --font-head: "Quicksand", "Nunito", sans-serif;
  --font-body: "Nunito", "Poppins", sans-serif;
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background: var(--clr-bg);
}

body {
  font-family: var(--font-body);
  background: linear-gradient(135deg, #1a4fd6 0%, #2b6af7 50%, #1e5ce8 100%);
  color: var(--clr-text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

body.fixed {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

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

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

/* ===== HEADER ===== */
.site-header {
  background: var(--clr-header);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 16px;
  padding: 12px 20px;
  max-width: 1240px;
  margin: 0 auto;
}

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

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

.logo-text {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
  line-height: 1.2;
}

.logo-text span {
  color: var(--clr-gold);
}

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

.header-nav a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 13px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  transition:
    background var(--transition),
    color var(--transition);
  white-space: nowrap;
}

.header-nav a:hover,
.header-nav a.active {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.header-nav a svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

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

.online-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 5px 11px;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
}

.online-dot {
  width: 7px;
  height: 7px;
  background: var(--clr-green);
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}

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

.lang-switcher {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  padding: 7px 11px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  transition: background var(--transition);
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.18);
}

.lang-btn svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition);
}
.lang-btn.open svg {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--clr-header);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  min-width: 140px;
  box-shadow: var(--shadow);
  display: none;
  z-index: 100;
}

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

.lang-dropdown a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  transition: background var(--transition);
}

.lang-dropdown a:hover {
  background: rgba(255, 255, 255, 0.12);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition);
  white-space: nowrap;
  line-height: 1;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--login {
  background: var(--clr-btn-login);
  color: #fff;
  box-shadow: 0 3px 14px rgba(145, 1, 171, 0.45);
}

.btn--login:hover {
  background: #7a0920;
  box-shadow: 0 5px 20px rgba(145, 1, 171, 0.65);
}

.btn--register {
  background: var(--clr-btn-register);
  color: #fff;
  box-shadow: 0 3px 14px rgba(205, 15, 224, 0.45);
}

.btn--register:hover {
  background: var(--clr-btn-register-hover);
  box-shadow: 0 5px 20px rgba(205, 15, 224, 0.65);
}

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

.btn--demo:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.btn--play {
  background: linear-gradient(
    135deg,
    var(--clr-btn-register),
    var(--clr-btn-login)
  );
  color: #fff;
  font-size: 1rem;
  padding: 13px 30px;
  box-shadow: 0 4px 20px rgba(205, 15, 224, 0.5);
}

.btn--play:hover {
  box-shadow: 0 6px 28px rgba(205, 15, 224, 0.75);
}

.btn--hero {
  font-size: 1.1rem;
  padding: 16px 40px;
  border-radius: 50px;
  background: linear-gradient(135deg, #cd0fe0, #9101ab);
  color: #fff;
  box-shadow: 0 5px 30px rgba(205, 15, 224, 0.55);
  animation: heroBtn 2.5s ease-in-out infinite;
}

@keyframes heroBtn {
  0%,
  100% {
    box-shadow: 0 5px 30px rgba(205, 15, 224, 0.55);
  }
  50% {
    box-shadow: 0 8px 45px rgba(205, 15, 224, 0.85);
  }
}

.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  cursor: pointer;
  flex-shrink: 0;
}

.burger-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

.burger-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger-btn.active span:nth-child(2) {
  opacity: 0;
}
.burger-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  background: var(--clr-header-dark);
  padding: 16px 20px;
  border-top: 1px solid var(--clr-border);
}

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

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 14px;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  transition: background var(--transition);
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.1);
}
.mobile-nav a svg {
  width: 17px;
  height: 17px;
}

.mobile-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.mobile-buttons .btn {
  flex: 1;
  min-width: 100px;
  justify-content: center;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("/ssban.jpeg") center/cover no-repeat;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 10, 40, 0.45) 60%,
    rgba(0, 10, 60, 0.1) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 60px 40px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(205, 15, 224, 0.25);
  border: 1px solid rgba(205, 15, 224, 0.5);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 18px;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-title span {
  color: var(--clr-gold);
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-stats {
  display: flex;
  gap: 24px;
  margin-top: 28px;
  flex-wrap: wrap;
}

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

.hero-stat-val {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--clr-gold);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 3px;
}

/* ===== SECTIONS ===== */
.section {
  padding: 60px 0;
}
.section--sm {
  padding: 40px 0;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 10px;
  color: #fff;
}

.section-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ===== CARDS / BLOCKS ===== */
.card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 24px;
  backdrop-filter: blur(6px);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.card2 {
  background: var(--clr-bg-card2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 20px;
  backdrop-filter: blur(4px);
}

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

.pros-card {
  border-color: rgba(34, 197, 94, 0.35);
  background: rgba(34, 197, 94, 0.08);
}
.cons-card {
  border-color: rgba(239, 68, 68, 0.35);
  background: rgba(239, 68, 68, 0.08);
}

.pros-cons-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.pros-card .pros-cons-title {
  color: var(--clr-green);
}
.cons-card .pros-cons-title {
  color: var(--clr-red);
}

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

.pros-cons-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

.pros-cons-list li::before {
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 1rem;
}

.pros-card .pros-cons-list li::before {
  content: "✓";
  color: var(--clr-green);
  font-weight: 700;
}
.cons-card .pros-cons-list li::before {
  content: "✗";
  color: var(--clr-red);
  font-weight: 700;
}

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

.jackpot-card {
  background: rgba(0, 0, 0, 0.3);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition);
}

.jackpot-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.jackpot-card:nth-child(1)::before {
  background: linear-gradient(90deg, #c0a030, #f5c842);
}
.jackpot-card:nth-child(2)::before {
  background: linear-gradient(90deg, #9101ab, #cd0fe0);
}
.jackpot-card:nth-child(3)::before {
  background: linear-gradient(90deg, #2563eb, #3b82f6);
}

.jackpot-card:hover {
  transform: translateY(-4px);
}

.jackpot-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.jackpot-card:nth-child(1) .jackpot-badge {
  background: rgba(245, 200, 66, 0.2);
  color: var(--clr-gold);
  border: 1px solid rgba(245, 200, 66, 0.4);
}
.jackpot-card:nth-child(2) .jackpot-badge {
  background: rgba(205, 15, 224, 0.2);
  color: #e060f5;
  border: 1px solid rgba(205, 15, 224, 0.4);
}
.jackpot-card:nth-child(3) .jackpot-badge {
  background: rgba(59, 130, 246, 0.2);
  color: #7eb3ff;
  border: 1px solid rgba(59, 130, 246, 0.4);
}

.jackpot-name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.85);
}

.jackpot-amount {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--clr-gold);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  transition: color 0.5s;
}

.jackpot-currency {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 16px;
}

.jackpot-top {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 14px;
}

.jackpot-top-title {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 10px;
}

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

.jackpot-player {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
}

.jackpot-player-nick {
  color: rgba(255, 255, 255, 0.8);
}
.jackpot-player-sum {
  font-weight: 700;
  color: var(--clr-gold);
}

/* ===== WINNERS TABLE ===== */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--clr-border);
  background: rgba(0, 0, 0, 0.2);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

thead th {
  background: rgba(0, 0, 0, 0.3);
  padding: 13px 16px;
  text-align: left;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.65);
  white-space: nowrap;
  border-bottom: 1px solid var(--clr-border);
}

tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background var(--transition);
}

tbody tr:last-child {
  border-bottom: none;
}
tbody tr:hover {
  background: rgba(255, 255, 255, 0.05);
}

tbody td {
  padding: 12px 16px;
  color: rgba(255, 255, 255, 0.88);
  white-space: nowrap;
}

.rank-cell {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.4);
}

.rank-cell.top1 {
  color: #f5c842;
}
.rank-cell.top2 {
  color: #c0c0c0;
}
.rank-cell.top3 {
  color: #cd7f32;
}

.win-amount {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--clr-gold);
}

.multiplier-badge {
  display: inline-block;
  background: rgba(205, 15, 224, 0.2);
  color: #e060f5;
  border: 1px solid rgba(205, 15, 224, 0.35);
  border-radius: 4px;
  padding: 2px 7px;
  font-size: 0.78rem;
  font-weight: 700;
}

.demo-section {
}

.demo-wrap {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
}

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

.demo-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
}

.demo-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

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

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

.demo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: radial-gradient(ellipse at center, #1a2a6c 0%, #0d1530 100%);
}

.demo-placeholder-icon {
  font-size: 3rem;
}

.demo-placeholder-text {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--clr-gold);
  text-align: center;
}

.demo-placeholder-sub {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  max-width: 340px;
}

/* ===== CONTENT BLOCK ===== */
.content-block {
}

.content-block .text h2 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  margin: 28px 0 12px;
  color: #fff;
}

.content-block .text h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 20px 0 10px;
  color: rgba(255, 255, 255, 0.9);
}

.content-block .text p {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  font-size: 0.95rem;
}

.content-block .text ul,
.content-block .text ol {
  margin: 12px 0 16px 20px;
  color: rgba(255, 255, 255, 0.82);
}

.content-block .text li {
  margin-bottom: 6px;
  line-height: 1.6;
  font-size: 0.93rem;
}

.content-block .text table {
  margin: 16px 0;
  border: 1px solid var(--clr-border);
}

.content-block .text th {
  background: rgba(0, 0, 0, 0.3);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  padding: 10px 14px;
}

.content-block .text td {
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.82);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

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

.faq-item {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  transition: background var(--transition);
}

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

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition:
    transform var(--transition),
    background var(--transition);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--clr-btn-register);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s ease;
  padding: 0 20px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 20px 16px;
}

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

.review-card {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 20px;
}

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

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--clr-btn-login),
    var(--clr-btn-register)
  );
  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.92rem;
}
.review-date {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}

.review-stars {
  color: var(--clr-gold);
  font-size: 0.88rem;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.review-text {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

/* ===== AUTHOR ===== */
.author-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: start;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 28px;
}

.author-photo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--clr-btn-register);
  flex-shrink: 0;
}

.author-photo-placeholder {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--clr-btn-login),
    var(--clr-btn-register)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  border: 3px solid var(--clr-btn-register);
  flex-shrink: 0;
}

.author-name {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.author-role {
  font-size: 0.82rem;
  color: rgba(205, 15, 224, 0.9);
  font-weight: 600;
  margin-bottom: 12px;
}

.author-bio {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
  margin-bottom: 14px;
}

.author-socials {
  display: flex;
  gap: 10px;
}

.author-social {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  transition: background var(--transition);
}

.author-social:hover {
  background: rgba(255, 255, 255, 0.15);
}
.author-social svg {
  width: 15px;
  height: 15px;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}

.footer-brand {
}

.footer-logo {
  margin-bottom: 14px;
}
.footer-logo img {
  height: 40px;
}

.footer-tagline {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 18px;
  max-width: 300px;
}

.footer-col-title {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 14px;
}

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

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.72);
  transition: color var(--transition);
}

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

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 24px;
}

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

.footer-payments {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.payment-badge {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.03em;
}

.footer-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.trust-badge {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(34, 197, 94, 0.9);
}

.footer-legal {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
  max-width: 700px;
}

.footer-provider {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 12px;
}

.footer-provider img {
  height: 22px;
  opacity: 0.6;
  filter: grayscale(1) brightness(2);
}

/* ===== STICKY WIDGET ===== */
.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(
    135deg,
    rgba(0, 30, 80, 0.97),
    rgba(0, 20, 60, 0.98)
  );
  border-top: 2px solid var(--clr-btn-register);
  padding: 12px 20px;
  box-shadow: 0 -4px 30px rgba(205, 15, 224, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.sticky-text {
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

.sticky-bonus {
  font-size: 0.82rem;
  color: var(--clr-gold);
  font-weight: 700;
  white-space: nowrap;
}

.sticky-close {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.sticky-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ===== GAME CARDS (for games.html.twig) ===== */
.games-section {
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.game-card {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  cursor: pointer;
}

.game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.game-thumb {
  position: relative;
  padding-top: 75%;
  background: linear-gradient(135deg, #1a2a5c, #0d1530);
}

.game-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.game-card:hover .game-thumb-overlay {
  opacity: 1;
}

.game-info {
  padding: 10px 12px;
}

.game-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.game-provider {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ===== TECHNICAL PAGES ===== */
.tech-content {
  max-width: 860px;
  margin: 0 auto;
}

.tech-content h2 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 800;
  margin: 32px 0 14px;
  color: #fff;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tech-content h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 22px 0 10px;
  color: rgba(255, 255, 255, 0.88);
}

.tech-content p {
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  margin-bottom: 14px;
}

.tech-content ul,
.tech-content ol {
  margin: 10px 0 16px 22px;
  color: rgba(255, 255, 255, 0.78);
}

.tech-content li {
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 6px;
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  padding: 14px 0;
  flex-wrap: wrap;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition);
}
.breadcrumbs a:hover {
  color: #fff;
}
.breadcrumbs span {
  color: rgba(255, 255, 255, 0.35);
}

/* ===== GAME INFO TABLE ===== */
.game-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.info-row {
  display: flex;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
}

.info-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
  min-width: 120px;
}

.info-value {
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

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

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

.anim-fadeup {
  animation: fadeInUp 0.55s ease both;
}
.anim-fadein {
  animation: fadeIn 0.4s ease both;
}

[data-aos] {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

.wp-block-group,
.wp-block-columns,
.elementor-section,
.entry-content {
  display: contents;
}
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .jackpots-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .games-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }
  .header-nav {
    display: none;
  }
  .burger-btn {
    display: flex;
  }
  .jackpots-grid {
    grid-template-columns: 1fr;
  }
  .pros-cons-grid {
    grid-template-columns: 1fr;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .author-card {
    grid-template-columns: 1fr;
  }
  .game-info-grid {
    grid-template-columns: 1fr;
  }
  .hero-content {
    padding: 40px 20px;
  }
  .hero-title {
    font-size: 1.8rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .section {
    padding: 40px 0;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .header-inner {
    padding: 10px 14px;
  }
  .online-badge {
    display: none;
  }
  .lang-switcher {
    display: none;
  }
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sticky-widget {
    gap: 10px;
    padding: 10px 40px 10px 16px;
  }
  .sticky-text {
    font-size: 0.82rem;
  }
}

.x9f2a1,
.b7r3k9,
.qz4m8p {
  visibility: visible;
}
.wp-content-loader::after {
  content: "";
  display: none;
}
