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

:root {
  --c-bg: #0a0a0a;
  --c-header: #111111;
  --c-gold: #ffd700;
  --c-gold-dark: #e6c200;
  --c-red: #ff1744;
  --c-red-dark: #d50000;
  --c-text: #e8e8e8;
  --c-text-muted: #999999;
  --c-border: #2a2a2a;
  --c-card: #161616;
  --c-card2: #1a1a1a;
  --c-radius: 10px;
  --c-radius-lg: 16px;
  --font: "Montserrat", sans-serif;
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
  background: var(--c-bg);
}

body {
  font-family: var(--font);
  background: var(--c-bg);
  color: var(--c-text);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--c-gold);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--c-gold-dark);
}
ul {
  list-style: none;
}

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

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

.box {
  position: relative;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(0);
}

.btn--gold {
  background: var(--c-gold);
  color: #111;
  box-shadow: 0 4px 18px rgba(255, 215, 0, 0.3);
}
.btn--gold:hover {
  background: var(--c-gold-dark);
  box-shadow: 0 6px 24px rgba(255, 215, 0, 0.5);
  color: #111;
}

.btn--red {
  background: var(--c-red);
  color: #fff;
  box-shadow: 0 4px 18px rgba(255, 23, 68, 0.3);
}
.btn--red:hover {
  background: var(--c-red-dark);
  box-shadow: 0 6px 24px rgba(255, 23, 68, 0.5);
  color: #fff;
}

.btn--outline {
  background: transparent;
  border: 2px solid var(--c-gold);
  color: var(--c-gold);
}
.btn--outline:hover {
  background: var(--c-gold);
  color: #111;
}

.btn--sm {
  padding: 7px 14px;
  font-size: 12px;
}
.btn--lg {
  padding: 14px 32px;
  font-size: 16px;
}

.section-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--c-text);
  margin-bottom: 8px;
  line-height: 1.25;
}

.section-subtitle {
  color: var(--c-text-muted);
  font-size: 15px;
  margin-bottom: 32px;
}

.section-header {
  margin-bottom: 32px;
}

.tag {
  display: inline-block;
  background: rgba(255, 215, 0, 0.12);
  color: var(--c-gold);
  border-radius: 30px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.site-header {
  background: var(--c-header);
  border-bottom: 1px solid var(--c-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

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

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

.header-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  font-size: 20px;
  font-weight: 900;
  color: var(--c-gold);
  letter-spacing: -0.5px;
  line-height: 1;
}
.logo-text span {
  color: var(--c-red);
}

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

.header-nav a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--c-text);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 6px;
  transition:
    background var(--transition),
    color var(--transition);
}
.header-nav a:hover {
  background: rgba(255, 255, 255, 0.07);
  color: var(--c-gold);
}

.header-nav svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.online-count {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--c-border);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--c-text-muted);
  white-space: nowrap;
}

.online-dot {
  width: 7px;
  height: 7px;
  background: #00e676;
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

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

.lang-switcher {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--c-border);
  border-radius: 6px;
  padding: 6px 10px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text);
  font-family: var(--font);
  transition: background var(--transition);
}
.lang-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}
.lang-btn svg {
  width: 14px;
  height: 14px;
}

.lang-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  background: #1e1e1e;
  border: 1px solid var(--c-border);
  border-radius: var(--c-radius);
  min-width: 140px;
  padding: 6px 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition:
    opacity var(--transition),
    transform var(--transition);
  z-index: 100;
}
.lang-dropdown.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.lang-dropdown a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  font-size: 13px;
  color: var(--c-text);
  font-weight: 500;
}
.lang-dropdown a:hover {
  background: rgba(255, 255, 255, 0.07);
}

.flag-icon {
  font-size: 16px;
  line-height: 1;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--c-border);
  border-radius: 6px;
  cursor: pointer;
  padding: 7px;
  flex-shrink: 0;
}
.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition:
    transform var(--transition),
    opacity var(--transition);
}
.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);
}

/* ========== HERO SLIDER ========== */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 480px;
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
}
.hero-slide.active {
  opacity: 1;
  pointer-events: all;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-slide-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 10, 10, 0.92) 0%,
    rgba(10, 10, 10, 0.55) 50%,
    rgba(10, 10, 10, 0.2) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
  padding: 60px 0;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 215, 0, 0.12);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 30px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--c-gold);
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(30px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}
.hero-title span {
  color: var(--c-gold);
}

.hero-desc {
  font-size: 16px;
  color: rgba(232, 232, 232, 0.85);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition:
    background var(--transition),
    transform var(--transition);
}
.hero-dot.active {
  background: var(--c-gold);
  transform: scale(1.3);
}

.hero-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 16px;
  z-index: 10;
  pointer-events: none;
}

.hero-arrow {
  width: 44px;
  height: 44px;
  background: rgba(17, 17, 17, 0.7);
  border: 1px solid var(--c-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: all;
  transition:
    background var(--transition),
    border-color var(--transition);
}
.hero-arrow:hover {
  background: var(--c-gold);
  border-color: var(--c-gold);
}
.hero-arrow:hover svg path {
  stroke: #111;
}
.hero-arrow svg {
  width: 20px;
  height: 20px;
}
.hero-arrow svg path {
  stroke: var(--c-text);
  stroke-width: 2;
  fill: none;
}

main {
  flex: 1;
}

.section {
  padding: 60px 0;
}

.section--alt {
  background: rgba(255, 255, 255, 0.015);
}

.casino-section {
  padding: 60px 0;
}

.casino-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.casino-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--c-radius-lg);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
  position: relative;
  overflow: hidden;
}
.casino-card:hover {
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px);
}

.casino-card--top1 {
  border-color: rgba(255, 215, 0, 0.4);
  background: linear-gradient(135deg, #1a1800 0%, #161616 100%);
}
.casino-card--top2 {
  border-color: rgba(192, 192, 192, 0.3);
}
.casino-card--top3 {
  border-color: rgba(205, 127, 50, 0.3);
}

.casino-rank {
  font-size: 24px;
  font-weight: 900;
  color: var(--c-text-muted);
  width: 36px;
  text-align: center;
  flex-shrink: 0;
}
.casino-card--top1 .casino-rank {
  color: var(--c-gold);
}
.casino-card--top2 .casino-rank {
  color: #c0c0c0;
}
.casino-card--top3 .casino-rank {
  color: #cd7f32;
}

.casino-logo {
  flex-shrink: 0;
  width: 80px;
  height: 56px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--c-border);
}

.casino-logo-text {
  font-size: 11px;
  font-weight: 800;
  color: var(--c-gold);
  text-align: center;
  line-height: 1.2;
  padding: 4px;
}

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

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

.casino-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--c-text);
}

.casino-flag {
  font-size: 14px;
}

.casino-stars {
  display: flex;
  gap: 2px;
  color: var(--c-gold);
  font-size: 14px;
  align-items: center;
}

.casino-score {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-gold);
  margin-left: 4px;
}

.casino-bonus {
  font-size: 13px;
  font-weight: 600;
  color: #a0ffa0;
  margin-bottom: 6px;
}

.casino-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.casino-meta-item {
  font-size: 11px;
  color: var(--c-text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}
.casino-meta-item strong {
  color: var(--c-text);
}

.casino-license {
  display: inline-block;
  background: rgba(0, 230, 118, 0.1);
  border: 1px solid rgba(0, 230, 118, 0.2);
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 600;
  color: #00e676;
}

.casino-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
  align-items: flex-end;
}

.casino-top-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--c-gold);
  color: #111;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.casino-load-more {
  text-align: center;
  margin-top: 24px;
}

/* ========== ADVANTAGES ========== */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.advantage-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--c-radius-lg);
  padding: 28px 22px;
  transition:
    border-color var(--transition),
    transform var(--transition);
}
.advantage-card:hover {
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-3px);
}

.advantage-icon {
  width: 52px;
  height: 52px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.advantage-icon svg {
  width: 26px;
  height: 26px;
  color: var(--c-gold);
}

.advantage-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 8px;
}

.advantage-desc {
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.6;
}

/* ========== DEMO GAME ========== */
.demo-section {
  padding: 60px 0;
}

.demo-wrapper {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--c-radius-lg);
}

.demo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid var(--c-border);
  background: rgba(255, 255, 255, 0.02);
  flex-wrap: wrap;
  gap: 12px;
}

.demo-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--c-text);
}

.demo-iframe-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #050505;
}

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

.demo-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  gap: 12px;
  flex-wrap: wrap;
}

/* ========== STRATEGIES ========== */
.strategies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.strategy-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--c-radius-lg);
  overflow: hidden;
  transition:
    border-color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}
.strategy-card:hover {
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.strategy-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  background: linear-gradient(135deg, #1a1200, #0d0d0d);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.strategy-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.strategy-img-placeholder {
  width: 100%;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1200 0%, #111 100%);
  font-size: 48px;
}

.strategy-body {
  padding: 18px;
}

.strategy-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 8px;
}

.strategy-desc {
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

/* ========== REVIEWS ========== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}

.review-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--c-radius-lg);
  padding: 22px;
  transition: border-color var(--transition);
}
.review-card:hover {
  border-color: rgba(255, 215, 0, 0.2);
}

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

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.15);
  border: 2px solid rgba(255, 215, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--c-gold);
  flex-shrink: 0;
  overflow: hidden;
}
.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.review-meta {
}
.review-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-text);
}
.review-date {
  font-size: 11px;
  color: var(--c-text-muted);
  margin-top: 2px;
}

.review-stars {
  display: flex;
  gap: 2px;
  color: var(--c-gold);
  margin-bottom: 10px;
}
.review-stars svg {
  width: 14px;
  height: 14px;
}

.review-text {
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.65;
}

.review-form-wrapper {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--c-radius-lg);
  padding: 28px;
  max-width: 560px;
  margin: 0 auto;
}

.review-form-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 20px;
}

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

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text-muted);
}

.form-group input,
.form-group textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--c-border);
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--c-text);
  font-family: var(--font);
  font-size: 14px;
  transition: border-color var(--transition);
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--c-gold);
  background: rgba(255, 215, 0, 0.04);
}

.form-group textarea {
  min-height: 100px;
}

.form-success {
  display: none;
  background: rgba(0, 230, 118, 0.1);
  border: 1px solid rgba(0, 230, 118, 0.3);
  border-radius: 8px;
  padding: 14px 18px;
  color: #00e676;
  font-size: 14px;
  font-weight: 600;
  margin-top: 16px;
  align-items: center;
  gap: 8px;
}
.form-success.show {
  display: flex;
}

/* ========== CONTENT BLOCK ========== */
.content-block {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--c-radius-lg);
  padding: 32px;
  margin: 0 0 8px;
}

.content-block h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--c-text);
  margin: 24px 0 12px;
  line-height: 1.3;
}
.content-block h2:first-child {
  margin-top: 0;
}
.content-block h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--c-gold);
  margin: 18px 0 8px;
}
.content-block p {
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}
.content-block ul,
.content-block ol {
  padding-left: 20px;
  margin-bottom: 12px;
}
.content-block ul {
  list-style: disc;
}
.content-block ol {
  list-style: decimal;
}
.content-block li {
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.7;
  margin-bottom: 6px;
}
.content-block table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
}
.content-block table th {
  background: rgba(255, 215, 0, 0.1);
  color: var(--c-gold);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 14px;
  text-align: left;
  border: 1px solid var(--c-border);
}
.content-block table td {
  padding: 9px 14px;
  font-size: 13px;
  color: var(--c-text-muted);
  border: 1px solid var(--c-border);
  vertical-align: top;
}
.content-block table tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.02);
}
.content-block a {
  color: var(--c-gold);
}
.content-block strong {
  color: var(--c-text);
  font-weight: 700;
}

/* ========== AUTHOR ========== */
.author-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--c-radius-lg);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.1);
  border: 2px solid rgba(255, 215, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 22px;
  font-weight: 800;
  color: var(--c-gold);
}

.author-info {
}
.author-label {
  font-size: 11px;
  color: var(--c-text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.author-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 4px;
}
.author-name a {
  color: var(--c-gold);
}
.author-desc {
  font-size: 12px;
  color: var(--c-text-muted);
  line-height: 1.6;
}

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

.faq-item {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--c-radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open {
  border-color: rgba(255, 215, 0, 0.3);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-text);
  user-select: none;
}

.faq-question svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--c-gold);
  transition: transform var(--transition);
}
.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 20px 16px;
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.7;
}
.faq-item.open .faq-answer {
  display: block;
}

/* ========== GAME INFO TABLE ========== */
.game-info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
}
.game-info-table td {
  padding: 10px 14px;
  font-size: 13px;
  border: 1px solid var(--c-border);
  vertical-align: top;
}
.game-info-table td:first-child {
  color: var(--c-text-muted);
  font-weight: 600;
  width: 45%;
  background: rgba(255, 255, 255, 0.02);
}
.game-info-table td:last-child {
  color: var(--c-text);
}

.table-wrap {
  overflow-x: auto;
}

/* ========== FOOTER ========== */
.site-footer {
  background: var(--c-header);
  border-top: 1px solid var(--c-border);
  padding: 48px 0 24px;
  margin-top: auto;
}

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

.footer-logo-block {
}
.footer-logo-block img {
  height: 40px;
  width: auto;
  margin-bottom: 12px;
}
.footer-desc {
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.6;
  max-width: 260px;
}

.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  font-size: 13px;
  color: var(--c-text-muted);
  transition: color var(--transition);
}
.footer-nav a:hover {
  color: var(--c-gold);
}

.footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
  align-items: center;
}

.payment-badge {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--c-border);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  color: var(--c-text-muted);
}

.footer-trusts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.trust-badge {
  background: rgba(0, 230, 118, 0.08);
  border: 1px solid rgba(0, 230, 118, 0.2);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 10px;
  font-weight: 700;
  color: #00e676;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.footer-provider {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}
.footer-provider img {
  height: 24px;
  width: auto;
}
.footer-provider span {
  font-size: 11px;
  color: var(--c-text-muted);
}

.footer-divider {
  border: none;
  border-top: 1px solid var(--c-border);
  margin: 24px 0;
}

.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 12px;
  color: var(--c-text-muted);
  line-height: 1.6;
}
.footer-legal {
  font-size: 11px;
  color: #555;
  line-height: 1.6;
  max-width: 600px;
  text-align: right;
}

.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(90deg, #0d0d0d 0%, #1a1200 50%, #0d0d0d 100%);
  border-top: 2px solid var(--c-gold);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5);
}

.widget-text {
  flex: 1;
  min-width: 0;
}
.widget-bonus {
  font-size: 16px;
  font-weight: 800;
  color: var(--c-gold);
  line-height: 1.2;
  white-space: nowrap;
}
.widget-desc {
  font-size: 12px;
  color: var(--c-text-muted);
}

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

.widget-close {
  background: none;
  border: none;
  color: var(--c-text-muted);
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  padding: 4px;
  flex-shrink: 0;
  transition: color var(--transition);
}
.widget-close:hover {
  color: var(--c-text);
}

.wpcf7 {
  display: none !important;
}
.wp-post-image {
  border-radius: 8px;
}
.entry-content {
}
.wp-block-group {
}
.elementor-section {
}
.elementor-widget-wrap {
}
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}
#wpadminbar {
  display: none !important;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 0;
  font-size: 12px;
  color: var(--c-text-muted);
  flex-wrap: wrap;
}
.breadcrumbs a {
  color: var(--c-text-muted);
}
.breadcrumbs a:hover {
  color: var(--c-gold);
}
.breadcrumbs span {
  color: var(--c-text-muted);
}
.breadcrumbs .current {
  color: var(--c-text);
}

.technical-content {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--c-radius-lg);
  padding: 40px;
  margin-bottom: 32px;
}
.technical-content h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--c-text);
  margin: 24px 0 12px;
}
.technical-content h2:first-child {
  margin-top: 0;
}
.technical-content h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--c-gold);
  margin: 16px 0 8px;
}
.technical-content p {
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}
.technical-content ul {
  padding-left: 20px;
  list-style: disc;
  margin-bottom: 12px;
}
.technical-content li {
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.7;
  margin-bottom: 6px;
}
.technical-content a {
  color: var(--c-gold);
}
.technical-content strong {
  color: var(--c-text);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fade-in {
  animation: fadeIn 0.5s ease both;
}
.fade-in-up {
  animation: fadeInUp 0.55s ease both;
}

[data-aos] {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}
[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .header-nav {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background: var(--c-header);
    border-bottom: 1px solid var(--c-border);
    padding: 16px;
    gap: 4px;
    z-index: 998;
  }
  .header-nav.open {
    display: flex;
  }
  .header-nav a {
    padding: 10px 12px;
  }
  .burger {
    display: flex;
  }
  .online-count {
    display: none;
  }

  .hero-content {
    padding: 40px 0;
  }
  .hero-title {
    font-size: clamp(24px, 6vw, 40px);
  }

  .casino-card {
    flex-wrap: wrap;
  }
  .casino-actions {
    width: 100%;
    flex-direction: row;
    justify-content: flex-start;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-legal {
    text-align: left;
  }
  .footer-bottom {
    flex-direction: column;
  }

  .sticky-widget {
    flex-wrap: wrap;
  }

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

  .technical-content {
    padding: 24px 16px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }
  .demo-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .casino-card {
    padding: 14px;
  }
  .casino-logo {
    display: none;
  }
  .strategies-grid {
    grid-template-columns: 1fr;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

.xk7q2 {
}
.m9v3r {
}
.p4j8w {
}
.z1c6n {
}
.h5t2y {
}
