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

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: "Rajdhani", sans-serif;
  background-color: #4399d7;
  color: #fff;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

:root {
  --c-header: #12444b;
  --c-footer: #12444b;
  --c-bg: #4399d7;
  --c-btn-primary: #dd55f4;
  --c-btn-secondary: #23a1d9;
  --c-text: #fff;
  --c-text-dark: #0d2e33;
  --c-accent: #dd55f4;
  --c-card: #0f3a41;
  --c-card-alt: #163f47;
  --c-border: #1e5f6b;
  --c-gold: #f5c842;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  --transition: 0.25s ease;
}

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

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition:
    transform 0.15s,
    box-shadow 0.15s,
    filter 0.15s;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}
.btn:active {
  transform: translateY(0);
}
.btn--primary {
  background: linear-gradient(135deg, #dd55f4, #a020c8);
  color: #fff;
  box-shadow: 0 4px 14px rgba(221, 85, 244, 0.45);
}
.btn--secondary {
  background: linear-gradient(135deg, #23a1d9, #1677a8);
  color: #fff;
  box-shadow: 0 4px 14px rgba(35, 161, 217, 0.35);
}
.btn--outline {
  background: transparent;
  border: 2px solid var(--c-btn-secondary);
  color: var(--c-btn-secondary);
}
.btn--outline:hover {
  background: var(--c-btn-secondary);
  color: #fff;
}
.btn--sm {
  padding: 7px 16px;
  font-size: 0.875rem;
}
.btn--lg {
  padding: 14px 32px;
  font-size: 1.15rem;
}
.btn--pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(221, 85, 244, 0.5);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(221, 85, 244, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
@keyframes jackpotCount {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

.section {
  padding: 60px 0;
}
.section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.section-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  margin-bottom: 40px;
}
.section-title span {
  color: var(--c-accent);
}

/* ===== HEADER ===== */
.site-header {
  background: var(--c-header);
  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 16px;
  max-width: 1280px;
  margin: 0 auto;
}
.header-logo img {
  height: 44px;
  width: auto;
  filter: drop-shadow(0 2px 6px rgba(221, 85, 244, 0.4));
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.header-nav a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
  transition:
    background var(--transition),
    color var(--transition);
}
.header-nav a:hover,
.header-nav a.active {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.header-nav a svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.header-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.jackpot-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--c-gold);
  border-radius: var(--radius-sm);
  padding: 5px 12px;
  font-size: 0.82rem;
  color: var(--c-gold);
  font-weight: 700;
  letter-spacing: 0.03em;
}
.jackpot-badge svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.jackpot-val {
  font-size: 1rem;
  animation: jackpotCount 2.5s ease-in-out infinite;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  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;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--c-header);
  z-index: 999;
  flex-direction: column;
  padding: 80px 24px 32px;
  overflow-y: auto;
  animation: fadeIn 0.25s ease;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
}
.mobile-menu a svg {
  width: 20px;
  height: 20px;
}
.mobile-menu-buttons {
  display: flex;
  gap: 8px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.mobile-menu-buttons .btn {
  flex: 1;
  min-width: 120px;
}

.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0a2830 0%, #12444b 40%, #1a3a5c 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("/banmin.jpeg");
  background-size: cover;
  background-position: center;
  opacity: 0.55;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 30, 40, 0.9) 0%,
    rgba(10, 30, 40, 0.5) 60%,
    transparent 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 16px;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}
.hero-inner {
  max-width: 600px;
  animation: slideInLeft 0.8s ease both;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(221, 85, 244, 0.2);
  border: 1px solid rgba(221, 85, 244, 0.4);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 20px;
}
.hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}
.hero h1 span {
  color: var(--c-accent);
}
.hero-desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
  max-width: 480px;
  line-height: 1.6;
}
.hero-stats {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.hero-stat {
  text-align: center;
}
.hero-stat-val {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-gold);
  line-height: 1;
}
.hero-stat-lbl {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.content-wrapper {
  flex: 1;
  padding: 32px 0 60px;
}

.card {
  background: var(--c-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--c-border);
  padding: 24px;
  box-shadow: var(--shadow);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

.faq-wrap {
  max-width: 860px;
  margin: 0 auto;
}
.faq-item {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open {
  border-color: var(--c-accent);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: "Rajdhani", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  transition: background var(--transition);
}
.faq-q:hover {
  background: rgba(255, 255, 255, 0.05);
}
.faq-q svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--c-accent);
}
.faq-item.open .faq-q svg {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s;
}
.faq-item.open .faq-a {
  max-height: 600px;
}
.faq-a-inner {
  padding: 0 20px 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
  line-height: 1.7;
}

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.screenshot-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid var(--c-border);
  cursor: pointer;
  position: relative;
  transition:
    border-color var(--transition),
    transform var(--transition);
}
.screenshot-item:hover {
  border-color: var(--c-accent);
  transform: scale(1.03);
}
.screenshot-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.screenshot-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.screenshot-item:hover .screenshot-overlay {
  background: rgba(221, 85, 244, 0.2);
}
.screenshot-overlay svg {
  color: #fff;
  width: 36px;
  height: 36px;
  opacity: 0;
  transition: opacity var(--transition);
}
.screenshot-item:hover .screenshot-overlay svg {
  opacity: 1;
}

.slider-wrap {
  position: relative;
  overflow: hidden;
}
.slider-track {
  display: flex;
  gap: 12px;
  transition: transform 0.4s ease;
}
.slider-track .screenshot-item {
  flex: 0 0 80%;
  scroll-snap-align: start;
}
.slider-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  transition:
    background var(--transition),
    transform var(--transition);
}
.slider-dot.active {
  background: var(--c-accent);
  transform: scale(1.3);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open {
  display: flex;
}
.lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* ===== CASINOS RATING ===== */
.casino-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}
.casino-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 20px;
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 16px;
  align-items: center;
  transition:
    border-color var(--transition),
    transform var(--transition);
  position: relative;
}
.casino-card:hover {
  border-color: var(--c-btn-secondary);
  transform: translateY(-2px);
}
.casino-card.top-1 {
  border-color: var(--c-gold);
  background: linear-gradient(135deg, #1a3a20 0%, var(--c-card) 100%);
}
.casino-card.top-2 {
  border-color: #c0c0c0;
  background: linear-gradient(135deg, #1e2a3a 0%, var(--c-card) 100%);
}
.casino-card.top-3 {
  border-color: #cd7f32;
  background: linear-gradient(135deg, #2a1e14 0%, var(--c-card) 100%);
}
.casino-num {
  position: absolute;
  top: -10px;
  left: 12px;
  background: var(--c-btn-secondary);
  color: #fff;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
}
.casino-card.top-1 .casino-num {
  background: var(--c-gold);
  color: #111;
}
.casino-card.top-2 .casino-num {
  background: #aaa;
  color: #111;
}
.casino-card.top-3 .casino-num {
  background: #cd7f32;
  color: #111;
}
.casino-logo {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #1e5060;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
  border: 1px solid var(--c-border);
}
.casino-body {
  min-width: 0;
}
.casino-name-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
  flex-wrap: wrap;
}
.casino-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}
.casino-flag {
  font-size: 1.1rem;
}
.casino-available {
  font-size: 0.75rem;
  background: rgba(35, 161, 217, 0.2);
  color: var(--c-btn-secondary);
  border: 1px solid rgba(35, 161, 217, 0.4);
  padding: 2px 7px;
  border-radius: 10px;
  font-weight: 600;
}
.casino-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.88rem;
  color: var(--c-gold);
  font-weight: 700;
  margin-bottom: 6px;
}
.casino-rating svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}
.casino-bonus {
  font-size: 0.95rem;
  font-weight: 600;
  color: #6cf;
  margin-bottom: 6px;
}
.casino-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}
.casino-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}
.casino-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
  flex-shrink: 0;
}
.casino-actions .btn {
  min-width: 130px;
}
.casino-tc {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 4px;
  text-align: right;
}
.casino-tc a {
  color: inherit;
  text-decoration: underline;
}

.pagination-load {
  text-align: center;
  margin-top: 8px;
}

.mobile-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.phone-frame {
  display: flex;
  justify-content: center;
}
.phone-frame-inner {
  position: relative;
  width: 240px;
  background: #1a1a2e;
  border-radius: 38px;
  padding: 18px 14px;
  border: 3px solid #2a2a4a;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.phone-frame-inner::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 6px;
  background: #2a2a4a;
  border-radius: 4px;
}
.phone-frame-inner img {
  border-radius: 22px;
  width: 100%;
  display: block;
}
.phone-frame-inner::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 5px;
  background: #2a2a4a;
  border-radius: 3px;
}

.app-info h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.app-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
.app-table td {
  padding: 9px 12px;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--c-border);
  color: rgba(255, 255, 255, 0.85);
}
.app-table td:first-child {
  color: rgba(255, 255, 255, 0.55);
  width: 42%;
}
.app-table tr:last-child td {
  border-bottom: none;
}
.download-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  transition:
    background var(--transition),
    border-color var(--transition);
}
.dl-btn:hover {
  background: var(--c-card-alt);
  border-color: var(--c-btn-secondary);
  color: #fff;
}
.dl-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.winners-table-wrap {
  overflow-x: auto;
}
.winners-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 460px;
}
.winners-table th {
  background: var(--c-header);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 2px solid var(--c-border);
}
.winners-table td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--c-border);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}
.winners-table tr:hover td {
  background: rgba(255, 255, 255, 0.04);
}
.winners-table .rank {
  font-weight: 700;
  color: var(--c-gold);
}
.winners-table .rank-1 {
  color: var(--c-gold);
}
.winners-table .rank-2 {
  color: #c0c0c0;
}
.winners-table .rank-3 {
  color: #cd7f32;
}
.winners-table .win-amount {
  font-weight: 700;
  color: #6cf;
}
.winners-table .multiplier {
  color: var(--c-accent);
  font-weight: 700;
}

.review-content {
  background: var(--c-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border);
  padding: 36px 40px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--c-border);
}
.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #23a1d9, #dd55f4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  flex-shrink: 0;
  color: #fff;
}
.author-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
.author-info p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}
.author-info a {
  color: var(--c-btn-secondary);
  font-size: 0.82rem;
}

.review-content h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin: 24px 0 10px;
  line-height: 1.3;
}
.review-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin: 20px 0 8px;
}
.review-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin: 16px 0 6px;
}
.review-content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 14px;
  line-height: 1.7;
  font-size: 1rem;
}
.review-content ul,
.review-content ol {
  margin: 0 0 14px 22px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}
.review-content li {
  margin-bottom: 4px;
}
.review-content strong {
  color: #fff;
  font-weight: 700;
}
.review-content em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.75);
}
.review-content a {
  color: var(--c-btn-secondary);
  text-decoration: underline;
}
.review-content a:hover {
  color: var(--c-accent);
}
.review-content blockquote {
  border-left: 4px solid var(--c-accent);
  padding: 10px 18px;
  margin: 16px 0;
  background: rgba(221, 85, 244, 0.08);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: rgba(255, 255, 255, 0.85);
  font-style: italic;
}
.review-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  overflow-x: auto;
  display: block;
}
.review-content table th {
  background: var(--c-header);
  padding: 10px 14px;
  text-align: left;
  font-weight: 700;
  border: 1px solid var(--c-border);
  color: #fff;
  font-size: 0.9rem;
}
.review-content table td {
  padding: 9px 14px;
  border: 1px solid var(--c-border);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}
.review-content table tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.04);
}
.review-content hr {
  border: none;
  border-top: 1px solid var(--c-border);
  margin: 24px 0;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--c-footer);
  padding: 40px 0 0;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}
.footer-top {
  display: grid;
  grid-template-columns: 240px 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand .footer-logo img {
  height: 40px;
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: 16px;
}
.footer-col h5 {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  padding: 3px 0;
  transition: color var(--transition);
}
.footer-col a:hover {
  color: #fff;
}
.footer-email {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 8px;
}
.footer-email svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.footer-middle {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-logos-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 12px;
}
.footer-logos-row img {
  height: 28px;
  width: auto;
  filter: brightness(0.75) grayscale(0.3);
  transition: filter var(--transition);
}
.footer-logos-row img:hover {
  filter: brightness(1) grayscale(0);
}
.footer-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 5px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  white-space: nowrap;
}
.trust-badge svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.trust-badge-18 {
  background: rgba(221, 85, 244, 0.15);
  border-color: rgba(221, 85, 244, 0.35);
  color: var(--c-accent);
  font-size: 0.85rem;
  font-weight: 700;
}

.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
.social-link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition:
    background var(--transition),
    color var(--transition);
}
.social-link:hover {
  background: var(--c-btn-secondary);
  color: #fff;
}
.social-link svg {
  width: 16px;
  height: 16px;
}

.footer-bottom {
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
}
.footer-flag {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}
.footer-flag img {
  width: 24px;
  height: auto;
  border-radius: 2px;
}

.bonus-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: linear-gradient(90deg, #0f3a41, #12444b);
  border-top: 2px solid var(--c-accent);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  animation: fadeInUp 0.5s ease both;
  animation-delay: 0.3s;
}
.bonus-widget-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}
.bonus-widget-text span {
  color: var(--c-gold);
  font-size: 1.05rem;
}
.bonus-widget-close {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  font-size: 1.2rem;
  padding: 4px;
  line-height: 1;
  transition: color var(--transition);
}
.bonus-widget-close:hover {
  color: #fff;
}

.info-page {
  background: var(--c-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border);
  padding: 40px;
  margin: 32px 0;
}
.info-page h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}
.info-page h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 24px 0 10px;
  color: #fff;
}
.info-page h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 18px 0 8px;
  color: rgba(255, 255, 255, 0.9);
}
.info-page p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
  line-height: 1.75;
  font-size: 1rem;
}
.info-page ul,
.info-page ol {
  margin: 0 0 14px 22px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}
.info-page li {
  margin-bottom: 4px;
}
.info-page a {
  color: var(--c-btn-secondary);
  text-decoration: underline;
}
.info-page a:hover {
  color: var(--c-accent);
}
.info-page strong {
  color: #fff;
}
.info-page hr {
  border: none;
  border-top: 1px solid var(--c-border);
  margin: 20px 0;
}
.info-page table {
  width: 100%;
  border-collapse: collapse;
  margin: 14px 0;
  overflow-x: auto;
  display: block;
}
.info-page table th {
  background: var(--c-header);
  padding: 10px 14px;
  text-align: left;
  font-weight: 700;
  border: 1px solid var(--c-border);
  color: #fff;
}
.info-page table td {
  padding: 9px 14px;
  border: 1px solid var(--c-border);
  color: rgba(255, 255, 255, 0.8);
}
.info-page table tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.04);
}
.info-page .last-updated {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid var(--c-border);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition);
}
.breadcrumb a:hover {
  color: #fff;
}
.breadcrumb span {
  color: rgba(255, 255, 255, 0.35);
}

.text-center {
  text-align: center;
}
.mt1 {
  margin-top: 8px;
}
.mt2 {
  margin-top: 16px;
}
.mt3 {
  margin-top: 24px;
}
.mt4 {
  margin-top: 32px;
}
.mb1 {
  margin-bottom: 8px;
}
.mb2 {
  margin-bottom: 16px;
}
.mb3 {
  margin-bottom: 24px;
}
.mb4 {
  margin-bottom: 32px;
}
.hidden {
  display: none !important;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.fade-in {
  animation: fadeInUp 0.6s ease both;
}
.fade-in-2 {
  animation: fadeInUp 0.6s ease 0.2s both;
}
.fade-in-3 {
  animation: fadeInUp 0.6s ease 0.4s both;
}

.wp-block-separator {
  display: none;
}
.entry-meta {
  display: none;
}
.post-thumbnail {
  display: none;
}
#wpadminbar {
  display: none !important;
}

@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .screenshots-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mobile-block {
    grid-template-columns: 1fr;
  }
  .phone-frame {
    order: -1;
  }
  .casino-card {
    grid-template-columns: 50px 1fr;
  }
  .casino-actions {
    grid-column: 1/-1;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
  }
  .casino-tc {
    text-align: left;
  }
}
@media (max-width: 768px) {
  .header-nav {
    display: none;
  }
  .burger {
    display: flex;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .section {
    padding: 40px 0;
  }
  .section-title {
    font-size: 1.6rem;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .screenshots-grid {
    display: none;
  }
  .slider-wrap {
    display: block;
  }
  .review-content {
    padding: 24px 20px;
  }
  .info-page {
    padding: 24px 18px;
  }
  .casino-card {
    grid-template-columns: 1fr;
    padding: 18px 16px;
  }
  .casino-logo {
    width: 48px;
    height: 48px;
  }
  .casino-num {
    top: -8px;
    left: 10px;
  }
  .hero-stats {
    gap: 16px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .bonus-widget {
    flex-wrap: wrap;
    padding: 10px 14px;
  }
}
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.7rem;
  }
  .hero-desc {
    font-size: 1rem;
  }
  .hero-btns .btn--lg {
    padding: 12px 20px;
    font-size: 1rem;
  }
  .header-inner {
    padding: 8px 12px;
  }
  .header-logo img {
    height: 36px;
  }
}

@media (min-width: 769px) {
  .slider-wrap {
    display: none;
  }
  .screenshots-grid {
    display: grid;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 620px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}
.form-group label span {
  color: var(--c-accent);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  color: #fff;
  font-family: "Rajdhani", sans-serif;
  font-size: 1rem;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--c-btn-secondary);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.form-group select option {
  background: var(--c-card);
  color: #fff;
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
