:root {
  --color-header: #fe87d7;
  --color-header-dark: #fd6ac8;
  --color-btn-green: #73d245;
  --color-btn-green-hover: #5fbb33;
  --color-btn-orange: #ff8603;
  --color-btn-orange-hover: #e67600;
  --color-bg: #07a3fe;
  --color-bg-dark: #0590e0;
  --color-white: #ffffff;
  --color-dark: #0a1628;
  --color-text-on-header: #1a0a2e;
  --color-text-on-bg: #ffffff;
  --color-card-bg: rgba(255, 255, 255, 0.12);
  --color-card-border: rgba(255, 255, 255, 0.25);
  --color-card-bg-solid: #0b7ec0;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
  --shadow-card: 0 2px 16px rgba(0, 0, 0, 0.14);
  --transition: 0.25s ease;
  --font-main: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background: var(--color-bg);
  color: var(--color-text-on-bg);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

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

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

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

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

.header {
  background: var(--color-header);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(254, 135, 215, 0.45);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 10px 20px;
}

.header-logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.header-logo img {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.header-logo .logo-text {
  font-weight: 800;
  font-size: 18px;
  color: var(--color-text-on-header);
  line-height: 1.2;
  white-space: nowrap;
}

.header-logo .logo-sub {
  font-size: 11px;
  color: #5e2a7a;
  font-weight: 500;
}

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

.header-nav a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--color-text-on-header);
  font-size: 14px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition:
    background var(--transition),
    color var(--transition);
  white-space: nowrap;
}

.header-nav a:hover {
  background: rgba(0, 0, 0, 0.1);
  color: #1a0a2e;
}

.header-nav a svg {
  flex-shrink: 0;
}

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

.online-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.12);
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-on-header);
  white-space: nowrap;
}

.online-dot {
  width: 8px;
  height: 8px;
  background: #73d245;
  border-radius: 50%;
  animation: pulse 1.8s infinite;
  flex-shrink: 0;
}

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

.lang-dropdown {
  position: relative;
}

.lang-btn {
  background: rgba(0, 0, 0, 0.12);
  border: none;
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-on-header);
  transition: background var(--transition);
}

.lang-btn:hover {
  background: rgba(0, 0, 0, 0.2);
}

.lang-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  min-width: 130px;
  z-index: 100;
  overflow: hidden;
}

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

.lang-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  color: #1a0a2e;
  font-size: 14px;
  font-weight: 500;
  transition: background var(--transition);
}

.lang-menu a:hover {
  background: #f5f0ff;
}

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

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

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.btn:active {
  transform: translateY(0);
}

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

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

.btn--demo {
  background: var(--color-btn-green);
  color: #0a1628;
}
.btn--demo:hover {
  background: var(--color-btn-green-hover);
  color: #0a1628;
}

.btn--money {
  background: var(--color-btn-orange);
  color: #fff;
}
.btn--money:hover {
  background: var(--color-btn-orange-hover);
}

.btn--lg {
  padding: 14px 32px;
  font-size: 17px;
  border-radius: var(--radius-md);
}

.btn--xl {
  padding: 18px 44px;
  font-size: 20px;
  border-radius: var(--radius-lg);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.burger:hover {
  background: rgba(0, 0, 0, 0.1);
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text-on-header);
  border-radius: 2px;
  transition:
    transform 0.3s,
    opacity 0.3s;
}
.burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  background: var(--color-header-dark);
  padding: 16px 20px;
  flex-direction: column;
  gap: 6px;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text-on-header);
  font-size: 15px;
  font-weight: 600;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background var(--transition);
}
.mobile-menu a:hover {
  background: rgba(0, 0, 0, 0.12);
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(7, 20, 60, 0.75) 0%,
    rgba(254, 135, 215, 0.3) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 20px;
  max-width: 760px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-btn-orange);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero h1 {
  font-size: clamp(32px, 6vw, 58px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
  margin-bottom: 16px;
  text-balance: balance;
}

.hero-subtitle {
  font-size: clamp(16px, 2.5vw, 20px);
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 32px;
  line-height: 1.55;
}

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

.hero-stats {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 36px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-md);
  padding: 14px 22px;
  backdrop-filter: blur(6px);
}

.hero-stat strong {
  display: block;
  font-size: 24px;
  font-weight: 900;
  color: var(--color-btn-green);
  line-height: 1;
}

.hero-stat span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 4px;
  display: block;
}

.main-content {
  flex: 1;
}

.section {
  padding: 28px 0;
}

.section-title {
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 800;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
  line-height: 1.25;
}

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

.breadcrumbs {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.breadcrumbs a,
.breadcrumbs span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}
.breadcrumbs a {
  color: var(--color-btn-green);
}
.breadcrumbs a:hover {
  color: #fff;
}
.breadcrumbs .sep {
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
}
.breadcrumbs .current {
  color: #fff;
  font-weight: 600;
}

.video-block {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 8px;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

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

.video-tabs {
  display: flex;
  gap: 8px;
  padding: 14px 16px 0;
  flex-wrap: wrap;
}

.video-tab {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.video-tab.active,
.video-tab:hover {
  background: var(--color-btn-orange);
  color: #fff;
  border-color: var(--color-btn-orange);
}

.video-block-inner {
  padding: 16px;
}

.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.bonus-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  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: 4px;
  background: linear-gradient(
    90deg,
    var(--color-btn-orange),
    var(--color-header)
  );
}

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

.bonus-card-badge {
  display: inline-block;
  background: var(--color-btn-orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.bonus-card-casino {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bonus-card-amount {
  font-size: 30px;
  font-weight: 900;
  color: var(--color-btn-green);
  line-height: 1;
  margin-bottom: 6px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.bonus-card-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 16px;
  line-height: 1.5;
}

.bonus-card-terms {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 16px;
}

.demo-block {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.demo-header {
  background: linear-gradient(
    90deg,
    rgba(254, 135, 215, 0.25),
    rgba(255, 134, 3, 0.2)
  );
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.demo-title {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
}

.demo-info {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.demo-info-item {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
}

.demo-info-item strong {
  color: #fff;
}

.demo-iframe-wrap {
  position: relative;
  padding-bottom: 60%;
  height: 0;
  overflow: hidden;
  background: #000;
}

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

.demo-footer {
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  background: rgba(0, 0, 0, 0.2);
}

.demo-disclaimer {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 500px;
  line-height: 1.5;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.review-card {
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition);
}

.review-card:hover {
  transform: translateY(-3px);
}

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

.review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
  color: #fff;
  font-family: var(--font-main);
  text-transform: uppercase;
}

.review-meta {
  flex: 1;
  min-width: 0;
}

.review-name {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.review-date {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}

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

.review-stars svg {
  color: #ffd700;
}

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

/* ========== REVIEW FORM ========== */
.review-form-wrap {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  max-width: 600px;
}

.review-form-title {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
}

.form-field {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.form-field input,
.form-field textarea {
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-family: var(--font-main);
  font-size: 15px;
  color: #fff;
  outline: none;
  transition:
    border-color var(--transition),
    background var(--transition);
  width: 100%;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--color-btn-green);
  background: rgba(255, 255, 255, 0.17);
}

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

.form-success {
  display: none;
  background: rgba(115, 210, 69, 0.18);
  border: 1px solid var(--color-btn-green);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: #b8ffb8;
  font-weight: 600;
  font-size: 15px;
  margin-top: 12px;
}

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

.content-block {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 28px 28px;
  box-shadow: var(--shadow-card);
}

.content-block h2 {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-top: 24px;
  margin-bottom: 12px;
  line-height: 1.3;
}

.content-block h3 {
  font-size: 18px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  margin-top: 18px;
  margin-bottom: 10px;
}

.content-block h4 {
  font-size: 16px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 14px;
  margin-bottom: 8px;
}

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

.content-block ul,
.content-block ol {
  margin: 12px 0 16px 22px;
}

.content-block li {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 6px;
}

.content-block a {
  color: var(--color-btn-green);
  text-decoration: underline;
}

.content-block a:hover {
  color: #fff;
}

.content-block table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px auto;
  overflow-x: auto;
  display: block;
}

.content-block table th {
  background: rgba(254, 135, 215, 0.3);
  color: #fff;
  font-weight: 700;
  padding: 10px 14px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.2);
  white-space: nowrap;
}

.content-block table td {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  vertical-align: top;
}

.content-block table tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.06);
}

.game-info-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  margin-bottom: 8px;
}

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

.game-info-table tr:nth-child(odd) td:first-child {
  background: rgba(254, 135, 215, 0.15);
}

.game-info-table td {
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  vertical-align: middle;
}

.game-info-table td:first-child {
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  width: 40%;
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 8px;
}

.pros-block,
.cons-block {
  border-radius: var(--radius-md);
  padding: 20px;
}

.pros-block {
  background: rgba(115, 210, 69, 0.12);
  border: 1px solid rgba(115, 210, 69, 0.3);
}

.cons-block {
  background: rgba(255, 80, 80, 0.1);
  border: 1px solid rgba(255, 80, 80, 0.25);
}

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

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

.pros-list,
.cons-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pros-list li,
.cons-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
  padding: 5px 0;
  line-height: 1.5;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.pros-list li:last-child,
.cons-list li:last-child {
  border-bottom: none;
}

.pros-list li::before {
  content: "✓";
  color: var(--color-btn-green);
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}

.cons-list li::before {
  content: "✗";
  color: #ff7070;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  gap: 12px;
  transition: background var(--transition);
  user-select: none;
}

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

.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  color: var(--color-btn-green);
  transition: transform 0.3s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 20px 16px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

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

/* ========== AUTHOR ========== */
.author-block {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  box-shadow: var(--shadow-card);
}

.author-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--color-header),
    var(--color-btn-orange)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
  text-transform: uppercase;
  font-family: var(--font-main);
}

.author-info {
  flex: 1;
}

.author-name {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.author-role {
  font-size: 13px;
  color: var(--color-btn-orange);
  font-weight: 600;
  margin-bottom: 10px;
}

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

.author-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-btn-green);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.author-link:hover {
  color: #fff;
}

/* ========== SIMILAR GAMES ========== */
.similar-games {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.game-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 18px 14px;
  text-align: center;
  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.25);
}

.game-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: linear-gradient(
    135deg,
    var(--color-header),
    var(--color-btn-orange)
  );
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.game-card-name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1.3;
}

.game-card-provider {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}

.game-card-rtp {
  font-size: 12px;
  color: var(--color-btn-green);
  font-weight: 700;
  margin-top: 8px;
}

/* ========== FOOTER ========== */
footer {
  background: var(--color-header);
  margin-top: 40px;
  box-shadow: 0 -2px 20px rgba(254, 135, 215, 0.35);
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-brand .logo-text {
  font-size: 20px;
  font-weight: 900;
  color: var(--color-text-on-header);
  margin-bottom: 8px;
  display: block;
}

.footer-brand p {
  font-size: 13px;
  color: #5e2a7a;
  line-height: 1.6;
  margin-bottom: 14px;
}

.footer-col-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--color-text-on-header);
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin-bottom: 12px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.footer-links a {
  font-size: 14px;
  color: #5e2a7a;
  text-decoration: none;
  transition: color var(--transition);
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--color-text-on-header);
}

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

.footer-payments {
  margin-bottom: 20px;
}

.footer-payments-title {
  font-size: 13px;
  font-weight: 700;
  color: #5e2a7a;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.payment-badge {
  background: rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-text-on-header);
  white-space: nowrap;
}

.trust-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 20px;
}

.trust-badge {
  background: rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  color: var(--color-text-on-header);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.footer-provider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-provider-label {
  font-size: 12px;
  color: #5e2a7a;
  font-weight: 600;
}

.footer-provider-name {
  font-size: 14px;
  font-weight: 800;
  color: var(--color-text-on-header);
}

.footer-copyright {
  text-align: center;
  padding: 16px 0 8px;
}

.footer-copyright p {
  font-size: 12px;
  color: #7a3a8a;
  line-height: 1.6;
  margin-bottom: 4px;
}

.footer-legal {
  font-size: 11px;
  color: rgba(110, 42, 122, 0.7);
  text-align: center;
  line-height: 1.6;
  margin-top: 8px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* ========== STICKY WIDGET ========== */
.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: linear-gradient(90deg, #1a0a2e, #3d1060);
  border-top: 2px solid var(--color-header);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.35);
}

.widget-text {
  flex: 1;
  min-width: 0;
}

.widget-title {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.widget-subtitle {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 2px;
}

.widget-bonus {
  background: rgba(115, 210, 69, 0.18);
  border: 1px solid var(--color-btn-green);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  text-align: center;
}

.widget-bonus-amount {
  font-size: 16px;
  font-weight: 900;
  color: var(--color-btn-green);
  line-height: 1;
}

.widget-bonus-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
}

.widget-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.widget-close {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 18px;
  cursor: pointer;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  flex-shrink: 0;
}

.widget-close:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* ========== SLIDER ========== */
.slider-wrap {
  position: relative;
  overflow: hidden;
}

.slider-track {
  display: flex;
  gap: 16px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 14px;
}

.slider-btn {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
  font-size: 18px;
}

.slider-btn:hover {
  background: var(--color-btn-orange);
  border-color: var(--color-btn-orange);
}

/* ========== TECHNICAL PAGES ========== */
.tech-content {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin: 24px 0;
  box-shadow: var(--shadow-card);
}

.tech-content h2 {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-top: 28px;
  margin-bottom: 12px;
  line-height: 1.3;
}

.tech-content h2:first-child {
  margin-top: 0;
}

.tech-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  margin-top: 20px;
  margin-bottom: 10px;
}

.tech-content p {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 14px;
}

.tech-content ul,
.tech-content ol {
  margin: 12px 0 16px 24px;
}

.tech-content li {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 7px;
}

/* ========== UTILITIES ========== */
.mt-0 {
  margin-top: 0;
}
.mb-16 {
  margin-bottom: 16px;
}
.mb-24 {
  margin-bottom: 24px;
}
.mb-32 {
  margin-bottom: 32px;
}
.text-center {
  text-align: center;
}
.d-none {
  display: none;
}

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

.fade-in {
  animation: fadeInUp 0.55s ease forwards;
}
.fade-in-delay-1 {
  animation-delay: 0.1s;
  opacity: 0;
  animation-fill-mode: forwards;
  animation-name: fadeInUp;
  animation-duration: 0.55s;
  animation-timing-function: ease;
}
.fade-in-delay-2 {
  animation-delay: 0.2s;
  opacity: 0;
  animation-fill-mode: forwards;
  animation-name: fadeInUp;
  animation-duration: 0.55s;
  animation-timing-function: ease;
}
.fade-in-delay-3 {
  animation-delay: 0.3s;
  opacity: 0;
  animation-fill-mode: forwards;
  animation-name: fadeInUp;
  animation-duration: 0.55s;
  animation-timing-function: ease;
}

.wp-block-group {
  display: block;
}
.wp-block-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.entry-content {
  display: block;
}
.alignwide {
  max-width: 100%;
}
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.x7f2a9b {
  pointer-events: none;
  opacity: 0;
  position: absolute;
  width: 0;
  height: 0;
}
.kq83m1z {
  display: none;
  visibility: hidden;
}
.r5p0n9c {
  overflow: hidden;
  max-height: 0;
}
.j2t7w4s,
.bv91kx6,
.d4l8m2q {
  display: none !important;
}

@media (max-width: 1024px) {
  .bonuses-grid {
    grid-template-columns: 1fr 1fr;
  }
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }
  .similar-games {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .header-nav {
    display: none;
  }
  .burger {
    display: flex;
  }
}

@media (max-width: 768px) {
  .header-inner {
    grid-template-columns: auto 1fr auto auto;
  }
  .bonuses-grid {
    grid-template-columns: 1fr;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .pros-cons {
    grid-template-columns: 1fr;
  }
  .similar-games {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .hero {
    min-height: 380px;
  }
  .hero-stats {
    gap: 12px;
  }
  .sticky-widget {
    flex-wrap: wrap;
  }
  .author-block {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .similar-games {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .btn--xl {
    padding: 14px 28px;
    font-size: 17px;
  }
  .content-block,
  .tech-content {
    padding: 18px 14px;
  }
  .review-form-wrap {
    padding: 18px 14px;
  }
  .demo-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .demo-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .widget-bonus {
    display: none;
  }
}
