*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --clr-pink: #fe87d7;
  --clr-pink-dark: #e96cc0;
  --clr-green: #73d245;
  --clr-green-dark: #5db834;
  --clr-orange: #ff8603;
  --clr-orange-dark: #e07500;
  --clr-blue: #07a3fe;
  --clr-blue-dark: #0589d8;
  --clr-white: #ffffff;
  --clr-dark: #1a0030;
  --clr-card: #f9f0ff;
  --clr-text: #1a0030;
  --clr-muted: #5c3d6e;
  --radius: 14px;
  --shadow: 0 4px 24px rgba(7, 163, 254, 0.18);
  --shadow-card: 0 2px 16px rgba(254, 135, 215, 0.18);
  --font-main: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --transition: 0.25s ease;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-main);
  background: var(--clr-blue);
  color: var(--clr-text);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--clr-orange);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--clr-orange-dark);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.25;
  font-weight: 700;
  color: var(--clr-dark);
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.site-header {
  background: var(--clr-pink);
  box-shadow: 0 2px 16px rgba(254, 135, 215, 0.35);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: nowrap;
}
.header-logo {
  flex-shrink: 0;
}
.header-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}
.header-logo span {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--clr-dark);
  letter-spacing: -0.5px;
}
.header-nav-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  flex-wrap: nowrap;
}
.header-nav a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 11px;
  border-radius: 8px;
  color: var(--clr-dark);
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
  transition:
    background var(--transition),
    color var(--transition);
}
.header-nav a:hover {
  background: rgba(255, 255, 255, 0.35);
  color: var(--clr-dark);
}
.header-nav a svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition);
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}
.btn-demo {
  background: var(--clr-green);
  color: #fff;
}
.btn-demo:hover {
  background: var(--clr-green-dark);
  color: #fff;
}
.btn-money {
  background: var(--clr-orange);
  color: #fff;
}
.btn-money:hover {
  background: var(--clr-orange-dark);
  color: #fff;
}
.btn-register {
  background: var(--clr-orange);
  color: #fff;
}
.btn-register:hover {
  background: var(--clr-orange-dark);
  color: #fff;
}
.btn-login {
  background: var(--clr-green);
  color: #fff;
}
.btn-login:hover {
  background: var(--clr-green-dark);
  color: #fff;
}
.lang-drop {
  position: relative;
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.3);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  color: var(--clr-dark);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
}
.lang-btn:hover {
  background: rgba(255, 255, 255, 0.5);
}
.lang-btn .arrow {
  font-size: 0.7rem;
  transition: transform var(--transition);
}
.lang-drop.open .arrow {
  transform: rotate(180deg);
}
.lang-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--shadow);
  list-style: none;
  min-width: 140px;
  overflow: hidden;
  display: none;
  z-index: 200;
}
.lang-drop.open .lang-menu {
  display: block;
}
.lang-menu li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  color: var(--clr-dark);
  font-size: 0.88rem;
  font-weight: 600;
  transition: background var(--transition);
}
.lang-menu li a:hover {
  background: #f5eeff;
}
.online-count {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--clr-dark);
  white-space: nowrap;
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 8px;
}
.online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #73d245;
  box-shadow: 0 0 6px #73d245;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 4px #73d245;
  }
  50% {
    box-shadow:
      0 0 12px #73d245,
      0 0 4px #73d245;
  }
}
.burger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
}
.burger-btn span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--clr-dark);
  border-radius: 2px;
  transition:
    transform var(--transition),
    opacity var(--transition);
}
.burger-btn.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.burger-btn.open span:nth-child(2) {
  opacity: 0;
}
.burger-btn.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 0, 48, 0.96);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px;
}
.mobile-nav.open {
  display: flex;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 10px;
  transition: background var(--transition);
}
.mobile-nav a:hover {
  background: rgba(254, 135, 215, 0.2);
}
.mobile-nav-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
}

.hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #fe87d7 0%, #07a3fe 60%, #1a0030 100%);
  z-index: 0;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 16px 50px;
  max-width: 720px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-block;
  background: var(--clr-orange);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  margin-bottom: 14px;
  line-height: 1.15;
}
.hero-title span {
  color: var(--clr-pink);
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 28px;
  line-height: 1.6;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.hero-btns .btn {
  font-size: 1rem;
  padding: 14px 30px;
  border-radius: 12px;
}
.hero-info {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
}
.hero-info-item {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 8px 16px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
}
.hero-info-item span {
  color: var(--clr-pink);
  font-weight: 800;
}

.main-wrap {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 0 40px;
}
.content-area {
  flex: 1;
  min-width: 0;
}
.sidebar {
  width: 280px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.box {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 28px 24px;
  margin-bottom: 22px;
}
.box-pink {
  background: linear-gradient(135deg, #fff5fc 0%, #fff 100%);
  border: 1.5px solid var(--clr-pink);
}
.box-blue {
  background: linear-gradient(135deg, #e8f6ff 0%, #fff 100%);
  border: 1.5px solid #9dd9ff;
}
.box-green {
  background: linear-gradient(135deg, #efffec 0%, #fff 100%);
  border: 1.5px solid #a8e890;
}
.box-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--clr-dark);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.box-title svg {
  width: 22px;
  height: 22px;
  color: var(--clr-orange);
  flex-shrink: 0;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 0.83rem;
  color: var(--clr-muted);
  list-style: none;
  padding: 0;
  margin-bottom: 4px;
}
.breadcrumbs li {
  display: flex;
  align-items: center;
  gap: 6px;
}
.breadcrumbs li::after {
  content: "/";
  color: var(--clr-pink);
  font-weight: 700;
}
.breadcrumbs li:last-child::after {
  display: none;
}
.breadcrumbs a {
  color: var(--clr-blue-dark);
  font-weight: 600;
}
.breadcrumbs a:hover {
  color: var(--clr-orange);
}
.breadcrumbs span {
  color: var(--clr-muted);
}

.toc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.toc-list a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--clr-dark);
  font-size: 0.92rem;
  font-weight: 600;
  transition:
    background var(--transition),
    color var(--transition);
}
.toc-list a:hover {
  background: #f0e6ff;
  color: var(--clr-blue-dark);
}
.toc-list a svg {
  width: 18px;
  height: 18px;
  color: var(--clr-pink);
  flex-shrink: 0;
}

.jackpot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.jackpot-card {
  border-radius: var(--radius);
  padding: 20px 14px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.jackpot-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
.jackpot-card.gold {
  background: linear-gradient(135deg, #fffbe6, #ffe99a);
  border: 2px solid #f5c900;
}
.jackpot-card.silver {
  background: linear-gradient(135deg, #f0f4f8, #d0dce8);
  border: 2px solid #a0b8cc;
}
.jackpot-card.bronze {
  background: linear-gradient(135deg, #fff2e8, #ffd5a8);
  border: 2px solid #e8a04a;
}
.jackpot-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
  opacity: 0.65;
}
.jackpot-name {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.jackpot-card.gold .jackpot-name {
  color: #8a6a00;
}
.jackpot-card.silver .jackpot-name {
  color: #3a5a7a;
}
.jackpot-card.bronze .jackpot-name {
  color: #8a4a00;
}
.jackpot-amount {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.jackpot-card.gold .jackpot-amount {
  color: #c9900a;
}
.jackpot-card.silver .jackpot-amount {
  color: #5580a0;
}
.jackpot-card.bronze .jackpot-amount {
  color: #c06020;
}
.jackpot-winners {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.jackpot-winners li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 7px;
  padding: 5px 9px;
  font-size: 0.8rem;
  font-weight: 600;
}
.jackpot-winners li .wname {
  color: var(--clr-dark);
}
.jackpot-winners li .wsum {
  color: var(--clr-green-dark);
}

.demo-wrap {
  position: relative;
  border-radius: var(--radius);
  background: #000;
  min-height: 400px;
}
.demo-iframe {
  width: 100%;
  height: 480px;
  border: none;
  display: block;
}
.demo-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  background: linear-gradient(
    135deg,
    rgba(254, 135, 215, 0.7),
    rgba(7, 163, 254, 0.7)
  );
  cursor: pointer;
  transition: opacity var(--transition);
}
.demo-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}
.demo-play-icon {
  width: 72px;
  height: 72px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
  transition: transform var(--transition);
}
.demo-overlay:hover .demo-play-icon {
  transform: scale(1.08);
}
.demo-play-icon svg {
  width: 34px;
  height: 34px;
  color: var(--clr-orange);
}
.demo-overlay-text {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}
.demo-btn-wrap {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 14px;
}
.demo-btn-wrap .btn {
  padding: 12px 28px;
  font-size: 0.95rem;
}

/* ========== CASINO CARDS ========== */
.casino-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.casino-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border-radius: var(--radius);
  padding: 14px 16px;
  box-shadow: 0 2px 12px rgba(254, 135, 215, 0.12);
  border: 1.5px solid #f3d8f8;
  transition:
    box-shadow var(--transition),
    transform var(--transition);
}
.casino-card:hover {
  box-shadow: 0 6px 24px rgba(254, 135, 215, 0.22);
  transform: translateX(3px);
}
.casino-card-logo {
  width: 60px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 8px;
  background: #f5eeff;
  padding: 4px;
}
.casino-card-info {
  flex: 1;
}
.casino-card-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--clr-dark);
  margin-bottom: 2px;
}
.casino-card-bonus {
  font-size: 0.82rem;
  color: var(--clr-orange);
  font-weight: 600;
}
.casino-card-rating {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #f5c900;
  margin-top: 3px;
}
.casino-card-btn {
  flex-shrink: 0;
}
.casino-card-btn .btn {
  padding: 8px 16px;
  font-size: 0.82rem;
}

/* ========== FEATURES / PROS CONS ========== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #f9f0ff;
  border-radius: 10px;
  padding: 14px;
}
.feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--clr-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-icon svg {
  width: 18px;
  height: 18px;
  color: #fff;
}
.feature-text {
  font-size: 0.9rem;
  color: var(--clr-muted);
  line-height: 1.5;
}
.feature-text strong {
  display: block;
  color: var(--clr-dark);
  font-size: 0.95rem;
  margin-bottom: 2px;
}
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.pros-col,
.cons-col {
  border-radius: 12px;
  padding: 18px;
}
.pros-col {
  background: #efffec;
  border: 1.5px solid #a8e890;
}
.cons-col {
  background: #fff3f3;
  border: 1.5px solid #ffb3b3;
}
.pros-col h3 {
  color: #3a8a20;
  margin-bottom: 10px;
  font-size: 0.95rem;
}
.cons-col h3 {
  color: #c02020;
  margin-bottom: 10px;
  font-size: 0.95rem;
}
.pros-col ul,
.cons-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.pros-col li {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 0.88rem;
  color: #2a6010;
}
.cons-col li {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 0.88rem;
  color: #8a1010;
}
.pros-col li::before {
  content: "✓";
  font-weight: 800;
  color: #3a8a20;
  flex-shrink: 0;
}
.cons-col li::before {
  content: "✗";
  font-weight: 800;
  color: #c02020;
  flex-shrink: 0;
}

/* ========== GAME INFO TABLE ========== */
.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.info-table tr:nth-child(even) {
  background: #f9f0ff;
}
.info-table tr:nth-child(odd) {
  background: #fff;
}
.info-table td {
  padding: 11px 14px;
  border: 1.5px solid #ead4f8;
  vertical-align: middle;
  text-align: left;
}
.info-table td:first-child {
  font-weight: 700;
  color: var(--clr-muted);
  width: 48%;
  white-space: nowrap;
}
.info-table td:last-child {
  color: var(--clr-dark);
  font-weight: 600;
}
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: 0 1px 8px rgba(254, 135, 215, 0.1);
}

/* ========== REVIEWS ========== */
.reviews-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 18px 20px;
  border: 1.5px solid #f3d8f8;
  box-shadow: 0 1px 8px rgba(254, 135, 215, 0.08);
}
.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--clr-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  flex-shrink: 0;
}
.review-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--clr-dark);
}
.review-date {
  font-size: 0.78rem;
  color: var(--clr-muted);
}
.review-stars {
  display: flex;
  gap: 2px;
  color: #f5c900;
  font-size: 1rem;
}
.review-text {
  font-size: 0.88rem;
  color: var(--clr-muted);
  line-height: 1.6;
}

/* ========== FAQ ========== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  border-radius: 10px;
  overflow: hidden;
  border: 1.5px solid #ead4f8;
  background: #fff;
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 18px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--clr-dark);
  gap: 10px;
  transition: background var(--transition);
}
.faq-q:hover {
  background: #f9f0ff;
}
.faq-q .faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--clr-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-q .faq-icon svg {
  width: 14px;
  height: 14px;
  color: #fff;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}
.faq-a {
  display: none;
  padding: 0 18px 15px;
  font-size: 0.9rem;
  color: var(--clr-muted);
  line-height: 1.7;
  border-top: 1px solid #ead4f8;
}
.faq-item.open .faq-a {
  display: block;
}

/* ========== AUTHOR ========== */
.author-block {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: linear-gradient(135deg, #fff5fc, #f0f8ff);
  border-radius: var(--radius);
  padding: 22px;
  border: 1.5px solid var(--clr-pink);
}
.author-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--clr-pink);
  background: #f5eeff;
}
.author-photo-placeholder {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--clr-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  flex-shrink: 0;
  border: 3px solid var(--clr-pink-dark);
}
.author-info {
  flex: 1;
}
.author-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--clr-dark);
  margin-bottom: 2px;
}
.author-role {
  font-size: 0.82rem;
  color: var(--clr-orange);
  font-weight: 600;
  margin-bottom: 8px;
}
.author-bio {
  font-size: 0.88rem;
  color: var(--clr-muted);
  line-height: 1.6;
  margin-bottom: 10px;
}
.author-socials {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.author-socials a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  background: var(--clr-blue);
  color: #fff;
  border-radius: 7px;
  font-size: 0.8rem;
  font-weight: 700;
  transition: background var(--transition);
}
.author-socials a:hover {
  background: var(--clr-blue-dark);
  color: #fff;
}
.author-socials a svg {
  width: 14px;
  height: 14px;
}

/* ========== SIDEBAR WIDGETS ========== */
.widget {
  background: #fff;
  border-radius: var(--radius);
  padding: 20px 18px;
  border: 1.5px solid #ead4f8;
  box-shadow: var(--shadow-card);
}
.widget-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-dark);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--clr-pink);
}
.widget-game-info li {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px solid #f3d8f8;
  font-size: 0.84rem;
}
.widget-game-info li:last-child {
  border-bottom: none;
}
.widget-game-info li span:first-child {
  color: var(--clr-muted);
}
.widget-game-info li span:last-child {
  color: var(--clr-dark);
  font-weight: 700;
  text-align: right;
}
.similar-games {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.similar-game-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-radius: 8px;
  background: #f9f0ff;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-dark);
  transition: background var(--transition);
}
.similar-game-item:hover {
  background: #f0e0ff;
}
.similar-game-item::before {
  content: "🎮";
  font-size: 1rem;
}

/* ========== BOTTOM WIDGET ========== */
.bottom-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(90deg, var(--clr-orange) 0%, #ff6b00 100%);
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 10px 16px;
  box-shadow: 0 -4px 20px rgba(255, 134, 3, 0.35);
}
.bottom-widget-text {
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
}
.bottom-widget-text span {
  text-decoration: underline;
}
.bottom-widget .btn-register {
  background: #fff;
  color: var(--clr-orange);
  font-size: 0.9rem;
  padding: 9px 22px;
}
.bottom-widget .btn-register:hover {
  background: #f0f0f0;
  color: var(--clr-orange-dark);
}
.bottom-widget-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.2rem;
  cursor: pointer;
  margin-left: 4px;
  padding: 4px;
  line-height: 1;
}
.bottom-widget-close:hover {
  color: #fff;
}
body.widget-closed .bottom-widget {
  display: none;
}
body {
  padding-bottom: 70px;
}
body.widget-closed {
  padding-bottom: 0;
}

/* ========== FOOTER ========== */
.site-footer {
  background: var(--clr-pink);
  padding: 40px 0 24px;
  margin-top: auto;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.footer-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
  margin-bottom: 8px;
}
.footer-logo span {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--clr-dark);
}
.footer-desc {
  font-size: 0.85rem;
  color: var(--clr-muted);
  line-height: 1.6;
  margin-top: 8px;
}
.footer-col-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--clr-dark);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-nav a {
  color: var(--clr-muted);
  font-size: 0.88rem;
  font-weight: 600;
  transition: color var(--transition);
}
.footer-nav a:hover {
  color: var(--clr-dark);
}
.footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.payment-badge {
  background: #fff;
  border-radius: 7px;
  padding: 5px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--clr-muted);
  border: 1.5px solid #ead4f8;
}
.footer-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.trust-badge {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 7px;
  padding: 5px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--clr-muted);
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 4px;
}
.footer-bottom {
  border-top: 1.5px solid rgba(255, 255, 255, 0.4);
  padding-top: 20px;
  text-align: center;
}
.footer-provider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}
.footer-provider img {
  height: 28px;
  width: auto;
  object-fit: contain;
  background: #fff;
  border-radius: 5px;
  padding: 2px 6px;
}
.footer-provider span {
  font-size: 0.82rem;
  color: var(--clr-muted);
}
.footer-legal {
  font-size: 0.78rem;
  color: var(--clr-muted);
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto;
}
.footer-copyright {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--clr-dark);
  margin-top: 10px;
}

/* ========== CONTENT AREA STYLES ========== */
.content-text h1 {
  font-size: 1.7rem;
  margin-bottom: 16px;
  color: var(--clr-dark);
}
.content-text h2 {
  font-size: 1.3rem;
  margin: 22px 0 10px;
  color: var(--clr-dark);
}
.content-text h3 {
  font-size: 1.1rem;
  margin: 16px 0 8px;
  color: var(--clr-dark);
}
.content-text p {
  font-size: 0.93rem;
  color: var(--clr-muted);
  line-height: 1.75;
  margin-bottom: 12px;
}
.content-text ul,
.content-text ol {
  padding-left: 20px;
  margin-bottom: 12px;
  font-size: 0.93rem;
  color: var(--clr-muted);
  line-height: 1.7;
}
.content-text li {
  margin-bottom: 4px;
}
.content-text a {
  color: var(--clr-blue-dark);
  font-weight: 600;
  text-decoration: underline;
}
.content-text a:hover {
  color: var(--clr-orange);
}
.content-text table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
}
.content-text table th,
.content-text table td {
  padding: 10px 13px;
  border: 1.5px solid #ead4f8;
  text-align: left;
  font-size: 0.88rem;
}
.content-text table th {
  background: #f9f0ff;
  font-weight: 700;
  color: var(--clr-dark);
}
.content-text table tr:nth-child(even) td {
  background: #f9f0ff;
}
.content-text strong {
  color: var(--clr-dark);
}

/* ========== SECTION DIVIDERS ========== */
.section-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--clr-pink), transparent);
  margin: 8px 0 24px;
  border: none;
}

/* ========== TECHNICAL PAGES ========== */
.tech-content h2 {
  font-size: 1.25rem;
  margin: 22px 0 10px;
  color: var(--clr-dark);
}
.tech-content h3 {
  font-size: 1.05rem;
  margin: 16px 0 8px;
  color: var(--clr-dark);
}
.tech-content p {
  font-size: 0.92rem;
  color: var(--clr-muted);
  line-height: 1.75;
  margin-bottom: 12px;
}
.tech-content ul {
  padding-left: 22px;
  margin-bottom: 12px;
  font-size: 0.92rem;
  color: var(--clr-muted);
  line-height: 1.7;
}
.tech-content li {
  margin-bottom: 5px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fade-in-up {
  animation: fadeInUp 0.55s ease both;
}
.fade-in {
  animation: fadeIn 0.4s ease both;
}
.delay-1 {
  animation-delay: 0.1s;
}
.delay-2 {
  animation-delay: 0.2s;
}
.delay-3 {
  animation-delay: 0.3s;
}
.delay-4 {
  animation-delay: 0.4s;
}

.text-center {
  text-align: center;
}
.mb-0 {
  margin-bottom: 0;
}
.mt-0 {
  margin-top: 0;
}
.section-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--clr-dark);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-title::before {
  content: "";
  display: block;
  width: 4px;
  height: 1.4em;
  background: var(--clr-pink);
  border-radius: 2px;
  flex-shrink: 0;
}
.badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
}
.badge-green {
  background: #efffec;
  color: #3a8a20;
  border: 1px solid #a8e890;
}
.badge-orange {
  background: #fff5e8;
  color: #c06020;
  border: 1px solid #f5c990;
}
.badge-blue {
  background: #e8f6ff;
  color: #0070c0;
  border: 1px solid #9dd9ff;
}

.wp-block-group {
  display: block;
}
.wp-block-heading {
  display: block;
}
.wp-element-caption {
  font-size: 0.8rem;
  color: #888;
  text-align: center;
}
.woocommerce-product-details__short-description {
  display: none;
}
.wp-site-blocks {
  display: none;
}
.elementor-hidden {
  display: none !important;
}
.wp-post-image {
  display: none;
}
.attachment-thumbnail {
  display: none;
}
#wpadminbar {
  display: none !important;
}
.entry-meta {
  display: none;
}
.post-thumbnail {
  display: none;
}
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

@media (max-width: 900px) {
  .main-wrap {
    flex-direction: column;
  }
  .sidebar {
    width: 100%;
  }
  .jackpot-grid {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .pros-cons {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 700px) {
  .header-nav-wrap {
    display: none;
  }
  .burger-btn {
    display: flex;
  }
  .hero-title {
    font-size: 1.7rem;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .box {
    padding: 18px 14px;
  }
  .author-block {
    flex-direction: column;
  }
  .jackpot-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .hero {
    min-height: 360px;
  }
  .demo-iframe {
    height: 320px;
  }
  .bottom-widget {
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px 12px;
  }
}

@media (max-width: 700px) {
  .header-nav-wrap {
    display: none;
  }
  .header-actions {
    display: none;
  }
  .burger-btn {
    display: flex;
  }
  .hero-title {
    font-size: 1.7rem;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .box {
    padding: 18px 14px;
  }
  .author-block {
    flex-direction: column;
  }
  .jackpot-grid {
    grid-template-columns: 1fr;
  }

  .content-text {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .content-text a {
    word-break: break-word;
    hyphens: auto;
  }

  .content-area {
    overflow-x: hidden;
  }

  .table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .info-table {
    min-width: 100%;
    font-size: 0.82rem;
  }

  .info-table td {
    padding: 8px 10px;
  }

  .info-table td:first-child {
    width: auto;
    white-space: normal;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 360px;
  }
  .demo-iframe {
    height: 320px;
  }
  .bottom-widget {
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px 12px;
  }

  .content-text h1 {
    font-size: 1.4rem;
    word-wrap: break-word;
  }

  .content-text h2 {
    font-size: 1.15rem;
    word-wrap: break-word;
  }

  .content-text p,
  .content-text ul,
  .content-text ol {
    font-size: 0.88rem;
  }

  .casino-card {
    flex-direction: column;
    text-align: center;
  }

  .casino-card-logo {
    margin: 0 auto;
  }
}
