:root {
  --clr-header: #292925;
  --clr-footer: #1e1e1b;
  --clr-bg: #fffffe;
  --clr-btn-grey: #9ea097;
  --clr-btn-green: #89cc04;
  --clr-text: #1a1a18;
  --clr-muted: #5a5a55;
  --clr-border: #d8d8d2;
  --clr-surface: #f4f4f0;
  --clr-white: #ffffff;
  --font-main: "Gilroy", sans-serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
  --transition: 0.25s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
  background: var(--clr-bg);
}
body {
  font-family: var(--font-main);
  color: var(--clr-text);
  line-height: 1.6;
  background: var(--clr-bg);
  overflow-x: hidden;
}
a {
  color: var(--clr-btn-green);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: #6fa300;
}
img {
  max-width: 100%;
  display: block;
}
ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--clr-text);
}
h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
}
h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  margin-bottom: 1rem;
}
h3 {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}
p {
  margin-bottom: 0.85rem;
}

.wrap-x8b2 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.section-xf3a {
  padding: 56px 0;
}
.flex-row-dk9 {
  display: flex;
  align-items: center;
}
.gap-xl {
  gap: 24px;
}
.d-none-q7r {
  display: none !important;
}

.btn-fresh {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-fresh:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.btn-fresh:active {
  transform: translateY(0);
}
.btn-login {
  background: var(--clr-btn-grey);
  color: var(--clr-white);
}
.btn-login:hover {
  background: #8c8f87;
  color: var(--clr-white);
}
.btn-signup {
  background: var(--clr-btn-green);
  color: var(--clr-header);
}
.btn-signup:hover {
  background: #7ab803;
  color: var(--clr-header);
}
.btn-bonus {
  background: var(--clr-btn-green);
  color: var(--clr-header);
  font-size: 1rem;
  padding: 13px 30px;
  border-radius: var(--radius-md);
}
.btn-bonus:hover {
  background: #7ab803;
  color: var(--clr-header);
}
.btn-grey {
  background: var(--clr-btn-grey);
  color: var(--clr-white);
}
.btn-grey:hover {
  background: #8c8f87;
  color: var(--clr-white);
}

.hdr-a3q2 {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--clr-header);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}
.hdr-inner-p9k {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}
.hdr-logo-xr7 img {
  height: 44px;
  width: auto;
  object-fit: contain;
}
.hdr-logo-xr7 {
  flex-shrink: 0;
}
.hdr-nav-m6t {
  display: flex;
  align-items: center;
  gap: 4px;
}
.hdr-nav-m6t a {
  color: #c8c8c2;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 11px;
  border-radius: var(--radius-sm);
  transition:
    color var(--transition),
    background var(--transition);
}
.hdr-nav-m6t a:hover {
  color: var(--clr-btn-green);
  background: rgba(255, 255, 255, 0.07);
}
.hdr-actions-z2f {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.hdr-online-v5n {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: #9ea097;
  white-space: nowrap;
}
.hdr-online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clr-btn-green);
  animation: pulse-dot 1.8s infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(137, 204, 4, 0.6);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(137, 204, 4, 0);
  }
}

.burger-btn-k4x {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.burger-btn-k4x:hover {
  background: rgba(255, 255, 255, 0.1);
}
.burger-btn-k4x span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--clr-white);
  border-radius: 2px;
  transition: all 0.3s;
}
.burger-btn-k4x.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger-btn-k4x.open span:nth-child(2) {
  opacity: 0;
}
.burger-btn-k4x.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.mobile-nav-f8j {
  display: none;
  background: var(--clr-header);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px;
}
.mobile-nav-f8j.open {
  display: block;
}
.mobile-nav-f8j a {
  display: block;
  color: #c8c8c2;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition:
    color var(--transition),
    background var(--transition);
}
.mobile-nav-f8j a:hover {
  color: var(--clr-btn-green);
  background: rgba(255, 255, 255, 0.07);
}
.mobile-nav-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 10px 0;
}

.hero-section-t2p {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background: var(--clr-header);
  overflow: hidden;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  background-image: url("/casban.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.45;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(41, 41, 37, 0.92) 40%,
    rgba(41, 41, 37, 0.3) 100%
  );
}
.hero-content-b3m {
  position: relative;
  z-index: 2;
  max-width: 580px;
  padding: 60px 0;
}
.hero-badge {
  display: inline-block;
  background: var(--clr-btn-green);
  color: var(--clr-header);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.hero-content-b3m h1 {
  color: var(--clr-white);
  margin-bottom: 12px;
}
.hero-content-b3m p {
  color: #c8c8c2;
  font-size: 1.05rem;
  margin-bottom: 28px;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-rating {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #9ea097;
  font-size: 0.85rem;
}
.hero-stars {
  color: var(--clr-btn-green);
  letter-spacing: 2px;
}

.toc-block-n5w {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin-bottom: 32px;
}
.toc-block-n5w h3 {
  margin-bottom: 14px;
}
.toc-list-q2x {
  columns: 2;
  gap: 24px;
}
.toc-list-q2x li {
  margin-bottom: 7px;
  break-inside: avoid;
}
.toc-list-q2x a {
  color: var(--clr-btn-grey);
  font-size: 0.9rem;
  font-weight: 600;
}
.toc-list-q2x a:hover {
  color: var(--clr-btn-green);
}
.toc-list-q2x a::before {
  content: "→ ";
  color: var(--clr-btn-green);
}

.table-wrapper-p3k {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 32px;
}
.info-table-v7c {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
  border: 2px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.info-table-v7c thead th {
  background: var(--clr-header);
  color: var(--clr-white);
  padding: 13px 18px;
  text-align: left;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}
.info-table-v7c tbody tr:nth-child(even) {
  background: var(--clr-surface);
}
.info-table-v7c tbody tr:hover {
  background: #ececea;
}
.info-table-v7c td {
  padding: 11px 18px;
  border-bottom: 1px solid var(--clr-border);
  font-size: 0.9rem;
  text-align: left;
}
.info-table-v7c td:first-child {
  font-weight: 700;
  color: var(--clr-muted);
  width: 40%;
}
.info-table-v7c td .badge-g {
  background: var(--clr-btn-green);
  color: var(--clr-header);
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
}

.adv-grid-r9f {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.adv-card-x1q {
  flex: 1 1 220px;
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.adv-card-x1q:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.adv-icon-wy3 {
  font-size: 2rem;
  margin-bottom: 12px;
  line-height: 1;
}
.adv-card-x1q h4 {
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.adv-card-x1q p {
  font-size: 0.82rem;
  color: var(--clr-muted);
  margin: 0;
}

.tourn-wrap-b6h {
  display: flex;
  gap: 20px;
}
.tourn-card-m2s {
  flex: 1 1 280px;
  background: var(--clr-header);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition);
  display: flex;
  flex-direction: column;
}
.tourn-card-m2s:hover {
  transform: translateY(-5px);
}
.tourn-card-head {
  background: linear-gradient(135deg, #1c1c19 0%, #3a3a34 100%);
  padding: 22px 20px 16px;
  border-bottom: 2px solid var(--clr-btn-green);
}
.tourn-card-head h3 {
  color: var(--clr-white);
  font-size: 1rem;
  margin-bottom: 6px;
}
.tourn-card-head p {
  color: #9ea097;
  font-size: 0.82rem;
  margin: 0;
}
.tourn-card-body {
  padding: 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.tourn-prize {
  background: rgba(137, 204, 4, 0.1);
  border: 1px solid rgba(137, 204, 4, 0.3);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
}
.tourn-prize-label {
  font-size: 0.75rem;
  color: #9ea097;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.tourn-prize-val {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--clr-btn-green);
}
.tourn-timer {
  margin-top: auto;
}
.tourn-timer-label {
  font-size: 0.75rem;
  color: #9ea097;
  margin-bottom: 6px;
  font-weight: 600;
}
.timer-display-k9m {
  display: flex;
  gap: 8px;
  align-items: center;
}
.timer-unit {
  background: rgba(0, 0, 0, 0.35);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  text-align: center;
  min-width: 44px;
}
.timer-num {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--clr-white);
  line-height: 1;
}
.timer-lbl {
  display: block;
  font-size: 0.65rem;
  color: #9ea097;
  text-transform: uppercase;
}
.timer-sep {
  color: var(--clr-btn-green);
  font-size: 1.2rem;
  font-weight: 800;
}
.tourn-cta {
  margin-top: 14px;
}
.tourn-cta a {
  width: 100%;
  text-align: center;
}

.slot-section-q3p {
  background: linear-gradient(180deg, #1c1c19 0%, #2e2e2a 100%);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  margin: 0 auto;
  max-width: 560px;
}
.slot-section-q3p h2 {
  color: var(--clr-white);
  margin-bottom: 8px;
}
.slot-section-q3p > p {
  color: #9ea097;
  margin-bottom: 28px;
}
.slot-machine-j5k {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 28px;
}
.slot-reel-f2n {
  width: 90px;
  height: 90px;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(137, 204, 4, 0.3);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  overflow: hidden;
  position: relative;
  transition: border-color 0.3s;
}
.slot-reel-f2n.spinning {
  animation: reel-spin 0.15s linear infinite;
  border-color: var(--clr-btn-green);
}
@keyframes reel-spin {
  0% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(0.85);
  }
  100% {
    transform: scaleY(1);
  }
}
.slot-result-w8t {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.slot-win-msg {
  background: rgba(137, 204, 4, 0.12);
  border: 1px solid rgba(137, 204, 4, 0.4);
  border-radius: var(--radius-md);
  padding: 14px 22px;
  display: none;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.slot-win-msg.visible {
  display: flex;
  animation: fadeInUp 0.4s ease;
}
.slot-win-msg p {
  color: var(--clr-btn-green);
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0;
}
.slot-lose-msg {
  color: #9ea097;
  font-size: 0.9rem;
  display: none;
}
.slot-lose-msg.visible {
  display: block;
  animation: fadeInUp 0.4s ease;
}
.btn-spin {
  background: var(--clr-btn-green);
  color: var(--clr-header);
  border: none;
  padding: 14px 40px;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  font-family: var(--font-main);
  transition:
    background var(--transition),
    transform var(--transition);
}
.btn-spin:hover {
  background: #7ab803;
  transform: scale(1.04);
}
.btn-spin:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.review-block-c7d {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
}
.review-author-v4k {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--clr-border);
  margin-top: 20px;
}
.author-avatar-f3r {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--clr-header);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--clr-btn-green);
  flex-shrink: 0;
}
.author-info-n9p a {
  color: var(--clr-btn-grey);
  font-size: 0.82rem;
}
.author-info-n9p strong {
  display: block;
  font-size: 0.92rem;
  color: var(--clr-text);
}

.review-block-c7d h2,
.review-block-c7d h3,
.review-block-c7d h4 {
  margin: 1.5rem 0 0.75rem;
  color: var(--clr-text);
}
.review-block-c7d p {
  line-height: 1.7;
  margin-bottom: 1rem;
  color: var(--clr-text);
}
.review-block-c7d ul,
.review-block-c7d ol {
  padding-left: 1.4rem;
  margin-bottom: 1rem;
}
.review-block-c7d ul {
  list-style: disc;
}
.review-block-c7d ol {
  list-style: decimal;
}
.review-block-c7d li {
  margin-bottom: 0.45rem;
  line-height: 1.6;
}
.review-block-c7d table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2rem 0;
  border: 2px solid var(--clr-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.review-block-c7d table th {
  background: var(--clr-header);
  color: var(--clr-white);
  padding: 10px 14px;
  text-align: left;
}
.review-block-c7d table td {
  padding: 9px 14px;
  border-bottom: 1px solid var(--clr-border);
  text-align: left;
}
.review-block-c7d table tr:nth-child(even) td {
  background: var(--clr-surface);
}
.review-block-c7d a {
  color: var(--clr-btn-green);
  text-decoration: underline;
}
.review-block-c7d blockquote {
  border-left: 4px solid var(--clr-btn-green);
  padding: 10px 18px;
  background: var(--clr-surface);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.2rem 0;
  color: var(--clr-muted);
  font-style: italic;
}
.review-block-c7d img {
  max-width: 100%;
  border-radius: var(--radius-sm);
  margin: 1rem 0;
}
.review-block-c7d strong {
  color: var(--clr-text);
}

.faq-item-z7v {
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item-z7v.open {
  box-shadow: var(--shadow);
}
.faq-q-btn {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--clr-text);
  text-align: left;
  gap: 12px;
  transition: background var(--transition);
}
.faq-q-btn:hover {
  background: var(--clr-surface);
}
.faq-q-btn.open {
  background: var(--clr-surface);
  color: var(--clr-btn-green);
}
.faq-chevron {
  transition: transform 0.3s;
  font-size: 1.1rem;
  color: var(--clr-btn-green);
  flex-shrink: 0;
}
.faq-q-btn.open .faq-chevron {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s;
}
.faq-answer.open {
  max-height: 400px;
}
.faq-answer-inner {
  padding: 4px 20px 18px;
  color: var(--clr-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-a4b {
  background: var(--clr-footer);
  color: #9ea097;
  padding: 48px 0 24px;
}
.footer-top-r2k {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 32px;
}
.footer-brand-p5n {
  flex: 1 1 220px;
}
.footer-brand-p5n img {
  height: 40px;
  margin-bottom: 14px;
}
.footer-brand-p5n p {
  font-size: 0.82rem;
  line-height: 1.65;
}
.footer-col-x8m {
  flex: 1 1 160px;
}
.footer-col-x8m h4 {
  color: var(--clr-white);
  font-size: 0.88rem;
  margin-bottom: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.footer-col-x8m a {
  display: block;
  color: #9ea097;
  font-size: 0.83rem;
  margin-bottom: 8px;
  transition: color var(--transition);
}
.footer-col-x8m a:hover {
  color: var(--clr-btn-green);
}
.footer-logos-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 12px;
}
.footer-logo-badge {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #c8c8c2;
  white-space: nowrap;
}
.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 24px 0;
}
.footer-bottom-t1v {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-start;
  justify-content: space-between;
  font-size: 0.78rem;
  color: #6a6a64;
}
.footer-legal-x9p {
  max-width: 700px;
  line-height: 1.65;
}
.footer-copy {
  white-space: nowrap;
  color: #9ea097;
  font-weight: 600;
}

.widget-stick-n3k {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--clr-header);
  border-top: 2px solid var(--clr-btn-green);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.3);
}
.widget-text-m7c {
  color: #c8c8c2;
  font-size: 0.85rem;
  font-weight: 600;
  flex: 1;
}
.widget-text-m7c strong {
  color: var(--clr-btn-green);
}
.widget-close-q2f {
  background: none;
  border: none;
  color: #9ea097;
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  padding: 4px;
  transition: color var(--transition);
}
.widget-close-q2f:hover {
  color: var(--clr-white);
}

.section-hdr-t4p {
  margin-bottom: 28px;
}
.section-hdr-t4p h2 {
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-hdr-t4p h2::before {
  content: "";
  display: block;
  width: 4px;
  height: 28px;
  background: var(--clr-btn-green);
  border-radius: 2px;
}
.section-hdr-t4p p {
  color: var(--clr-muted);
  margin: 0;
  font-size: 0.92rem;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.anim-fade-up {
  animation: fadeInUp 0.55s ease both;
}
.anim-fade-up-d1 {
  animation-delay: 0.1s;
}
.anim-fade-up-d2 {
  animation-delay: 0.2s;
}
.anim-fade-up-d3 {
  animation-delay: 0.3s;
}
[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}
[data-aos].aos-visible {
  opacity: 1;
  transform: translateY(0);
}

.breadcrumb-x5m {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--clr-muted);
  padding: 10px 0;
  flex-wrap: wrap;
}
.breadcrumb-x5m a {
  color: var(--clr-btn-grey);
}
.breadcrumb-x5m a:hover {
  color: var(--clr-btn-green);
}
.breadcrumb-x5m span {
  color: var(--clr-muted);
}

.wp-block-group {
  display: block;
}
.wp-block-separator {
  border: none;
  border-top: 1px solid var(--clr-border);
}
.entry-content {
  display: block;
}
.elementor-element {
  display: block;
}
.site-content {
  display: block;
}
.post-thumbnail {
  display: block;
}
.archive-title {
  display: block;
}
.widget-area {
  display: block;
}
.page-header {
  display: block;
}
.has-text-align-center {
  text-align: center;
}
.aligncenter {
  margin: 0 auto;
}
.yoast-breadcrumbs {
  display: block;
}
.et_pb_section {
  display: block;
}
.et_pb_column {
  display: block;
}

#wp-admin-bar,
.wpadminbar {
  display: none !important;
}
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  width: 1px;
  overflow: hidden;
  position: absolute;
}
input[type="hidden"].wp-nonce {
  display: none;
}
.post-password-form {
  display: none;
}
.comment-respond {
  display: none;
}
.wp-caption {
  display: block;
  max-width: 100%;
}
.gallery-caption {
  display: block;
}
.recentcomments {
  display: block;
}

@media (max-width: 991px) {
  .hdr-nav-m6t {
    display: none;
  }
  .burger-btn-k4x {
    display: flex;
  }
  .tourn-wrap-b6h {
    flex-direction: column;
  }
  .toc-list-q2x {
    columns: 1;
  }
  .review-block-c7d {
    padding: 22px 18px;
  }
  .slot-reel-f2n {
    width: 72px;
    height: 72px;
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  .section-xf3a {
    padding: 36px 0;
  }
  .hero-content-b3m {
    padding: 40px 0;
  }
  .footer-top-r2k {
    flex-direction: column;
    gap: 24px;
  }
  .adv-card-x1q {
    flex: 1 1 140px;
  }
  .widget-stick-n3k {
    flex-wrap: wrap;
  }
  h1 {
    font-size: 1.5rem;
  }
}
@media (max-width: 480px) {
  .hero-btns {
    flex-direction: column;
  }
  .slot-machine-j5k {
    gap: 6px;
  }
  .slot-reel-f2n {
    width: 60px;
    height: 60px;
    font-size: 1.7rem;
  }
  .slot-section-q3p {
    padding: 28px 16px;
  }
}
body {
  background: var(--clr-header);
  color: #d8d8d2;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--clr-white);
}

p {
  color: #c8c8c2;
}

.toc-block-n5w {
  background: #2e2e2a;
  border-color: rgba(255, 255, 255, 0.08);
}
.toc-block-n5w h3 {
  color: var(--clr-white);
}
.toc-list-q2x a {
  color: #c8c8c2;
}

.section-hdr-t4p h2 {
  color: var(--clr-white);
}
.section-hdr-t4p p {
  color: #9ea097;
}

.info-table-v7c {
  border-color: rgba(255, 255, 255, 0.1);
  background: #2e2e2a;
}
.info-table-v7c thead th {
  background: #1c1c19;
}
.info-table-v7c tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.03);
}
.info-table-v7c tbody tr:hover {
  background: rgba(137, 204, 4, 0.08);
}
.info-table-v7c td {
  border-bottom-color: rgba(255, 255, 255, 0.08);
  color: #d8d8d2;
}
.info-table-v7c td:first-child {
  color: #9ea097;
}
.info-table-v7c td strong {
  color: var(--clr-white);
}

.adv-card-x1q {
  background: #2e2e2a;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}
.adv-card-x1q:hover {
  background: #34342f;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}
.adv-card-x1q h4 {
  color: var(--clr-white);
}
.adv-card-x1q p {
  color: #9ea097;
}

.review-block-c7d {
  background: #2e2e2a;
  border-color: rgba(255, 255, 255, 0.08);
}
.review-block-c7d h2,
.review-block-c7d h3,
.review-block-c7d h4 {
  color: var(--clr-white);
}
.review-block-c7d p,
.review-block-c7d li {
  color: #c8c8c2;
}
.review-block-c7d strong {
  color: var(--clr-white);
}
.review-block-c7d table {
  border-color: rgba(255, 255, 255, 0.1);
}
.review-block-c7d table th {
  background: #1c1c19;
}
.review-block-c7d table td {
  border-bottom-color: rgba(255, 255, 255, 0.08);
  color: #d8d8d2;
}
.review-block-c7d table tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.03);
}
.review-block-c7d blockquote {
  background: rgba(137, 204, 4, 0.08);
  color: #c8c8c2;
  border-left-color: var(--clr-btn-green);
}
.review-block-c7d a {
  color: var(--clr-btn-green);
}

.review-author-v4k {
  border-top-color: rgba(255, 255, 255, 0.08);
}
.author-avatar-f3r {
  background: #1c1c19;
}
.author-info-n9p strong {
  color: var(--clr-white);
}
.author-info-n9p span {
  color: #9ea097 !important;
}
.author-info-n9p a {
  color: var(--clr-btn-green);
}

.faq-item-z7v {
  background: #2e2e2a;
  border-color: rgba(255, 255, 255, 0.08);
}
.faq-q-btn {
  color: var(--clr-white);
}
.faq-q-btn:hover {
  background: rgba(255, 255, 255, 0.04);
}
.faq-q-btn.open {
  background: rgba(137, 204, 4, 0.08);
  color: var(--clr-btn-green);
}
.faq-answer-inner {
  color: #c8c8c2;
}

.breadcrumb-x5m,
.breadcrumb-x5m span {
  color: #9ea097;
}
.breadcrumb-x5m a {
  color: #c8c8c2;
}
.breadcrumb-x5m a:hover {
  color: var(--clr-btn-green);
}

.btn-signup {
  color: var(--clr-header);
}
