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

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

:root {
  --bg-main: #0d102a;
  --bg-nav: #1b1f3b;
  --bg-card: #161a38;
  --bg-card2: #12162e;
  --btn-pink: #ff3ea5;
  --btn-green: #00e676;
  --btn-pink-hover: #e8338e;
  --btn-green-hover: #00c962;
  --text-primary: #f0f0ff;
  --text-secondary: #a0a8d0;
  --text-muted: #6b729a;
  --accent: #ff3ea5;
  --accent2: #00e676;
  --border: #252a52;
  --border2: #2e3460;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
  --shadow-card: 0 2px 16px rgba(0, 0, 0, 0.35);
  --transition: 0.22s ease;
}

html {
  scroll-behavior: smooth;
  background: #0d102a;
}
body {
  font-family: "Montserrat", sans-serif;
  background: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--btn-pink);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--btn-pink-hover);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.25;
  font-weight: 700;
  color: var(--text-primary);
}
p {
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}
p:last-child {
  margin-bottom: 0;
}
ul,
ol {
  padding-left: 1.4rem;
  color: var(--text-secondary);
}
li {
  margin-bottom: 0.35rem;
}

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

.site-header {
  background: var(--bg-nav);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid var(--border2);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.header-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}
.header-logo-text {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--btn-pink);
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.header-nav a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 500;
  transition:
    background var(--transition),
    color var(--transition);
  white-space: nowrap;
}
.header-nav a svg {
  flex-shrink: 0;
}
.header-nav a:hover,
.header-nav a.active {
  background: rgba(255, 62, 165, 0.12);
  color: var(--btn-pink);
}
.header-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.online-count {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--text-muted);
  white-space: nowrap;
  padding: 5px 10px;
  background: rgba(0, 230, 118, 0.08);
  border: 1px solid rgba(0, 230, 118, 0.2);
  border-radius: 20px;
}
.online-dot {
  width: 7px;
  height: 7px;
  background: var(--btn-green);
  border-radius: 50%;
  animation: pulse-dot 1.6s infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: none;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition:
    background var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
  white-space: nowrap;
  text-decoration: none !important;
  line-height: 1;
}
.btn-sm {
  padding: 7px 14px;
  font-size: 0.78rem;
}
.btn-md {
  padding: 10px 20px;
  font-size: 0.88rem;
}
.btn-lg {
  padding: 14px 32px;
  font-size: 1rem;
}
.btn-xl {
  padding: 17px 40px;
  font-size: 1.1rem;
  font-weight: 800;
}
.btn-pink {
  background: var(--btn-pink);
  color: #fff;
}
.btn-pink:hover {
  background: var(--btn-pink-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 62, 165, 0.4);
  color: #fff;
}
.btn-green {
  background: var(--btn-green);
  color: #0d102a;
}
.btn-green:hover {
  background: var(--btn-green-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 230, 118, 0.4);
  color: #0d102a;
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--btn-pink);
  color: var(--btn-pink);
}
.btn-outline:hover {
  background: var(--btn-pink);
  color: #fff;
}

.lang-dropdown {
  position: relative;
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 600;
  transition: background var(--transition);
}
.lang-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
}
.lang-flag {
  font-size: 1rem;
}
.lang-list {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--bg-nav);
  border: 1px solid var(--border2);
  border-radius: var(--radius-sm);
  min-width: 140px;
  box-shadow: var(--shadow);
  z-index: 200;
  display: none;
  flex-direction: column;
  overflow: hidden;
}
.lang-list.open {
  display: flex;
}
.lang-list a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 500;
  transition:
    background var(--transition),
    color var(--transition);
}
.lang-list a:hover {
  background: rgba(255, 62, 165, 0.1);
  color: var(--text-primary);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition:
    transform 0.3s,
    opacity 0.3s;
}
.burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 61px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-nav);
  z-index: 999;
  flex-direction: column;
  padding: 20px 16px;
  gap: 8px;
  overflow-y: auto;
  border-top: 1px solid var(--border2);
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  transition:
    background var(--transition),
    color var(--transition);
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:hover {
  background: rgba(255, 62, 165, 0.1);
  color: var(--text-primary);
}
.mobile-menu-btns {
  display: flex;
  gap: 10px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.mobile-menu-btns .btn {
  flex: 1;
  min-width: 100px;
  justify-content: center;
}

.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0d102a;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a0a2e 0%, #0d102a 50%, #0a1f1a 100%);
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  background-image: url("/sban.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(13, 16, 42, 0.92) 0%,
    rgba(13, 16, 42, 0.6) 60%,
    rgba(13, 16, 42, 0.2) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 16px;
  display: flex;
  align-items: center;
  gap: 32px;
  width: 100%;
}
.hero-text {
  max-width: 620px;
  flex: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 62, 165, 0.15);
  border: 1px solid rgba(255, 62, 165, 0.35);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--btn-pink);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.hero h1 {
  font-size: clamp(1.7rem, 4vw, 2.9rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
  color: #fff;
}
.hero h1 span {
  color: var(--btn-pink);
}
.hero-desc {
  font-size: 1rem;
  color: rgba(160, 168, 208, 0.9);
  margin-bottom: 28px;
  max-width: 520px;
  line-height: 1.65;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 24px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
}
.hero-stat-val {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--btn-green);
}
.hero-stat-lbl {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.hero-img {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img img {
  width: 280px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(255, 62, 165, 0.25);
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.section {
  padding: 56px 0;
}
.section-alt {
  background: rgba(255, 255, 255, 0.022);
}
.section-title {
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 8px;
  color: #fff;
}
.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 36px;
}
.section-head {
  margin-bottom: 36px;
}
.divider {
  width: 48px;
  height: 3px;
  background: var(--btn-pink);
  border-radius: 2px;
  margin: 12px 0 24px;
}

.toc-block {
  background: var(--bg-card);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 28px 32px;
  box-shadow: var(--shadow-card);
}
.toc-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}
.toc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 8px;
}
.toc-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid transparent;
  color: var(--text-secondary);
  font-size: 0.84rem;
  font-weight: 500;
  transition: all var(--transition);
  text-decoration: none !important;
}
.toc-item svg {
  flex-shrink: 0;
  color: var(--btn-pink);
}
.toc-item:hover {
  background: rgba(255, 62, 165, 0.1);
  border-color: rgba(255, 62, 165, 0.25);
  color: var(--text-primary);
}

.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-card);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.bonus-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--btn-pink), #a020e8);
}
.bonus-card:nth-child(2)::before {
  background: linear-gradient(90deg, var(--btn-green), #0af);
}
.bonus-card:nth-child(3)::before {
  background: linear-gradient(90deg, #f5a623, var(--btn-pink));
}
.bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}
.bonus-casino-logo {
  height: 36px;
  object-fit: contain;
  margin-bottom: 4px;
}
.bonus-casino-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}
.bonus-amount {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--btn-green);
  line-height: 1;
}
.bonus-amount span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}
.bonus-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bonus-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-secondary);
}
.bonus-feature svg {
  color: var(--btn-green);
  flex-shrink: 0;
}
.bonus-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 62, 165, 0.15);
  border: 1px solid rgba(255, 62, 165, 0.3);
  color: var(--btn-pink);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.bonus-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.bonus-rating svg {
  color: #ffd700;
}
.bonus-card-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bonus-info {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
}

.demo-block {
  background: var(--bg-card);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}
.demo-header {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--border);
}
.demo-info {
  display: flex;
  align-items: center;
  gap: 14px;
}
.demo-logo {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.05);
  padding: 4px;
}
.demo-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}
.demo-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 3px;
}
.demo-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.demo-wrapper {
  position: relative;
  background: #000;
  aspect-ratio: 16/9;
}
.demo-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.demo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0d102a, #1b1f3b);
  gap: 16px;
  cursor: pointer;
}
.demo-placeholder-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 62, 165, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 62, 165, 0.35);
  transition:
    transform 0.3s,
    background 0.3s;
}
.demo-placeholder:hover .demo-placeholder-icon {
  transform: scale(1.08);
  background: rgba(255, 62, 165, 0.25);
}
.demo-placeholder-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
.demo-placeholder-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ===== STRATEGIES ===== */
.strategies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.strategy-card {
  background: var(--bg-card);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.strategy-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}
.strategy-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: linear-gradient(135deg, #1b1f3b, #0d102a);
}
.strategy-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.strategy-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(0, 230, 118, 0.1);
  border: 1px solid rgba(0, 230, 118, 0.25);
  color: var(--btn-green);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.strategy-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}
.strategy-desc {
  font-size: 0.83rem;
  color: var(--text-secondary);
  line-height: 1.55;
  flex: 1;
}
.strategy-card-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 40px;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-card);
}
.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border2);
  flex-shrink: 0;
  background: rgba(255, 62, 165, 0.15);
}
.review-user {
  flex: 1;
}
.review-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
}
.review-date {
  font-size: 0.72rem;
  color: var(--text-muted);
}
.review-stars {
  display: flex;
  gap: 3px;
}
.review-stars svg {
  color: #ffd700;
}
.review-text {
  font-size: 0.83rem;
  color: var(--text-secondary);
  line-height: 1.55;
}
.review-form-block {
  background: var(--bg-card);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 28px 32px;
  max-width: 560px;
}
.review-form-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
}
.form-input,
.form-textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border2);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  color: var(--text-primary);
  font-family: "Montserrat", sans-serif;
  font-size: 0.88rem;
  transition:
    border-color var(--transition),
    background var(--transition);
  outline: none;
  width: 100%;
}
.form-input:focus,
.form-textarea:focus {
  border-color: var(--btn-pink);
  background: rgba(255, 255, 255, 0.07);
}
.form-textarea {
  min-height: 100px;
  resize: vertical;
}
.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  background: rgba(0, 230, 118, 0.1);
  border: 1px solid rgba(0, 230, 118, 0.3);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--btn-green);
  font-size: 0.88rem;
  font-weight: 600;
  margin-top: 12px;
}
.form-success.show {
  display: flex;
}

/* ===== CONTENT AREA ===== */
.content-block {
  background: var(--bg-card);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-card);
}
.content-block h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin: 24px 0 10px;
}
.content-block h2:first-child {
  margin-top: 0;
}
.content-block h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 18px 0 8px;
}
.content-block p {
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 0.8rem;
}
.content-block ul,
.content-block ol {
  color: var(--text-secondary);
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
}
.content-block li {
  margin-bottom: 0.4rem;
  line-height: 1.55;
}
.content-block a {
  color: var(--btn-pink);
}
.content-block a:hover {
  color: var(--btn-pink-hover);
}
.content-block strong,
.content-block b {
  color: var(--text-primary);
  font-weight: 700;
}
.content-block table {
  width: 100%;
  border-collapse: collapse;
  margin: 14px 0;
  font-size: 0.85rem;
  overflow-x: auto;
  display: block;
}
.content-block table th {
  background: rgba(255, 62, 165, 0.12);
  color: var(--btn-pink);
  font-weight: 700;
  padding: 10px 14px;
  text-align: left;
  border: 1px solid var(--border2);
  white-space: nowrap;
}
.content-block table td {
  padding: 9px 14px;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  vertical-align: top;
}
.content-block table tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.025);
}
.content-block blockquote {
  border-left: 3px solid var(--btn-pink);
  padding: 10px 16px;
  background: rgba(255, 62, 165, 0.06);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 14px 0;
  color: var(--text-secondary);
  font-style: italic;
}
.content-block img {
  border-radius: var(--radius-sm);
  margin: 12px 0;
}
.content-block hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 20px 0;
}

/* ===== FAQ ===== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border2);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open {
  border-color: rgba(255, 62, 165, 0.4);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  cursor: pointer;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
  user-select: none;
}
.faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 62, 165, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    transform 0.3s,
    background 0.3s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: rgba(255, 62, 165, 0.25);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.3s;
}
.faq-item.open .faq-answer {
  max-height: 600px;
  padding-bottom: 16px;
}
.faq-answer p {
  padding: 0 20px;
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== GAME INFO TABLE ===== */
.game-info-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.game-info-table tr {
  display: flex;
  border-bottom: 1px solid var(--border);
}
.game-info-table tr:last-child {
  border-bottom: none;
}
.game-info-table td {
  padding: 11px 16px;
  font-size: 0.86rem;
  flex: 1;
}
.game-info-table td:first-child {
  color: var(--text-muted);
  font-weight: 600;
  background: rgba(255, 255, 255, 0.025);
  border-right: 1px solid var(--border);
  flex: 0 0 180px;
}
.game-info-table td:last-child {
  color: var(--text-primary);
}
.game-info-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  overflow: hidden;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg-nav);
  border-top: 1px solid var(--border2);
  margin-top: auto;
}
.footer-main {
  padding: 40px 0 28px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 16px 28px;
}
.footer-brand {
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-logo img {
  height: 36px;
  object-fit: contain;
}
.footer-logo-text {
  font-size: 1rem;
  font-weight: 800;
  color: var(--btn-pink);
}
.footer-brand p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 280px;
}
.footer-heading {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-links a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-links a:hover {
  color: var(--btn-pink);
}
.footer-payments {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.payments-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.payment-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--border2);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-secondary);
  white-space: nowrap;
}
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(0, 230, 118, 0.06);
  border: 1px solid rgba(0, 230, 118, 0.2);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--btn-green);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 16px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copyright {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.footer-legal {
  font-size: 0.72rem;
  color: var(--text-muted);
  max-width: 680px;
  line-height: 1.5;
}
.provider-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.provider-badge img {
  height: 24px;
  object-fit: contain;
  filter: brightness(0.7);
  transition: filter 0.2s;
}
.provider-badge:hover img {
  filter: brightness(1);
}

/* ===== WIDGET ===== */
.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, #1b1f3b, #161a38);
  border-top: 1px solid rgba(255, 62, 165, 0.35);
  z-index: 998;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5);
}
.widget-text {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
.widget-text span {
  color: var(--btn-green);
}
.widget-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  padding: 4px;
  display: flex;
  align-items: center;
  line-height: 1;
  transition: color 0.2s;
  flex-shrink: 0;
}
.widget-close:hover {
  color: #fff;
}

/* ===== GAME SPECS ===== */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.spec-card {
  background: var(--bg-card);
  border: 1px solid var(--border2);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
}
.spec-icon {
  font-size: 1.5rem;
  margin-bottom: 6px;
}
.spec-val {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--btn-green);
}
.spec-lbl {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

/* ===== PROS CONS ===== */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.pros-block {
  background: rgba(0, 230, 118, 0.06);
  border: 1px solid rgba(0, 230, 118, 0.2);
  border-radius: var(--radius);
  padding: 20px;
}
.cons-block {
  background: rgba(255, 62, 165, 0.06);
  border: 1px solid rgba(255, 62, 165, 0.2);
  border-radius: var(--radius);
  padding: 20px;
}
.pc-title {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pros-block .pc-title {
  color: var(--btn-green);
}
.cons-block .pc-title {
  color: var(--btn-pink);
}
.pc-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pc-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.83rem;
  color: var(--text-secondary);
}
.pc-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===== AUTHOR ===== */
.author-block {
  background: var(--bg-card);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  box-shadow: var(--shadow-card);
}
.author-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border2);
  flex-shrink: 0;
  background: rgba(255, 62, 165, 0.15);
}
.author-info {
  flex: 1;
}
.author-name {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}
.author-role {
  font-size: 0.78rem;
  color: var(--btn-pink);
  font-weight: 600;
  margin-bottom: 8px;
}
.author-bio {
  font-size: 0.83rem;
  color: var(--text-secondary);
  line-height: 1.55;
}
.author-links {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.author-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 62, 165, 0.1);
  border: 1px solid rgba(255, 62, 165, 0.25);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--btn-pink);
  transition: background 0.2s;
}
.author-link:hover {
  background: rgba(255, 62, 165, 0.2);
  color: var(--btn-pink);
}

/* ===== SLIDER ===== */
.slider-wrap {
  position: relative;
  overflow: hidden;
}
.slider-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
  will-change: transform;
}
.slider-track .bonus-card {
  min-width: 300px;
  flex: 0 0 300px;
}
.slider-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}
.slider-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 62, 165, 0.12);
  border: 1px solid rgba(255, 62, 165, 0.3);
  color: var(--btn-pink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.slider-btn:hover {
  background: rgba(255, 62, 165, 0.25);
}
.slider-dots {
  display: flex;
  gap: 6px;
  align-items: center;
  margin: 0 8px;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border2);
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
}
.slider-dot.active {
  background: var(--btn-pink);
  transform: scale(1.3);
}

/* ===== SIMILAR GAMES ===== */
.similar-games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.sim-game-card {
  background: var(--bg-card);
  border: 1px solid var(--border2);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.sim-game-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
}
.sim-game-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: #1b1f3b;
}
.sim-game-body {
  padding: 12px;
}
.sim-game-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}
.sim-game-provider {
  font-size: 0.73rem;
  color: var(--text-muted);
}

/* ===== UTILITY ===== */
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.mt-1 {
  margin-top: 8px;
}
.mt-2 {
  margin-top: 16px;
}
.mt-3 {
  margin-top: 24px;
}
.mt-4 {
  margin-top: 32px;
}
.mb-1 {
  margin-bottom: 8px;
}
.mb-2 {
  margin-bottom: 16px;
}
.mb-3 {
  margin-bottom: 24px;
}
.mb-4 {
  margin-bottom: 32px;
}
.gap-2 {
  gap: 8px;
}
.gap-3 {
  gap: 12px;
}
.flex {
  display: flex;
}
.flex-col {
  flex-direction: column;
}
.items-center {
  align-items: center;
}
.justify-between {
  justify-content: space-between;
}
.flex-wrap {
  flex-wrap: wrap;
}

/* ===== TECHNICAL PAGES ===== */
.tech-page-content {
  background: var(--bg-card);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-card);
  max-width: 860px;
  margin: 0 auto;
}
.tech-page-content h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin: 28px 0 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.tech-page-content h2:first-child {
  margin-top: 0;
}
.tech-page-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 16px 0 6px;
}
.tech-page-content p {
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}
.tech-page-content ul,
.tech-page-content ol {
  color: var(--text-secondary);
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
}
.tech-page-content li {
  margin-bottom: 0.4rem;
}
.tech-page-content strong {
  color: var(--text-primary);
  font-weight: 700;
}
.tech-page-content a {
  color: var(--btn-pink);
}
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.breadcrumbs a {
  color: var(--text-muted);
  transition: color 0.2s;
}
.breadcrumbs a:hover {
  color: var(--btn-pink);
}
.breadcrumbs span {
  color: var(--text-muted);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.anim-fade-up {
  animation: fadeInUp 0.55s ease both;
}
.anim-fade {
  animation: fadeIn 0.55s ease both;
}
.anim-delay-1 {
  animation-delay: 0.1s;
}
.anim-delay-2 {
  animation-delay: 0.2s;
}
.anim-delay-3 {
  animation-delay: 0.3s;
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
  background: var(--border2);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--btn-pink);
}

.xr8k2f {
  display: none !important;
}
.q9p3tz {
  visibility: hidden;
}
.bv71ms,
.cw04lr {
  display: none !important;
}
.zx29qh {
  pointer-events: none;
  opacity: 0;
}
.nj5k8d {
  font-size: 0;
  line-height: 0;
  height: 0;
  overflow: hidden;
}
.wp-caption,
.wp-caption-text,
.screen-reader-text,
.gallery-caption {
  display: none !important;
}
.alignnone,
.aligncenter,
.alignleft,
.alignright,
.wp-block-image {
  display: none !important;
}
.x3w9pq1 {
  width: 0;
  height: 0;
  overflow: hidden;
  position: absolute;
}

@media (max-width: 1024px) {
  .bonuses-grid,
  .strategies-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .specs-grid {
    grid-template-columns: repeat(2, 2fr);
  }
  .similar-games-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .header-nav {
    display: none;
  }
  .burger {
    display: flex;
  }
  .lang-dropdown {
    display: none;
  }
  .hero-content {
    flex-direction: column;
    padding: 36px 16px;
  }
  .hero-img {
    display: none;
  }
  .hero h1 {
    font-size: 1.65rem;
  }
  .bonuses-grid,
  .strategies-grid,
  .reviews-grid,
  .pros-cons,
  .similar-games-grid,
  .specs-grid {
    grid-template-columns: 1fr;
  }
  .footer-main {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .author-block {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .demo-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .game-info-table td:first-child {
    flex: 0 0 130px;
  }
  .toc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .review-form-block {
    padding: 20px 16px;
  }
  .tech-page-content {
    padding: 20px 16px;
  }
  .content-block {
    padding: 20px 16px;
  }
}
@media (max-width: 480px) {
  .hero-btns {
    flex-direction: column;
  }
  .hero-btns .btn {
    width: 100%;
    justify-content: center;
  }
  .toc-grid {
    grid-template-columns: 1fr;
  }
  .sticky-widget {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .widget-close {
    position: absolute;
    top: 8px;
    right: 12px;
  }
}

@media (max-width: 768px) {
  .header-nav {
    display: none;
  }
  .burger {
    display: flex;
  }
  .lang-dropdown {
    display: none;
  }
  .header-right .btn {
    display: none;
  }
  .hero-content {
    flex-direction: column;
    padding: 36px 16px;
  }
  .hero-img {
    display: none;
  }
  .hero h1 {
    font-size: 1.65rem;
  }
  .bonuses-grid,
  .strategies-grid,
  .reviews-grid,
  .pros-cons,
  .similar-games-grid,
  .specs-grid {
    grid-template-columns: 1fr;
  }
  .footer-main {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .author-block {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .demo-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .game-info-table td:first-child {
    flex: 0 0 130px;
  }
  .toc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .review-form-block {
    padding: 20px 16px;
  }
  .tech-page-content {
    padding: 20px 16px;
  }
  .content-block {
    padding: 20px 16px;
  }
}
