:root {
  --color-header: #fe87d7;
  --color-header-dark: #fd6fc9;
  --color-bg: #07a3fe;
  --color-bg-dark: #0690e0;
  --color-btn-green: #73d245;
  --color-btn-green-hover: #5fb835;
  --color-btn-orange: #ff8603;
  --color-btn-orange-hover: #e07500;
  --color-text: #ffffff;
  --color-text-dark: #1a1a2e;
  --color-card-bg: #ffffff;
  --color-card-border: #e8e8e8;
  --color-gold: #ffd700;
  --color-footer: #fe87d7;
  --radius-card: 14px;
  --radius-btn: 8px;
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.13);
  --shadow-btn: 0 3px 10px rgba(0, 0, 0, 0.18);
  --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);
}

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

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

a {
  text-decoration: none;
  color: inherit;
}

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

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

.box {
  width: 100%;
}

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
  flex-wrap: wrap;
}

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

.header-logo img {
  height: 44px;
  width: auto;
  border-radius: 8px;
}

.header-logo-text {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
}

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

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

.header-nav li a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background 0.2s;
  white-space: nowrap;
}

.header-nav li a:hover {
  background: rgba(255, 255, 255, 0.2);
}

.header-nav li a svg {
  width: 15px;
  height: 15px;
  fill: #fff;
  flex-shrink: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.85rem;
  border: none;
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.btn-demo {
  background: var(--color-btn-green);
  color: #fff;
  padding: 9px 16px;
  box-shadow: var(--shadow-btn);
}

.btn-demo:hover {
  background: var(--color-btn-green-hover);
  transform: translateY(-1px);
}

.btn-money {
  background: var(--color-btn-orange);
  color: #fff;
  padding: 9px 16px;
  box-shadow: var(--shadow-btn);
}

.btn-money:hover {
  background: var(--color-btn-orange-hover);
  transform: translateY(-1px);
}

.btn-lg {
  font-size: 1rem;
  padding: 14px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.btn-xl {
  font-size: 1.1rem;
  padding: 16px 36px;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.22);
}

.online-count {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  padding: 4px 10px;
  white-space: nowrap;
}

.online-dot {
  width: 8px;
  height: 8px;
  background: #73d245;
  border-radius: 50%;
  animation: blink 1.4s infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.lang-dropdown {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.18);
  border: none;
  border-radius: 6px;
  color: #fff;
  font-family: var(--font-main);
  font-size: 0.83rem;
  font-weight: 600;
  padding: 6px 10px;
  cursor: pointer;
  transition: background 0.2s;
}

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

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

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

.lang-menu a {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-dark);
  transition: background 0.15s;
}

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

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.burger span {
  display: block;
  width: 24px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: all 0.3s;
}

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

.hero-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0590e0 0%, #034d8a 100%);
}

.hero-slider {
  position: relative;
  min-height: 480px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.55);
}

.hero-slide-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 680px;
  padding: 40px 24px;
}

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

.hero-slide-content h2 {
  font-size: clamp(1.6rem, 5vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  text-wrap: balance;
}

.hero-slide-content p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
  line-height: 1.6;
}

.hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.slider-controls {
  position: absolute;
  bottom: 16px;
  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.45);
  cursor: pointer;
  border: none;
  transition:
    background 0.3s,
    transform 0.2s;
}

.slider-dot.active {
  background: #fff;
  transform: scale(1.3);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.4);
}
.slider-arrow.prev {
  left: 12px;
}
.slider-arrow.next {
  right: 12px;
}

.section-wrap {
  padding: 40px 0;
}

.section-title {
  font-size: clamp(1.3rem, 3.5vw, 2rem);
  font-weight: 800;
  color: #fff;
  text-align: center;
  margin-bottom: 8px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  text-wrap: balance;
}

.section-sub {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  margin-bottom: 28px;
}

/* ===== CASINO RATING ===== */
.casino-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.casino-card {
  background: var(--color-card-bg);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--color-text-dark);
  position: relative;
  border: 2px solid transparent;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  animation: fadeInUp 0.4s ease both;
}

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

.casino-card.top-1 {
  border-color: #ffd700;
  background: linear-gradient(135deg, #fffde7 0%, #fff 100%);
}
.casino-card.top-2 {
  border-color: #c0c0c0;
  background: linear-gradient(135deg, #f5f5f5 0%, #fff 100%);
}
.casino-card.top-3 {
  border-color: #cd7f32;
  background: linear-gradient(135deg, #fdf3e7 0%, #fff 100%);
}

.casino-rank {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--color-btn-orange);
  min-width: 36px;
  text-align: center;
  flex-shrink: 0;
}

.top-1 .casino-rank {
  color: #c9a200;
}
.top-2 .casino-rank {
  color: #888;
}
.top-3 .casino-rank {
  color: #a0522d;
}

.casino-logo-wrap {
  flex-shrink: 0;
  width: 74px;
  height: 54px;
  border-radius: 8px;
  overflow: hidden;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e8e8e8;
}

.casino-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.casino-info {
  flex: 1;
  min-width: 160px;
}

.casino-name-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
  flex-wrap: wrap;
}

.casino-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-text-dark);
}

.casino-flag {
  width: 20px;
  height: 14px;
  border-radius: 2px;
  overflow: hidden;
  flex-shrink: 0;
}

.casino-rating-stars {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 5px;
}

.star {
  color: var(--color-gold);
  font-size: 0.9rem;
}

.casino-rating-num {
  font-size: 0.85rem;
  font-weight: 700;
  color: #555;
  margin-left: 3px;
}

.casino-bonus {
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  background: var(--color-btn-orange);
  border-radius: 5px;
  padding: 3px 9px;
  display: inline-block;
  margin-bottom: 6px;
}

.casino-features {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 5px;
}

.casino-feature {
  font-size: 0.76rem;
  font-weight: 600;
  color: #555;
  background: #f0f4ff;
  border-radius: 4px;
  padding: 2px 8px;
  border: 1px solid #dce3f7;
}

.casino-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.75rem;
  color: #777;
}

.casino-meta span {
  display: flex;
  align-items: center;
  gap: 3px;
}

.casino-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
  min-width: 130px;
}

.btn-casino-go {
  background: var(--color-btn-orange);
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.88rem;
  text-align: center;
  display: block;
  transition: all 0.2s;
  box-shadow: 0 3px 10px rgba(255, 134, 3, 0.3);
}

.btn-casino-go:hover {
  background: var(--color-btn-orange-hover);
  transform: translateY(-1px);
}

.btn-casino-review {
  background: transparent;
  color: var(--color-btn-green);
  padding: 8px 18px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.82rem;
  text-align: center;
  display: block;
  border: 2px solid var(--color-btn-green);
  transition: all 0.2s;
}

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

.pagination-wrap {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.btn-load-more {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  padding: 12px 32px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-main);
  transition: all 0.2s;
}

.btn-load-more:hover {
  background: rgba(255, 255, 255, 0.35);
}
.btn-load-more:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

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

.pros-card,
.cons-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 22px 22px;
  color: var(--color-text-dark);
  box-shadow: var(--shadow-card);
}

.pros-card {
  border-top: 4px solid var(--color-btn-green);
}
.cons-card {
  border-top: 4px solid #ef4444;
}

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

.pros-cons-title .icon {
  font-size: 1.3rem;
}

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

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

.pros-list li,
.cons-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #333;
}

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

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

.demo-section {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 28px 24px;
  text-align: center;
}

.demo-iframe-wrap {
  position: relative;
  width: 100%;
  max-width: 860px;
  margin: 0 auto 20px;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  background: #000;
  aspect-ratio: 16/9;
}

.demo-iframe-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.demo-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 16px;
}

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

.strategy-card {
  background: #fff;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  color: var(--color-text-dark);
}

.strategy-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.18);
}

.strategy-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  background: linear-gradient(
    135deg,
    var(--color-header) 0%,
    var(--color-bg) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}

.strategy-body {
  padding: 18px;
}

.strategy-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-text-dark);
  margin-bottom: 8px;
}

.strategy-desc {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.55;
  margin-bottom: 14px;
}

.btn-strategy {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-btn-green);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 9px 18px;
  border-radius: 8px;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  font-family: var(--font-main);
  text-decoration: none;
}

.btn-strategy:hover {
  background: var(--color-btn-green-hover);
  transform: translateY(-1px);
}

/* ===== CONTENT BLOCK ===== */
.content-review {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-card);
  padding: 30px 28px;
  color: var(--color-text-dark);
  box-shadow: var(--shadow-card);
}

.content-review h1,
.content-review h2,
.content-review h3,
.content-review h4 {
  color: #1a1a2e;
  margin: 22px 0 10px;
  line-height: 1.3;
}

.content-review h1 {
  font-size: 1.8rem;
  font-weight: 900;
}
.content-review h2 {
  font-size: 1.4rem;
  font-weight: 800;
}
.content-review h3 {
  font-size: 1.15rem;
  font-weight: 700;
}

.content-review p {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 14px;
  line-height: 1.7;
}

.content-review ul,
.content-review ol {
  margin: 12px 0 14px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.content-review li {
  font-size: 0.93rem;
  color: #333;
  line-height: 1.6;
}

.content-review table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  font-size: 0.9rem;
  overflow: hidden;
  border-radius: 8px;
  border: 2px solid #e0e0e0;
}

.content-review table th {
  background: var(--color-bg);
  color: #fff;
  font-weight: 700;
  text-align: left;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.content-review table td {
  padding: 9px 14px;
  border: 1px solid #e8e8e8;
  color: #333;
  text-align: left;
}

.content-review table tr:nth-child(even) td {
  background: #f9f9f9;
}
.content-review a {
  color: var(--color-bg);
  text-decoration: underline;
}
.content-review img {
  max-width: 100%;
  border-radius: 8px;
  margin: 10px 0;
}

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

.faq-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

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

.faq-question:hover {
  background: #f8f9ff;
}
.faq-question.open {
  background: #f0f4ff;
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-bg);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 900;
  flex-shrink: 0;
  transition:
    transform 0.3s,
    background 0.2s;
}

.faq-question.open .faq-icon {
  transform: rotate(45deg);
  background: var(--color-btn-orange);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s;
  padding: 0 20px;
}

.faq-answer.open {
  max-height: 600px;
  padding: 14px 20px 18px;
}

.faq-answer p {
  font-size: 0.92rem;
  color: #444;
  line-height: 1.65;
}

/* ===== AUTHOR BLOCK ===== */
.author-block {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: var(--shadow-card);
  color: var(--color-text-dark);
  flex-wrap: wrap;
}

.author-avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(
    135deg,
    var(--color-header) 0%,
    var(--color-bg) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  border: 3px solid var(--color-header);
}

.author-info {
  flex: 1;
}

.author-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-text-dark);
  margin-bottom: 3px;
}

.author-role {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-bg);
  margin-bottom: 6px;
}

.author-bio {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.55;
}

.author-link {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-bg);
  text-decoration: underline;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--color-footer);
  padding: 32px 0 16px;
  margin-top: auto;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 24px;
}

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

.footer-logo-text {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.footer-legal-text {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.footer-nav-title {
  font-size: 0.88rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.footer-nav-list li a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s;
}

.footer-nav-list li a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.payment-badge {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.trust-badge {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  padding: 4px 9px;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

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

.footer-provider img {
  height: 24px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

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

.footer-bottom {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* ===== WIDGET ===== */
.bottom-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: linear-gradient(90deg, var(--color-btn-orange) 0%, #ff6f00 100%);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(255, 134, 3, 0.35);
}

.widget-text {
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.widget-bonus {
  font-size: 1.05rem;
  font-weight: 900;
  color: #fff;
}

.widget-btn {
  background: #fff;
  color: var(--color-btn-orange);
  font-weight: 900;
  font-size: 0.95rem;
  padding: 10px 24px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.widget-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.2);
}

.widget-close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}

.widget-close:hover {
  background: rgba(255, 255, 255, 0.35);
}

/* ===== GAME INFO TABLE ===== */
.game-info-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  font-size: 0.9rem;
}

.game-info-table th,
.game-info-table td {
  padding: 11px 16px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.game-info-table th {
  background: var(--color-bg);
  color: #fff;
  font-weight: 700;
  width: 45%;
}

.game-info-table td {
  color: var(--color-text-dark);
  font-weight: 500;
}
.game-info-table tr:last-child th,
.game-info-table tr:last-child td {
  border-bottom: none;
}
.game-info-table tr:nth-child(even) td {
  background: #f9f9f9;
}

/* ===== TECHNICAL PAGES ===== */
.tech-content {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 32px 28px;
  color: var(--color-text-dark);
  box-shadow: var(--shadow-card);
  margin: 28px 0;
}

.tech-content h1 {
  font-size: 1.7rem;
  font-weight: 900;
  margin-bottom: 18px;
  color: #1a1a2e;
}
.tech-content h2 {
  font-size: 1.25rem;
  font-weight: 800;
  margin: 20px 0 10px;
  color: #1a1a2e;
}
.tech-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 16px 0 8px;
  color: #333;
}
.tech-content p {
  font-size: 0.94rem;
  color: #444;
  margin-bottom: 12px;
  line-height: 1.7;
}
.tech-content ul,
.tech-content ol {
  margin: 10px 0 14px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.tech-content li {
  font-size: 0.93rem;
  color: #444;
  line-height: 1.6;
}

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

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.9);
}
.breadcrumbs a:hover {
  color: #fff;
  text-decoration: underline;
}
.breadcrumbs span {
  color: rgba(255, 255, 255, 0.55);
}

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

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

.pulse-anim {
  animation: pulse 2.5s infinite;
}

/* ===== UNUSED/FINGERPRINT CLASSES ===== */
.wp-block-group {
  display: block;
}
.wp-block-columns {
  display: flex;
  flex-wrap: wrap;
}
.elementor-section {
  position: relative;
}
.elementor-container {
  display: flex;
}
.entry-content {
  position: relative;
}
.site-content {
  display: block;
}
.is-layout-flow {
  display: flex;
  flex-direction: column;
}
.x9f3k {
  display: block;
}
.m7q2w {
  position: relative;
}
.v4r8t {
  overflow: hidden;
}
.z2p1n {
  width: 100%;
}
.h5s9d {
  display: flex;
}
.k3j7l {
  color: inherit;
}
.b8n4x {
  background: transparent;
}
.c6q0m {
  border: 0;
}

@media (max-width: 900px) {
  .pros-cons-grid {
    grid-template-columns: 1fr;
  }
  .strategies-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .casino-card {
    flex-wrap: wrap;
  }
  .casino-actions {
    flex-direction: row;
    width: 100%;
  }
  .btn-casino-go,
  .btn-casino-review {
    flex: 1;
  }
}

@media (max-width: 700px) {
  .header-nav {
    display: none;
  }
  .header-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--color-header);
    z-index: 999;
    padding: 14px;
    gap: 4px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  }
  .burger {
    display: flex;
  }
  .strategies-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .hero-slider {
    min-height: 360px;
  }
  .demo-iframe-wrap {
    aspect-ratio: 4/3;
  }
}

@media (max-width: 480px) {
  .header-inner {
    padding: 8px 12px;
  }
  .header-logo-text {
    font-size: 0.88rem;
  }
  .section-wrap {
    padding: 28px 0;
  }
  .bottom-widget {
    flex-direction: column;
    text-align: center;
  }
  .casino-logo-wrap {
    width: 54px;
    height: 40px;
  }
}

body {
  padding-bottom: 60px;
}

@media (max-width: 700px) {
  .header-actions {
    gap: 6px;
  }

  .btn-demo,
  .btn-money {
    display: none;
  }

  .header-nav.open .btn-demo,
  .header-nav.open .btn-money {
    display: flex;
    width: 100%;
    justify-content: center;
  }

  .header-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--color-header);
    z-index: 999;
    padding: 14px;
    gap: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  }

  .burger {
    display: flex;
  }
}
