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

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

:root {
  --bg: #0e1117;
  --bg2: #12171f;
  --hdr: #161b25;
  --btn-primary: #42506c;
  --btn-primary-hover: #4f6085;
  --btn-secondary: #ec0433;
  --btn-secondary-hover: #d00320;
  --text: #e8eaf0;
  --text-muted: #9aa0b0;
  --border: #252d3d;
  --accent: #ec0433;
  --gold: #f5c518;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.6);
  --transition: 0.25s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: "Sofia Sans", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: #ff3358;
}

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

.box {
  background: var(--hdr);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 24px;
}

.hdr-wrap {
  background: var(--hdr);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.header.box {
  background: transparent;
  margin-bottom: 0;
  padding: 12px 0;
  border-radius: 0;
}

.k9m3r-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.logo-link {
  flex-shrink: 0;
}
.logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.online-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
  white-space: nowrap;
}
.online-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(0.85);
  }
}

.desk-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.desk-nav li a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 12px;
  border-radius: 8px;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  transition:
    background var(--transition),
    color var(--transition);
}
.desk-nav li a:hover {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}
.nav-ico {
  font-size: 15px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 20px;
  border-radius: 8px;
  font-family: "Sofia Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  outline: none;
  transition:
    background var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}
.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--btn-primary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--btn-primary-hover);
  color: #fff;
}
.btn-secondary {
  background: var(--btn-secondary);
  color: #fff;
}
.btn-secondary:hover {
  background: var(--btn-secondary-hover);
  color: #fff;
}
.btn-gold {
  background: linear-gradient(135deg, #f5c518, #e6a800);
  color: #1a1a1a;
  font-weight: 800;
}
.btn-gold:hover {
  background: linear-gradient(135deg, #ffd740, #f5c518);
  color: #1a1a1a;
}
.btn-sm {
  padding: 7px 14px;
  font-size: 13px;
}
.btn-lg {
  padding: 14px 32px;
  font-size: 16px;
  border-radius: 10px;
}
.btn-block {
  width: 100%;
  display: flex;
}
.btn-dark {
  background: #1a2235;
  color: #fff;
  border: 1px solid var(--border);
}
.btn-dark:hover {
  background: #222d42;
  color: #fff;
}
.btn-green {
  background: #16a34a;
  color: #fff;
}
.btn-green:hover {
  background: #15803d;
  color: #fff;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  gap: 5px;
  padding: 4px;
  border-radius: 6px;
  transition: background var(--transition);
}
.burger:hover {
  background: rgba(255, 255, 255, 0.08);
}
.burger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: #e8eaf0;
  border-radius: 2px;
  transition:
    transform 0.3s,
    opacity 0.3s;
}
.burger.active .burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.active .burger-line:nth-child(2) {
  opacity: 0;
}
.burger.active .burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mob-nav {
  display: none;
  position: fixed;
  top: 69px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(14, 17, 23, 0.98);
  backdrop-filter: blur(8px);
  z-index: 999;
  flex-direction: column;
  padding: 20px 16px;
  gap: 8px;
  overflow-y: auto;
}
.mob-nav.active {
  display: flex;
}
.mob-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 10px;
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
  border: 1px solid var(--border);
  transition: background var(--transition);
}
.mob-nav a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}
.mob-nav-divider {
  height: 1px;
  background: var(--border);
  margin: 8px 0;
}

.hero-wrap {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0d14 0%, #161b25 50%, #0e1117 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("/ban.jpeg");
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(14, 17, 23, 0.95) 40%,
    rgba(14, 17, 23, 0.6) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 0;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding-left: 16px;
  padding-right: 16px;
}
.hero-tag {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 12px;
}
.hero-title span {
  color: var(--accent);
}
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-muted);
  margin-bottom: 24px;
  max-width: 560px;
}
.hero-bonus {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(236, 4, 51, 0.12);
  border: 1px solid rgba(236, 4, 51, 0.3);
  border-radius: 10px;
  padding: 12px 20px;
  margin-bottom: 28px;
  font-weight: 700;
  color: #fff;
  font-size: 1rem;
}
.hero-bonus-ico {
  font-size: 1.4rem;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
}
.hero-badge-item span:first-child {
  font-size: 18px;
}

.section-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-title::after {
  content: "";
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, var(--accent), transparent);
  border-radius: 1px;
}

.info-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 8px;
}
.info-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 500px;
}
.info-table tr {
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.info-table tr:hover {
  background: rgba(255, 255, 255, 0.03);
}
.info-table td {
  padding: 13px 16px;
  font-size: 14px;
  vertical-align: middle;
}
.info-table td:first-child {
  width: 42%;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 500;
  min-width: 180px;
}
.info-table td:last-child {
  color: var(--text);
  font-weight: 600;
}
.tbl-ico {
  font-size: 18px;
  flex-shrink: 0;
}

.mirrors-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.live-time {
  font-size: 13px;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid var(--border);
}

.mirrors-table {
  width: 100%;
  border-collapse: collapse;
  overflow-x: auto;
  display: block;
  min-width: 400px;
}
.mirrors-table thead tr {
  background: rgba(255, 255, 255, 0.04);
}
.mirrors-table th {
  padding: 11px 16px;
  text-align: left;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
  border-bottom: 1px solid var(--border);
}
.mirrors-table td {
  padding: 13px 16px;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.mirrors-table tr:last-child td {
  border-bottom: none;
}
.mirrors-table a {
  color: #60a5fa;
  font-weight: 600;
}
.mirrors-table a:hover {
  color: #93c5fd;
}
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #22c55e;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}

.app-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.app-info {
  flex: 1;
  min-width: 280px;
}
.app-table {
  width: 100%;
  border-collapse: collapse;
}
.app-table tr {
  border-bottom: 1px solid var(--border);
}
.app-table td {
  padding: 10px 12px;
  font-size: 14px;
  vertical-align: middle;
}
.app-table td:first-child {
  color: var(--text-muted);
  width: 45%;
}
.app-table td:last-child {
  font-weight: 600;
}
.app-btns {
  flex: 1;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.app-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  transition: all var(--transition);
  text-decoration: none;
}
.app-btn-ios {
  background: #1c1c1e;
  border: 1px solid #3a3a3c;
  color: #fff;
}
.app-btn-ios:hover {
  background: #2c2c2e;
  color: #fff;
}
.app-btn-android {
  background: #014d40;
  border: 1px solid #016b56;
  color: #fff;
}
.app-btn-android:hover {
  background: #025c4c;
  color: #fff;
}
.app-btn-apk {
  background: #4a1020;
  border: 1px solid #6b1630;
  color: #fff;
}
.app-btn-apk:hover {
  background: #5a1428;
  color: #fff;
}
.app-btn-ico {
  font-size: 24px;
  flex-shrink: 0;
}
.app-btn-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.app-btn-text small {
  font-size: 11px;
  opacity: 0.7;
  font-weight: 400;
}

.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #000;
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--radius);
}

.bonuses-grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
}
.bonus-card {
  flex: 0 0 calc(33.333% - 11px);
  min-width: 260px;
  border-radius: var(--radius-lg);
  padding: 24px;
  background: var(--bg2);
  border: 1px solid var(--border);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.bonus-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  opacity: 0.07;
}
.bonus-card-1::before {
  background: var(--accent);
}
.bonus-card-2::before {
  background: #22c55e;
}
.bonus-card-3::before {
  background: var(--gold);
}
.bonus-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: 20px;
  display: inline-block;
  width: fit-content;
}
.bonus-tag-1 {
  background: rgba(236, 4, 51, 0.15);
  color: var(--accent);
}
.bonus-tag-2 {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
}
.bonus-tag-3 {
  background: rgba(245, 197, 24, 0.15);
  color: var(--gold);
}
.bonus-ico {
  font-size: 2.5rem;
}
.bonus-name {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
.bonus-amount {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent);
}
.bonus-amount-2 {
  color: #22c55e;
}
.bonus-amount-3 {
  color: var(--gold);
}
.bonus-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}
.bonus-slider-nav {
  display: none;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}
.bonus-slider-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg2);
  color: var(--text);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.bonus-slider-btn:hover {
  background: var(--btn-primary);
  color: #fff;
  border-color: var(--btn-primary);
}
.slider-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: background var(--transition);
}
.slider-dot.active {
  background: var(--accent);
}

.slot-machine {
  background: linear-gradient(135deg, #12171f, #1a2235);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}
.slot-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
}
.slot-reels {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
}
.slot-reel {
  width: 80px;
  height: 90px;
  background: var(--hdr);
  border: 2px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  overflow: hidden;
  position: relative;
  transition: border-color var(--transition);
}
.slot-reel.spinning {
  border-color: var(--accent);
  animation: reel-glow 0.15s infinite alternate;
}
@keyframes reel-glow {
  from {
    box-shadow: 0 0 8px rgba(236, 4, 51, 0.3);
  }
  to {
    box-shadow: 0 0 18px rgba(236, 4, 51, 0.7);
  }
}
.slot-symbol {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  animation: none;
}
.slot-symbol.spinning {
  animation: spin-symbols 0.1s linear infinite;
}
@keyframes spin-symbols {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}
.slot-result {
  min-height: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}
.slot-win {
  color: #22c55e;
  font-weight: 800;
  font-size: 1.1rem;
  animation: win-appear 0.4s ease;
}
.slot-lose {
  color: var(--text-muted);
  font-weight: 600;
}
@keyframes win-appear {
  from {
    transform: scale(0.7);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.slot-win-bonus {
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 700;
}

.review-content {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
}
.review-content h1,
.review-content h2,
.review-content h3,
.review-content h4,
.review-content h5,
.review-content h6 {
  color: #fff;
  margin: 24px 0 12px;
  line-height: 1.3;
  font-weight: 700;
}
.review-content h2 {
  font-size: 1.5rem;
}
.review-content h3 {
  font-size: 1.25rem;
}
.review-content p {
  margin-bottom: 16px;
}
.review-content ul,
.review-content ol {
  margin: 12px 0 16px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.review-content li {
  color: var(--text);
}
.review-content a {
  color: #60a5fa;
  text-decoration: underline;
}
.review-content a:hover {
  color: #93c5fd;
}
.review-content strong {
  color: #fff;
  font-weight: 700;
}
.review-content em {
  color: var(--text-muted);
  font-style: italic;
}
.review-content blockquote {
  border-left: 3px solid var(--accent);
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0 8px 8px 0;
  margin: 16px 0;
  font-style: italic;
  color: var(--text-muted);
}
.review-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  overflow-x: auto;
  display: block;
}
.review-content th {
  background: rgba(255, 255, 255, 0.06);
  padding: 10px 14px;
  text-align: left;
  font-weight: 700;
  color: #fff;
  border-bottom: 2px solid var(--border);
}
.review-content td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}
.review-content img {
  border-radius: 8px;
  margin: 12px 0;
}

.author-box {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 8px;
}
.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--border);
}
.author-info {
  flex: 1;
}
.author-name {
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.author-bio {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 8px;
}
.author-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.author-link {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: all var(--transition);
}
.author-link:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.comments-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}
.comment-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
}
.comment-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.comment-author {
  font-weight: 700;
  color: #fff;
  font-size: 15px;
}
.comment-date {
  font-size: 12px;
  color: var(--text-muted);
}
.comment-stars {
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 1px;
}
.comment-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

.comment-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.form-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 200px;
}
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}
.form-control {
  background: var(--hdr);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 11px 14px;
  color: var(--text);
  font-family: "Sofia Sans", sans-serif;
  font-size: 14px;
  outline: none;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
  width: 100%;
}
.form-control:focus {
  border-color: var(--btn-primary);
  box-shadow: 0 0 0 3px rgba(66, 80, 108, 0.2);
}
.form-control::placeholder {
  color: #5a6070;
}
textarea.form-control {
  resize: vertical;
  min-height: 100px;
}
.star-rating {
  display: flex;
  flex-direction: row-reverse;
  gap: 4px;
  width: fit-content;
}
.star-rating input {
  display: none;
}
.star-rating label {
  font-size: 24px;
  color: var(--border);
  cursor: pointer;
  transition: color var(--transition);
}
.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
  color: var(--gold);
}
.form-success {
  display: none;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #22c55e;
  border-radius: 8px;
  padding: 12px 16px;
  font-weight: 600;
  font-size: 14px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open {
  border-color: rgba(66, 80, 108, 0.5);
}
.faq-q {
  width: 100%;
  background: transparent;
  border: none;
  padding: 18px 20px;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #fff;
  font-family: "Sofia Sans", sans-serif;
  font-size: 15px;
  font-weight: 700;
  transition: background var(--transition);
}
.faq-q:hover {
  background: rgba(255, 255, 255, 0.03);
}
.faq-ico {
  flex-shrink: 0;
  font-size: 20px;
  transition: transform 0.3s ease;
  color: var(--text-muted);
}
.faq-item.open .faq-ico {
  transform: rotate(45deg);
  color: var(--accent);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s ease;
}
.faq-item.open .faq-a {
  max-height: 400px;
}
.faq-a-inner {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-wrap {
  background: var(--hdr);
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.footer-inner {
  padding: 48px 0 24px;
}
.footer-top {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.footer-col {
  flex: 1;
  min-width: 200px;
}
.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.footer-logo-img {
  height: 40px;
  width: auto;
  margin-bottom: 12px;
}
.footer-country {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.footer-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav li a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-nav li a:hover {
  color: #fff;
}

.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  transition: all var(--transition);
}
.social-link:hover {
  border-color: var(--accent);
  color: #fff;
  background: rgba(236, 4, 51, 0.08);
}
.social-ico {
  font-size: 16px;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: 6px;
  border: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
  background: rgba(255, 255, 255, 0.03);
  transition: all var(--transition);
}
.footer-badge:hover {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text);
}
.footer-badge-ico {
  font-size: 14px;
}

.footer-divider {
  height: 1px;
  background: var(--border);
  margin: 24px 0;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-muted);
}
.footer-legal {
  font-size: 12px;
  color: #4a5568;
  line-height: 1.6;
  margin-top: 16px;
}

.widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 990;
  background: linear-gradient(90deg, #1a0a0e, #161b25);
  border-top: 2px solid var(--accent);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transform: translateY(0);
  transition: transform 0.35s ease;
  box-shadow: 0 -4px 24px rgba(236, 4, 51, 0.15);
}
.widget.hidden {
  transform: translateY(100%);
}
.widget-left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.widget-ico {
  font-size: 1.6rem;
  flex-shrink: 0;
}
.widget-text {
  min-width: 0;
}
.widget-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.widget-bonus {
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.widget-close {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 20px;
  padding: 4px;
  flex-shrink: 0;
  line-height: 1;
  transition: color var(--transition);
}
.widget-close:hover {
  color: #fff;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.mt1 {
  margin-top: 8px;
}
.mt2 {
  margin-top: 16px;
}
.mt3 {
  margin-top: 24px;
}
.mb1 {
  margin-bottom: 8px;
}
.mb2 {
  margin-bottom: 16px;
}
.mb3 {
  margin-bottom: 24px;
}
.text-muted {
  color: var(--text-muted);
}
.text-center {
  text-align: center;
}
.d-flex {
  display: flex;
}
.align-center {
  align-items: center;
}
.gap-2 {
  gap: 8px;
}
.w-100 {
  width: 100%;
}

.x7b2f {
  display: none;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
.p4n8t {
  color: transparent;
  font-size: 0;
  line-height: 0;
  height: 0;
  overflow: hidden;
}
.r4t8p-wrap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.wp-block-image {
  display: none;
}
.elementor-widget {
  display: none;
}
.entry-content-placeholder {
  visibility: hidden;
  height: 0;
  overflow: hidden;
}
.yoast-schema-graph {
  display: none;
}
.m6v2k {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.q9x3z {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
}
.j5h7n {
  display: block;
  color: transparent;
  font-size: 0;
  user-select: none;
  pointer-events: none;
  height: 0;
}
.n3p8r {
  animation: none;
  display: none;
}
.wp-caption {
  display: none;
}
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

body.menu-open {
  overflow: hidden;
}

@media (max-width: 1024px) {
  .desk-nav {
    display: none;
  }
  .burger {
    display: flex;
  }
  .bonus-card {
    flex: 0 0 calc(50% - 8px);
  }
}

@media (max-width: 768px) {
  .hero-wrap {
    min-height: 400px;
  }
  .hero-btns {
    gap: 10px;
  }
  .hero-badge {
    gap: 10px;
  }
  .bonus-card {
    flex: 0 0 calc(85vw - 32px);
  }
  .bonuses-grid {
    padding-left: 16px;
  }
  .bonus-slider-nav {
    display: flex;
  }
  .app-grid {
    flex-direction: column;
  }
  .info-table td:first-child {
    min-width: 140px;
  }
  .footer-top {
    flex-direction: column;
    gap: 24px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .widget-bonus {
    font-size: 12px;
  }
  .form-row {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.7rem;
  }
  .slot-reel {
    width: 64px;
    height: 76px;
    font-size: 2rem;
  }
  .bonus-card {
    flex: 0 0 calc(92vw - 32px);
  }
  .btn-lg {
    padding: 12px 22px;
    font-size: 15px;
  }
}
