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

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

:root {
  --color-header: #222723;
  --color-bg: #0e2f2b;
  --color-btn-login: #02504b;
  --color-btn-signup: #f9c719;
  --color-text: #e8ede9;
  --color-text-muted: #a8b8a9;
  --color-card-bg: #163d38;
  --color-border: #2a4a45;
  --color-accent: #f9c719;
  --color-green-light: #04706a;
  --radius: 10px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: "Roboto", "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

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

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: #ffe066;
}

ul,
ol {
  padding-left: 1.5em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.3;
  color: var(--color-text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: 6px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 14px;
  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);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  filter: brightness(1.1);
  color: inherit;
}

.btn:active {
  transform: translateY(0);
}

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

.btn-signup {
  background: var(--color-btn-signup);
  color: #1a1a1a;
}

.btn-hero {
  background: var(--color-btn-signup);
  color: #1a1a1a;
  padding: 15px 38px;
  font-size: 17px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(249, 199, 25, 0.4);
}

.btn-bonus {
  background: var(--color-btn-signup);
  color: #1a1a1a;
  width: 100%;
  padding: 13px;
  font-size: 15px;
  border-radius: 8px;
}

.btn-get {
  background: var(--color-btn-signup);
  color: #1a1a1a;
  padding: 12px 30px;
  font-size: 15px;
  margin-top: 10px;
}

.btn-slot {
  background: var(--color-btn-login);
  color: #fff;
  padding: 13px 34px;
  font-size: 16px;
  border-radius: 8px;
  margin-top: 16px;
  min-width: 180px;
}

.btn-submit {
  background: var(--color-btn-signup);
  color: #1a1a1a;
  padding: 12px 30px;
  font-size: 15px;
  border-radius: 6px;
  width: 100%;
  margin-top: 6px;
}

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

.x9f2a-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}

.x9f2a-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

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

.x9f2a-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: center;
}

.x9f2a-nav a {
  color: var(--color-text-muted);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 5px;
  transition:
    color 0.2s,
    background 0.2s;
  white-space: nowrap;
}

.x9f2a-nav a:hover {
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.07);
}

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

.x9f2a-online {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--color-text-muted);
  white-space: nowrap;
  margin-right: 4px;
}

.x9f2a-online-dot {
  width: 8px;
  height: 8px;
  background: #2ecc71;
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
  flex-shrink: 0;
}

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

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

.x9f2a-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition:
    transform 0.25s,
    opacity 0.25s;
}

.x9f2a-burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.x9f2a-burger.active span:nth-child(2) {
  opacity: 0;
}

.x9f2a-burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.x9f2a-mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--color-header);
  z-index: 999;
  padding: 16px 20px 24px;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  animation: slideDown 0.25s ease;
}

.x9f2a-mobile-menu.open {
  display: flex;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.x9f2a-mobile-menu a {
  color: var(--color-text-muted);
  font-size: 15px;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-border);
  font-weight: 500;
}

.x9f2a-mobile-menu a:last-child {
  border-bottom: none;
}

.a7k3b-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.a7k3b-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("/tanBan.png");
  background-size: cover;
  background-position: center;
  filter: brightness(0.55);
  z-index: 0;
}

.a7k3b-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(14, 47, 43, 0.92) 0%,
    rgba(14, 47, 43, 0.5) 60%,
    transparent 100%
  );
  z-index: 1;
}

.a7k3b-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 70px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  width: 100%;
}

.a7k3b-hero-badge {
  background: var(--color-btn-login);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
}

.a7k3b-hero-content h1 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  max-width: 560px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
  color: #fff;
}

.a7k3b-hero-content h1 span {
  color: var(--color-accent);
}

.a7k3b-hero-sub {
  font-size: 16px;
  color: #cde0dc;
  max-width: 440px;
  line-height: 1.6;
}

.a7k3b-hero-perks {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.a7k3b-perk {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  color: var(--color-accent);
  font-weight: 600;
}

.a7k3b-perk svg {
  flex-shrink: 0;
}

.m5t1k-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.m5t1k-section {
  padding: 52px 0 20px;
}

.m5t1k-section-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.m5t1k-section-title::before {
  content: "";
  display: block;
  width: 4px;
  height: 24px;
  background: var(--color-accent);
  border-radius: 2px;
  flex-shrink: 0;
}

.p3q7r-breadcrumbs {
  padding: 14px 0;
  background: rgba(0, 0, 0, 0.18);
}

.p3q7r-breadcrumbs ol {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  padding: 0;
  flex-wrap: wrap;
}

.p3q7r-breadcrumbs li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--color-text-muted);
}

.p3q7r-breadcrumbs li a {
  color: var(--color-text-muted);
  transition: color 0.2s;
}

.p3q7r-breadcrumbs li a:hover {
  color: var(--color-accent);
}

.p3q7r-breadcrumbs li.active {
  color: var(--color-accent);
  font-weight: 500;
}

.p3q7r-sep {
  color: #4a6a65;
}

.r8v2x-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.r8v2x-card {
  flex: 1;
  min-width: 260px;
  background: var(--color-card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.r8v2x-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.45);
}

.r8v2x-card-header {
  background: linear-gradient(135deg, #02504b 0%, #04706a 100%);
  padding: 18px 20px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.r8v2x-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(249, 199, 25, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.r8v2x-card-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.r8v2x-card-body {
  padding: 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.r8v2x-card-desc {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.r8v2x-prize {
  font-size: 22px;
  font-weight: 800;
  color: var(--color-accent);
}

.r8v2x-prize-label {
  font-size: 11px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 2px;
}

.r8v2x-timer {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.r8v2x-timer-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 6px;
  padding: 7px 10px;
  min-width: 46px;
}

.r8v2x-timer-num {
  font-size: 20px;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
}

.r8v2x-timer-label {
  font-size: 10px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  margin-top: 2px;
}

.r8v2x-card-footer {
  padding: 0 20px 18px;
}

.s4n9y-bonus-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.s4n9y-bonus-card {
  flex: 1;
  min-width: 260px;
  background: var(--color-card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.s4n9y-bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.45);
}

.s4n9y-bonus-badge {
  background: var(--color-btn-signup);
  color: #1a1a1a;
  text-align: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px;
}

.s4n9y-bonus-body {
  padding: 22px 20px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.s4n9y-bonus-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-text);
}

.s4n9y-bonus-amount {
  font-size: 28px;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1.1;
}

.s4n9y-bonus-sub {
  font-size: 13px;
  color: var(--color-text-muted);
}

.s4n9y-bonus-features {
  list-style: none;
  padding: 0;
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.s4n9y-bonus-features li {
  font-size: 13px;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 7px;
}

.s4n9y-bonus-features li::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background: var(--color-btn-login);
  border-radius: 50%;
  flex-shrink: 0;
}

.s4n9y-bonus-footer {
  padding: 0 20px 20px;
}

.g1e4k-slot-wrap {
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 36px 24px;
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
  box-shadow: var(--shadow);
}

.g1e4k-slot-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}

.g1e4k-slot-sub {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

.g1e4k-reels {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

.g1e4k-reel {
  width: 72px;
  height: 80px;
  background: #0a2320;
  border: 2px solid var(--color-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  overflow: hidden;
  position: relative;
}

.g1e4k-reel.spinning .g1e4k-symbol {
  animation: reelSpin 0.15s steps(1) infinite;
}

@keyframes reelSpin {
  0% {
    content: "🍋";
  }
  20% {
    content: "7️⃣";
  }
  40% {
    content: "🍒";
  }
  60% {
    content: "⭐";
  }
  80% {
    content: "💎";
  }
  100% {
    content: "🍋";
  }
}

.g1e4k-symbol {
  font-size: 38px;
  line-height: 1;
  transition: opacity 0.1s;
}

.g1e4k-result {
  min-height: 58px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.g1e4k-win-msg {
  display: none;
  color: var(--color-accent);
  font-size: 18px;
  font-weight: 700;
  animation: fadeInUp 0.4s;
}

.g1e4k-lose-msg {
  display: none;
  color: #e05a5a;
  font-size: 15px;
  font-weight: 600;
  animation: fadeInUp 0.4s;
}

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

.q2h8p-review-content {
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 36px 40px;
  box-shadow: var(--shadow);
}

.q2h8p-author-block {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
}

.q2h8p-author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-btn-login);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.q2h8p-author-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

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

.q2h8p-author-role {
  font-size: 13px;
  color: var(--color-accent);
  font-weight: 500;
}

.q2h8p-author-bio {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.q2h8p-author-link {
  font-size: 13px;
  color: var(--color-btn-login);
  font-weight: 500;
}

.q2h8p-article-content {
  font-size: 15px;
  line-height: 1.75;
  color: var(--color-text);
}

.q2h8p-article-content h1,
.q2h8p-article-content h2,
.q2h8p-article-content h3,
.q2h8p-article-content h4,
.q2h8p-article-content h5,
.q2h8p-article-content h6 {
  margin-top: 28px;
  margin-bottom: 12px;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--color-text);
}

.q2h8p-article-content p {
  margin-bottom: 16px;
}

.q2h8p-article-content ul,
.q2h8p-article-content ol {
  margin-bottom: 16px;
  padding-left: 1.6em;
}

.q2h8p-article-content li {
  margin-bottom: 6px;
  line-height: 1.6;
}

.q2h8p-article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px auto;
  overflow-x: auto;
  display: block;
}

.q2h8p-article-content th,
.q2h8p-article-content td {
  border: 1px solid var(--color-border);
  padding: 10px 16px;
  text-align: left;
  font-size: 14px;
}

.q2h8p-article-content th {
  background: rgba(2, 80, 75, 0.4);
  font-weight: 700;
  color: var(--color-text);
}

.q2h8p-article-content td {
  color: var(--color-text-muted);
}

.q2h8p-article-content a {
  color: var(--color-accent);
}

.q2h8p-article-content blockquote {
  border-left: 4px solid var(--color-btn-login);
  padding: 12px 20px;
  margin: 20px 0;
  background: rgba(2, 80, 75, 0.18);
  border-radius: 0 6px 6px 0;
  color: var(--color-text-muted);
  font-style: italic;
}

.q2h8p-article-content strong {
  color: var(--color-text);
  font-weight: 700;
}

.q2h8p-article-content em {
  color: var(--color-text-muted);
}

.q2h8p-article-content hr {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 28px 0;
}

.j7m3n-reviews {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.j7m3n-review-card {
  flex: 1;
  min-width: 220px;
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}

.j7m3n-review-card:hover {
  transform: translateY(-3px);
}

.j7m3n-reviewer-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.j7m3n-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--color-btn-login),
    var(--color-green-light)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.j7m3n-reviewer-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
}

.j7m3n-reviewer-date {
  font-size: 11px;
  color: var(--color-text-muted);
}

.j7m3n-stars {
  display: flex;
  gap: 2px;
}

.j7m3n-stars svg {
  color: var(--color-accent);
}

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

.j7m3n-review-form {
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  margin-top: 32px;
  box-shadow: var(--shadow);
}

.j7m3n-form-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

.j7m3n-form-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.j7m3n-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 200px;
}

.j7m3n-field-full {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  margin-top: 14px;
}

.j7m3n-label {
  font-size: 13px;
  color: var(--color-text-muted);
  font-weight: 500;
}

.j7m3n-input,
.j7m3n-textarea {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 10px 14px;
  color: var(--color-text);
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  outline: none;
}

.j7m3n-input:focus,
.j7m3n-textarea:focus {
  border-color: var(--color-btn-login);
  box-shadow: 0 0 0 3px rgba(2, 80, 75, 0.25);
}

.j7m3n-textarea {
  min-height: 100px;
  resize: vertical;
}

.j7m3n-success {
  display: none;
  background: rgba(2, 80, 75, 0.2);
  border: 1px solid var(--color-btn-login);
  border-radius: 6px;
  padding: 14px 18px;
  color: #7de8a0;
  font-size: 14px;
  margin-top: 12px;
  text-align: center;
}

.z6c0p-site-footer {
  background: var(--color-header);
  margin-top: 64px;
  padding: 48px 0 0;
}

.z6c0p-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.z6c0p-footer-top {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--color-border);
}

.z6c0p-footer-logo img {
  height: 40px;
  object-fit: contain;
  margin-bottom: 12px;
}

.z6c0p-footer-desc {
  font-size: 13px;
  color: var(--color-text-muted);
  max-width: 240px;
  line-height: 1.6;
}

.z6c0p-footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 140px;
}

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

.z6c0p-footer-col a {
  font-size: 13px;
  color: var(--color-text-muted);
  transition: color 0.2s;
}

.z6c0p-footer-col a:hover {
  color: var(--color-accent);
}

.z6c0p-footer-payments {
  padding: 24px 0;
  border-bottom: 1px solid var(--color-border);
}

.z6c0p-footer-payments-title {
  font-size: 12px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
  font-weight: 600;
}

.z6c0p-payment-logos {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.z6c0p-pay-badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.z6c0p-providers {
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border);
}

.z6c0p-providers-title {
  font-size: 12px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
  font-weight: 600;
}

.z6c0p-provider-logos {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.z6c0p-prov-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 600;
  color: #8aa8a5;
  white-space: nowrap;
}

.z6c0p-footer-bottom {
  padding: 20px 0 24px;
}

.z6c0p-copyright {
  font-size: 12px;
  color: #6a8a85;
  line-height: 1.7;
  max-width: 900px;
}

.z6c0p-legal-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.z6c0p-legal-links a {
  font-size: 12px;
  color: #6a8a85;
  transition: color 0.2s;
}

.z6c0p-legal-links a:hover {
  color: var(--color-accent);
}

.v5w8u-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 990;
  background: linear-gradient(90deg, #1a3d38 0%, #0e2f2b 100%);
  border-top: 2px solid var(--color-btn-signup);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.4);
}

.v5w8u-widget-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.v5w8u-widget-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.v5w8u-widget-bonus {
  font-size: 12px;
  color: var(--color-accent);
  font-weight: 600;
}

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

.v5w8u-widget-close:hover {
  color: #fff;
}

.v5w8u-widget a {
  text-decoration: none;
}

body.widget-hidden .v5w8u-widget {
  display: none;
}

body {
  padding-bottom: 72px;
}

.wp-content-dummy {
  display: none !important;
  visibility: hidden;
  height: 0;
  overflow: hidden;
}

.elementor-hidden {
  display: none !important;
}

.wpcf7-not-found {
  display: none;
}

.yoast-seo-meta-box {
  display: none;
}

.d3f7a-fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

.d3f7a-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.swiper-container {
  overflow: hidden;
  position: relative;
}

.swiper-wrapper {
  display: flex;
  transition: transform 0.35s ease;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
}

.swiper-pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
}

.swiper-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-border);
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
}

.swiper-dot.active {
  background: var(--color-accent);
  transform: scale(1.3);
}

.xr9q2-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-border),
    transparent
  );
  margin: 0;
}

@media (max-width: 900px) {
  .x9f2a-nav {
    display: none;
  }
  .x9f2a-burger {
    display: flex;
  }
  .r8v2x-cards,
  .s4n9y-bonus-cards,
  .j7m3n-reviews {
    flex-direction: column;
  }
  .q2h8p-review-content {
    padding: 24px 18px;
  }
}

@media (max-width: 600px) {
  .x9f2a-header-inner {
    padding: 0 12px;
  }
  .a7k3b-hero-content {
    padding: 50px 16px;
  }
  .m5t1k-container {
    padding: 0 12px;
  }
  .g1e4k-slot-wrap {
    padding: 24px 14px;
  }
  .g1e4k-reel {
    width: 60px;
    height: 68px;
  }
  .g1e4k-symbol {
    font-size: 30px;
  }
  .z6c0p-footer-top {
    flex-direction: column;
    gap: 24px;
  }
  .v5w8u-widget {
    flex-wrap: wrap;
    padding: 10px 14px;
  }
}

.accordion-collapse {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}

.accordion-collapse.show {
  max-height: 500px;
}

.accordion-button {
  width: 100%;
  text-align: left;
  border: none;
  cursor: pointer;
  padding: 14px 18px;
  transition:
    background-color 0.2s,
    color 0.2s;
}

.accordion-button:not(.collapsed) {
  background-color: var(--color-btn-login) !important;
  color: #fff !important;
}

.accordion-button::after {
  content: "+";
  float: right;
  font-size: 20px;
  font-weight: 700;
  transition: transform 0.2s;
}

.accordion-button:not(.collapsed)::after {
  transform: rotate(45deg);
}

.accordion-body {
  padding: 14px 18px;
}
