:root {
  --color-header: #fe87d7;
  --color-header-dark: #fd6fca;
  --color-btn-green: #73d245;
  --color-btn-green-hover: #5fb835;
  --color-btn-orange: #ff8603;
  --color-btn-orange-hover: #e07500;
  --color-bg: #07a3fe;
  --color-bg-dark: #0590e0;
  --color-bg-card: #0594e8;
  --color-white: #ffffff;
  --color-text: #ffffff;
  --color-text-dark: #1a1a2e;
  --color-text-muted: rgba(255, 255, 255, 0.75);
  --color-border: rgba(255, 255, 255, 0.2);
  --color-footer: #fe87d7;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --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;
  background: var(--color-bg);
  overflow-x: scroll;
}

body {
  font-family: var(--font-main);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  min-height: 100vh;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.25;
  font-weight: 700;
}

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

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

.box {
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  text-wrap: balance;
}
.section-subtitle {
  color: var(--color-text-muted);
  font-size: 1rem;
  margin-bottom: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-family: var(--font-main);
  font-size: 0.97rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition:
    background var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
}
.btn:active {
  transform: translateY(0);
}

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

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

.btn--lg {
  padding: 16px 36px;
  font-size: 1.1rem;
  border-radius: var(--radius-lg);
}
.btn--sm {
  padding: 8px 16px;
  font-size: 0.88rem;
  border-radius: var(--radius-sm);
}
.btn--full {
  width: 100%;
  justify-content: center;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-header {
  background: var(--color-header);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

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

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

.header-nav a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 11px;
  border-radius: var(--radius-sm);
  color: var(--color-text-dark);
  font-size: 0.9rem;
  font-weight: 600;
  transition:
    background var(--transition),
    color var(--transition);
}
.header-nav a:hover {
  background: rgba(0, 0, 0, 0.1);
  color: var(--color-text-dark);
}
.header-nav a svg {
  flex-shrink: 0;
}

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

.online-count {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text-dark);
  background: rgba(255, 255, 255, 0.35);
  border-radius: 20px;
  padding: 5px 12px;
  white-space: nowrap;
}
.online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #73d245;
  animation: pulse 1.5s infinite;
  flex-shrink: 0;
}

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

.lang-dropdown {
  position: relative;
}
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-sm);
  padding: 7px 12px;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text-dark);
  transition: background var(--transition);
}
.lang-toggle:hover {
  background: rgba(255, 255, 255, 0.5);
}
.lang-menu {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  min-width: 140px;
  overflow: hidden;
  z-index: 200;
}
.lang-menu.open {
  display: block;
}
.lang-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  color: var(--color-text-dark);
  font-size: 0.9rem;
  font-weight: 600;
  transition: background var(--transition);
}
.lang-menu a:hover {
  background: #f0f0f0;
}

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

.burger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
}
.burger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text-dark);
  border-radius: 2px;
  transition:
    transform var(--transition),
    opacity var(--transition);
}
.burger-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.burger-btn.active span:nth-child(2) {
  opacity: 0;
}
.burger-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
  display: none;
  background: var(--color-header);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 16px;
}
.mobile-nav.open {
  display: block;
}
.mobile-nav a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 8px;
  color: var(--color-text-dark);
  font-size: 1rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.mobile-nav a:last-child {
  border-bottom: none;
}

.hero-section {
  position: relative;
  margin-bottom: 20px;
}

.hero-slider {
  position: relative;
  width: 100%;
}

.hero-slide {
  display: none;
  position: relative;
  min-height: 420px;
  background: linear-gradient(135deg, #0590e0 0%, #fe87d7 100%);
  align-items: center;
}
.hero-slide.active {
  display: flex;
}

.hero-slide img.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

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

.hero-badge {
  display: inline-block;
  background: var(--color-btn-orange);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.3);
  margin-bottom: 14px;
  text-wrap: balance;
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 540px;
  margin-bottom: 28px;
  line-height: 1.6;
}

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

.slider-nav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  border: none;
  transition:
    background var(--transition),
    transform var(--transition);
}
.slider-dot.active {
  background: #fff;
  transform: scale(1.3);
}

.slider-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 12px;
  z-index: 10;
  pointer-events: none;
}
.slider-arrow {
  pointer-events: all;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
  color: #fff;
}
.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.45);
}

.content-area {
  padding: 0 0 40px;
}

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.screenshot-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-card);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.screenshot-item:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow);
}
.screenshot-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.app-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.app-table-wrap {
  overflow-x: auto;
}
.app-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.93rem;
  min-width: 280px;
}
.app-table th,
.app-table td {
  padding: 11px 14px;
  text-align: left;
  border: 1.5px solid var(--color-border);
}
.app-table th {
  background: rgba(255, 255, 255, 0.12);
  font-weight: 700;
  color: #fff;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.app-table td {
  color: rgba(255, 255, 255, 0.9);
}
.app-table tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.05);
}

.app-dl-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}
.app-dl-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  transition:
    background var(--transition),
    border-color var(--transition);
  text-decoration: none;
}
.app-dl-btn:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}
.app-dl-btn svg {
  flex-shrink: 0;
}
.app-dl-sub {
  font-size: 0.78rem;
  font-weight: 400;
  opacity: 0.8;
  display: block;
  margin-top: 2px;
}

.app-info-side {
  display: flex;
  flex-direction: column;
}

.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--radius-lg);
}

.demo-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  background: #000;
}
.demo-iframe {
  width: 100%;
  height: 540px;
  border: none;
  display: block;
}
.demo-cta-bar {
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  flex-wrap: wrap;
  gap: 12px;
}
.demo-cta-text {
  color: #fff;
  font-size: 0.95rem;
}

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

.review-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}
.review-author {
  font-weight: 700;
  font-size: 0.97rem;
  color: #fff;
}
.review-date {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}
.stars {
  color: #ffd700;
  font-size: 1rem;
  margin-bottom: 4px;
}
.stars svg {
  display: inline;
  vertical-align: middle;
}
.review-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
}

.review-form {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  max-width: 560px;
  margin: 0 auto;
}
.review-form h3 {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 20px;
}
.form-group {
  margin-bottom: 16px;
}
.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 6px;
}
.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: #fff;
  font-family: var(--font-main);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition);
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.form-input:focus,
.form-textarea:focus {
  border-color: rgba(255, 255, 255, 0.6);
}
.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-success {
  display: none;
  background: rgba(115, 210, 69, 0.2);
  border: 1px solid var(--color-btn-green);
  border-radius: var(--radius-md);
  padding: 16px;
  color: #fff;
  text-align: center;
  font-weight: 600;
}
.form-success.show {
  display: block;
}

.faq-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  color: #fff;
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  gap: 12px;
  transition: background var(--transition);
}
.faq-question:hover {
  background: rgba(255, 255, 255, 0.07);
}
.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform var(--transition),
    background var(--transition);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--color-btn-green);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
  padding: 0 20px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.7;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 20px 18px;
}

.author-block {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}
.author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--color-btn-orange);
  flex-shrink: 0;
}
.author-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}
.author-title {
  font-size: 0.88rem;
  color: var(--color-btn-orange);
  font-weight: 600;
  margin-bottom: 8px;
}
.author-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 10px;
}
.author-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-btn-green);
  font-size: 0.88rem;
  font-weight: 600;
}

.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.pros-block,
.cons-block {
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px solid var(--color-border);
}
.pros-block h3 {
  color: var(--color-btn-green);
  font-size: 1.05rem;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cons-block h3 {
  color: #ff6b6b;
  font-size: 1.05rem;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pros-list,
.cons-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.pros-list li,
.cons-list li {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.88);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}
.pros-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-btn-green);
  font-weight: 800;
}
.cons-list li::before {
  content: "✗";
  position: absolute;
  left: 0;
  color: #ff6b6b;
  font-weight: 800;
}

.casino-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.casino-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
  align-items: start;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.casino-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.casino-card-logo {
  width: 72px;
  height: 52px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.15);
  padding: 6px;
}
.casino-card-name {
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 4px;
}
.casino-card-bonus {
  font-size: 0.88rem;
  color: var(--color-btn-orange);
  font-weight: 700;
  margin-bottom: 6px;
}
.casino-card-desc {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 10px;
  line-height: 1.5;
}

.game-info-table-wrap {
  overflow-x: auto;
}
.game-info-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 360px;
}
.game-info-table td {
  padding: 11px 16px;
  border: 1.5px solid var(--color-border);
  font-size: 0.93rem;
}
.game-info-table td:first-child {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  width: 45%;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.game-info-table td:last-child {
  color: #fff;
  font-weight: 600;
}
.game-info-table tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.04);
}

.content-text h1,
.content-text h2,
.content-text h3 {
  color: #fff;
  margin: 1.2em 0 0.5em;
  line-height: 1.3;
}
.content-text h1 {
  font-size: 1.8rem;
}
.content-text h2 {
  font-size: 1.4rem;
}
.content-text h3 {
  font-size: 1.15rem;
}
.content-text p {
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1em;
  line-height: 1.7;
  font-size: 0.97rem;
}
.content-text ul,
.content-text ol {
  color: rgba(255, 255, 255, 0.85);
  padding-left: 22px;
  margin-bottom: 1em;
}
.content-text li {
  margin-bottom: 0.4em;
  line-height: 1.6;
  font-size: 0.95rem;
}
.content-text table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.2em;
  display: block;
}
.content-text table th,
.content-text table td {
  padding: 10px 14px;
  border: 1.5px solid var(--color-border);
  text-align: left;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
}
.content-text table th {
  background: rgba(255, 255, 255, 0.12);
  font-weight: 700;
  color: #fff;
}
.content-text a {
  color: var(--color-btn-green);
}
.content-text strong {
  color: #fff;
  font-weight: 700;
}
.content-text blockquote {
  border-left: 4px solid var(--color-btn-orange);
  padding-left: 16px;
  color: rgba(255, 255, 255, 0.75);
  margin: 1em 0;
  font-style: italic;
}

.site-footer {
  background: var(--color-footer);
  margin-top: 40px;
  padding: 40px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 200px 1fr 1fr;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  margin-bottom: 32px;
}

.footer-logo img {
  height: 48px;
  width: auto;
  margin-bottom: 12px;
}
.footer-desc {
  font-size: 0.85rem;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.6;
}

.footer-nav h4,
.footer-trust h4 {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--color-text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}
.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav ul li a {
  color: var(--color-text-dark);
  font-size: 0.9rem;
  font-weight: 500;
}
.footer-nav ul li a:hover {
  color: #000;
}

.footer-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 8px;
}
.footer-logos img {
  height: 32px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(0) opacity(0.7);
}
.footer-logos img:hover {
  filter: none;
}

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

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

.footer-copyright {
  font-size: 0.82rem;
  color: rgba(0, 0, 0, 0.55);
}
.footer-legal {
  font-size: 0.78rem;
  color: rgba(0, 0, 0, 0.45);
  max-width: 600px;
  line-height: 1.5;
}

.footer-payment-logos {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-payment-logos img {
  height: 26px;
  width: auto;
  object-fit: contain;
  opacity: 0.75;
  transition: opacity var(--transition);
}
.footer-payment-logos img:hover {
  opacity: 1;
}

.bonus-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(90deg, #ff8603 0%, #ffd000 100%);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}
.widget-text {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 700;
  font-size: 0.97rem;
}
.widget-badge {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  padding: 3px 12px;
  font-size: 0.8rem;
  white-space: nowrap;
}
.widget-btn {
  background: #fff;
  color: #ff8603;
  font-weight: 800;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  padding: 10px 24px;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background var(--transition),
    transform var(--transition);
  flex-shrink: 0;
}
.widget-btn:hover {
  background: #ffe9cc;
  color: #ff8603;
  transform: scale(1.03);
}
.widget-close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  flex-shrink: 0;
  font-size: 1.1rem;
  line-height: 1;
}
.widget-close:hover {
  background: rgba(255, 255, 255, 0.35);
}

body.widget-active {
  padding-bottom: 62px;
}

.tech-content h1 {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 20px;
}
.tech-content h2 {
  font-size: 1.3rem;
  color: #fff;
  margin: 1.5em 0 0.6em;
}
.tech-content h3 {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 1.2em 0 0.5em;
}
.tech-content p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1em;
  line-height: 1.7;
  font-size: 0.95rem;
}
.tech-content ul,
.tech-content ol {
  color: rgba(255, 255, 255, 0.82);
  padding-left: 22px;
  margin-bottom: 1em;
}
.tech-content li {
  margin-bottom: 0.45em;
  line-height: 1.6;
}
.tech-content a {
  color: var(--color-btn-green);
}
.tech-content strong {
  color: #fff;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.83rem;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
}
.breadcrumb a:hover {
  color: #fff;
}
.breadcrumb span {
  color: rgba(255, 255, 255, 0.35);
}

.mobile-slider {
  display: none;
}
.mobile-slider-inner {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
}
.mobile-slider-inner::-webkit-scrollbar {
  height: 4px;
}
.mobile-slider-inner::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
}
.mobile-slide {
  flex: 0 0 85%;
  scroll-snap-align: start;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.mobile-slide img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

@media (max-width: 900px) {
  .header-nav {
    display: none;
  }
  .burger-btn {
    display: flex;
  }
  .app-block {
    grid-template-columns: 1fr;
  }
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .casino-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .screenshots-grid {
    display: none;
  }
  .mobile-slider {
    display: block;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .pros-cons-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-slide {
    min-height: 340px;
  }
  .demo-iframe {
    height: 320px;
  }
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }
  .online-count {
    display: none;
  }
}

@media (max-width: 440px) {
  .hero-btns {
    flex-direction: column;
  }
  .hero-btns .btn {
    width: 100%;
    justify-content: center;
  }
  .demo-cta-bar {
    flex-direction: column;
  }
  .bonus-widget {
    flex-wrap: wrap;
  }
}

.wp-content-area {
  display: none;
}
.wpcf7 {
  display: none;
}
.elementor-hidden {
  display: none;
}
.widget_tag_cloud {
  display: none;
}
.sidebar-area {
  display: none;
}
.wp-block-columns--hidden {
  display: none;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in {
  animation: fadeInUp 0.55s ease both;
}
.fade-in-delay-1 {
  animation-delay: 0.1s;
}
.fade-in-delay-2 {
  animation-delay: 0.2s;
}
.fade-in-delay-3 {
  animation-delay: 0.35s;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

.x7r3m {
  position: relative;
}
.q9w2n {
  z-index: 1;
}
.b4k8p {
  overflow: hidden;
}
.f5h1j {
  display: contents;
}
.v6l0s {
  isolation: isolate;
}
.c2d7e {
  contain: style;
}
.m3n9r {
  pointer-events: none;
  opacity: 0;
  position: absolute;
}

@media (max-width: 900px) {
  .header-btns {
    display: none;
  }
}

.content-text h1,
.content-text h2,
.content-text h3,
#review-content h1,
#review-content h2,
#review-content h3 {
  color: #fff;
  margin: 1.2em 0 0.5em;
  line-height: 1.3;
}
.content-text h1,
#review-content h1 {
  font-size: 1.8rem;
}
.content-text h2,
#review-content h2 {
  font-size: 1.4rem;
}
.content-text h3,
#review-content h3 {
  font-size: 1.15rem;
}
.content-text p,
#review-content p {
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1em;
  line-height: 1.7;
  font-size: 0.97rem;
}
.content-text ul,
.content-text ol,
#review-content ul,
#review-content ol {
  color: rgba(255, 255, 255, 0.85);
  padding-left: 22px;
  margin-bottom: 1em;
}
.content-text li,
#review-content li {
  margin-bottom: 0.4em;
  line-height: 1.6;
  font-size: 0.95rem;
}

#review-content {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
