* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: Arial, sans-serif;
  background: #f2f2f2;
  color: #222;
  font-size: 13px;
  overflow-x: hidden;
}

/* ── MARQUEE ── */
.marquee {
  background: #2d6b62;
  color: #BDDBD0;
  font-size: 11px;
  padding: 5px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 90;
}
.marquee-inner {
  display: inline-block;
  animation: marquee 28s linear infinite;
  will-change: transform;
}
@keyframes marquee { from { transform: translateX(100vw); } to { transform: translateX(-100%); } }

/* ── HEADER ── */
header {
  background: #BDDBD0;
  border-bottom: 2px solid #d4a94c;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  position: sticky;
  top: 0;
  z-index: 200;
}
header img { height: 38px; display: block; }
.h-btns { display: flex; gap: 6px; }
.h-btns button {
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  border: none;
}
.btn-login { background: #fff; border: 1px solid #2d6b62 !important; color: #2d6b62; }
.btn-reg   { background: #d4a94c; color: #fff; }
.btn-lang  {
  background: #fff;
  border: 1px solid #2d6b62;
  color: #2d6b62;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}
.btn-lang img { width: 18px; height: 18px; border-radius: 50%; object-fit: cover; }
.btn-lang:hover { background: #f0f7f5; transform: translateY(-1px); box-shadow: 0 2px 5px rgba(0,0,0,0.1); }

/* ── BANNER ── */
.banner { position: relative; overflow: hidden; background: #111; width: 100%; aspect-ratio: 1536 / 400; z-index: 90; }
.banner-slides { display: flex; transition: transform .4s ease; height: 100%; will-change: transform; }
.banner-slide  { min-width: 100%; flex-shrink: 0; height: 100%; }
.banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
}
.b-prev, .b-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,.4);
  color: #fff; border: none;
  width: 28px; height: 28px;
  border-radius: 50%;
  font-size: 13px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 5;
}
.b-prev { left: 8px; }
.b-next { right: 8px; }
.b-dots {
  position: absolute; bottom: 6px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 5px; z-index: 5;
}
.b-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.45); cursor: pointer; }
.b-dot.on { background: #d4a94c; width: 16px; border-radius: 3px; }

/* ── TABS ── */
.tabs {
  background: #fff;
  border-bottom: 2px solid #f0f0f0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  position: relative;
  z-index: 90;
  /* Premium fade-out effect for horizontal scroll */
  -webkit-mask-image: linear-gradient(to right, #000 92%, transparent 100%);
  mask-image: linear-gradient(to right, #000 92%, transparent 100%);
}
.tabs::-webkit-scrollbar { display: none; }
.tabs-inner { 
  display: flex; 
  justify-content: flex-start;
  padding: 0 16px;
  width: max-content; /* Ensure container expands to hold all content */
}
.tab {
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 600;
  color: #777;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  flex-shrink: 0; /* Never squash text */
  transition: all 0.2s;
}
.tab.on { color: #d4a94c; border-bottom-color: #d4a94c; }
.tab:hover { color: #d4a94c; }

/* ── PAGE WRAP ── */
.wrap { padding: 0 10px; position: relative; z-index: 1; }

/* ── SECTION TITLE ── */
.stitle {
  font-size: 12px;
  font-weight: 700;
  color: #333;
  padding-left: 8px;
  border-left: 3px solid #d4a94c;
  margin: 14px 0 10px;
}

/* ── GAME GRID ── */
.game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}
.gcard {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
}
.gcard img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}
.gcard-name {
  padding: 5px 6px;
  font-size: 10px;
  font-weight: 500;
  color: #444;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── JACKPOT BOX ── */
.jackpot-box {
  background: linear-gradient(135deg, #1a3530 0%, #2d6b62 100%);
  border: 1px solid #d4a94c;
  border-radius: 8px;
  padding: 16px 12px;
  text-align: center;
  margin-bottom: 12px;
  margin-top: 25px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  position: relative;
  overflow: hidden;
}
.jackpot-box::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(212,169,76,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.jackpot-label { font-size: 11px; font-weight: 600; color: #BDDBD0; margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
.jackpot-num   { 
  font-size: 22px; 
  font-weight: 700; 
  color: #d4a94c; 
  text-shadow: 0 0 12px rgba(212, 169, 76, 0.4);
  display: block;
  margin: 4px 0;
}
.jackpot-sub   { font-size: 10px; color: #7aaa9e; opacity: 0.8; }

/* ── WINNER LIST ── */
.winner-box {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 16px;
}
.winner-head {
  background: #BDDBD0;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
  color: #2d6b62;
  border-bottom: 1px solid #a8ccc2;
}
.wrow {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-bottom: 1px solid #f2f2f2;
  font-size: 11px;
}
.wrow:last-child { border-bottom: none; }
.wav {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #BDDBD0;
  color: #2d6b62;
  font-weight: 700;
  font-size: 11px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.wname { font-weight: 600; color: #333; }
.wgame { color: #999; font-size: 10px; }
.wamt  { margin-left: auto; font-weight: 700; color: #d4a94c; white-space: nowrap; }

/* Auto-scroller styles */
.winner-scroll-wrap {
  position: relative;
  height: 260px; /* Show ~6 winners */
  overflow: hidden;
}
.winner-scroll-wrap::before,
.winner-scroll-wrap::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 30px;
  z-index: 10;
  pointer-events: none;
}
.winner-scroll-wrap::before {
  top: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,1), rgba(255,255,255,0));
}
.winner-scroll-wrap::after {
  bottom: 0;
  background: linear-gradient(to top, rgba(255,255,255,1), rgba(255,255,255,0));
}
.winner-list {
  display: flex;
  flex-direction: column;
}

/* ── PROMO ── */
.promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}
.pcard {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #e8e8e8;
  background: #fff;
  cursor: pointer;
}
.pcard img { width: 100%; aspect-ratio: 2 / 1; object-fit: cover; display: block; }
.pcard-info { padding: 6px 8px 8px; }
.ptag {
  display: inline-block;
  background: #d4a94c;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 3px;
  margin-bottom: 3px;
  text-transform: uppercase;
}
.pname { font-size: 11px; font-weight: 600; color: #333; }


/* ── SEO CONTENT SECTION ── */
.seo-section {
  background: #fff;
  border-top: 3px solid #d4a94c;
  padding: 32px 0 40px;
  content-visibility: auto;
  contain-intrinsic-size: 0 3000px;
}
.seo-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Hero intro block */
.seo-hero {
  background: linear-gradient(135deg, #1a3530 0%, #2d6b62 100%);
  border-radius: 10px;
  padding: 28px 24px;
  margin-bottom: 32px;
  color: #fff;
}
.seo-hero h1 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
  color: #d4a94c;
}
.seo-hero p {
  font-size: 15px;
  line-height: 1.75;
  color: #BDDBD0;
}
.seo-hero .hero-cta {
  display: inline-block;
  margin-top: 18px;
  background: #d4a94c;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 24px;
  border-radius: 5px;
  text-decoration: none;
  cursor: pointer;
}

/* Section headings */
.seo-h2 {
  font-size: 24px;
  font-weight: 800;
  color: #1a3530;
  background: #f9fafb;
  border-left: 6px solid #d4a94c;
  padding: 14px 18px;
  margin: 50px 0 20px;
  line-height: 1.3;
  border-radius: 0 6px 6px 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}
.seo-h3 {
  font-size: 19px;
  font-weight: 700;
  color: #2d6b62;
  margin: 36px 0 16px;
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 12px;
}
.seo-h3::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #d4a94c;
  transform: rotate(45deg);
  flex-shrink: 0;
}
.seo-h4 {
  font-size: 14px;
  font-weight: 700;
  color: #222;
  margin: 18px 0 8px;
}
.seo-p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  color: #111;
  margin-bottom: 12px;
}
.seo-p strong {
  font-weight: 400;
  color: #111;
}

/* Tables */
.seo-table-wrap { overflow-x: auto; margin-bottom: 16px; border-radius: 6px; border: 1px solid #e0e0e0; }
.seo-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.seo-table thead tr { background: #2d6b62; color: #fff; }
.seo-table thead th { padding: 9px 12px; text-align: left; font-weight: 600; white-space: nowrap; }
.seo-table tbody tr { border-bottom: 1px solid #f0f0f0; }
.seo-table tbody tr:nth-child(even) { background: #f9fafa; }
.seo-table tbody tr:last-child { border-bottom: none; }
.seo-table td { padding: 8px 12px; color: #111; vertical-align: top; font-weight: 400; }
.seo-table td:first-child { font-weight: 400; color: #111; }
.check { color: #2d6b62; font-weight: 700; }
.cross { color: #c0392b; font-weight: 700; }

/* Bullet lists */
.seo-list {
  list-style: none;
  padding: 0;
  margin-bottom: 14px;
}
.seo-list li {
  font-size: 14px;
  font-weight: 400;
  color: #111;
  line-height: 1.8;
  padding: 4px 0 4px 20px;
  position: relative;
}
.seo-list li strong {
  font-weight: 400;
  color: #111;
}
.seo-list li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: #111;
  font-weight: 400;
}

/* Numbered steps */
.seo-steps { list-style: none; padding: 0; margin-bottom: 16px; counter-reset: step-counter; }
.seo-steps li {
  counter-increment: step-counter;
  font-size: 14px;
  font-weight: 400;
  color: #111;
  line-height: 1.8;
  padding: 9px 0 9px 44px;
  position: relative;
  border-bottom: 1px solid #f0f0f0;
}
.seo-steps li:last-child { border-bottom: none; }
.seo-steps li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 8px;
  width: 26px;
  height: 26px;
  background: #eef7f4;
  color: #2d6b62;
  border: 1.5px solid #BDDBD0;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.seo-steps li strong {
  font-weight: 400;
  color: #111;
}

/* Tip/Note box */
.seo-tip {
  background: #f7f7f7;
  border-left: 3px solid #ccc;
  padding: 10px 14px;
  border-radius: 0 5px 5px 0;
  font-size: 13px;
  font-weight: 400;
  color: #111;
  margin-bottom: 14px;
  line-height: 1.7;
}

/* Bonus cards grid */
.bonus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 20px;
}
/* USP feature grid */
.usp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}
.usp-card {
  background: #f9fafa;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 14px 12px;
  text-align: center;
}
.usp-icon { font-size: 22px; margin-bottom: 6px; }
.usp-title { font-size: 14px; font-weight: 700; color: #1a3530; margin-bottom: 4px; }
.usp-desc { font-size: 13px; color: #111; line-height: 1.6; }

/* FAQ */
.faq-item {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-q {
  background: #f9fafa;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 700;
  color: #111;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.faq-q:hover { background: #f0f7f5; }
.faq-arrow { color: #d4a94c; font-size: 14px; flex-shrink: 0; transition: transform .2s; }
.faq-a {
  padding: 12px 14px;
  font-size: 13.5px;
  color: #111;
  line-height: 1.75;
  border-top: 1px solid #e8e8e8;
  display: none;
}
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }

/* Content images */
.seo-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  margin: 20px 0;
  object-fit: cover;
}

/* Read more toggle */
.read-more-content { display: none; }
.read-more-content.open { display: block; }
.read-more-btn {
  background: none;
  border: none;
  color: #2d6b62;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 2px 0;
  margin: 4px 0 20px;
  font-family: inherit;
  text-decoration: underline;
  display: inline-block;
}
.read-more-btn:hover { color: #1a3530; }

/* Table of Contents */
.seo-toc {
  background: #f4f9f7;
  border: 1px solid #BDDBD0;
  border-left: 4px solid #2d6b62;
  border-radius: 6px;
  padding: 20px 24px 20px 20px;
  margin: 32px 0 40px;
}
.seo-toc-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #2d6b62;
  margin: 0 0 12px;
}
.seo-toc-list {
  margin: 0;
  padding-left: 20px;
}
.seo-toc-list li {
  margin: 6px 0;
  font-size: 14px;
  line-height: 1.5;
}
.seo-toc-list a {
  color: #1a3530;
  text-decoration: none;
  transition: color 0.15s;
}
.seo-toc-list a:hover {
  color: #2d6b62;
  text-decoration: underline;
}

/* Section divider */
.seo-divider {
  border: none;
  border-top: 4px solid #cbd5e0;
  margin: 100px 0 60px;
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
.seo-divider::after {
  content: '';
  display: block;
  width: 48px;
  height: 4px;
  background: #d4a94c;
  border-radius: 2px;
  position: absolute;
  top: -4px;
  left: calc(50vw - 450px + 16px); /* Align with content start (half of 900px + padding) */
}
@media (max-width: 900px) {
  .seo-divider::after { left: 16px; }
}

/* CTA bar */
.seo-cta-bar {
  background: linear-gradient(135deg, #2d6b62, #1a3530);
  border-radius: 10px;
  padding: 22px 20px;
  text-align: center;
  margin: 28px 0 0;
}
.seo-cta-bar h3 { font-size: 19px; font-weight: 700; color: #d4a94c; margin-bottom: 8px; }
.seo-cta-bar p { font-size: 14px; color: #BDDBD0; margin-bottom: 14px; line-height: 1.6; }
.seo-cta-bar .cta-btn {
  display: inline-block;
  background: #d4a94c;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  padding: 11px 28px;
  border-radius: 5px;
  text-decoration: none;
  cursor: pointer;
  margin: 0 4px 8px;
}
.seo-cta-bar .cta-btn.outline {
  background: transparent;
  border: 2px solid #BDDBD0;
  color: #BDDBD0;
}


/* ── FOOTER ── */
footer {
  background: #1a3530;
  color: #7aaa9e;
  padding: 40px 15px 20px;
  font-size: 11px;
}
.footer-wrap {
  max-width: 1100px;
  margin: 0 auto;
}
.footer-cols {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}
footer img { height: 42px; margin-bottom: 15px; display: block; }
.fdesc { font-size: 11px; line-height: 1.6; color: #7aaa9e; margin-bottom: 25px; }
.fcol-title { font-size: 12px; font-weight: 700; color: #BDDBD0; margin-bottom: 15px; text-transform: uppercase; letter-spacing: 0.8px; }
.flinks { list-style: none; }
.flinks li { margin-bottom: 8px; font-size: 11px; }
.flinks a { color: #7aaa9e; text-decoration: none; transition: color 0.2s; }
.flinks a:hover { color: #d4a94c; }

/* Contact Specific */
.fcol-contact-title { font-size: 12px; font-weight: 700; color: #BDDBD0; margin-bottom: 15px; text-transform: uppercase; letter-spacing: 0.8px; margin-top: 30px; }
.f-contact { color: #7aaa9e; line-height: 1.7; font-size: 11px; }
.f-contact strong { color: #BDDBD0; display: block; margin-top: 12px; font-size: 11px; margin-bottom: 4px; }
.f-contact span { display: block; margin-bottom: 4px; }
.f-contact a { color: #d4a94c; text-decoration: none; font-weight: 700; font-size: 12px; }

.fbot {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
}
.f-copy { font-size: 10px; color: #4a7a70; }
.pays { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.paychip {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 10px;
  color: #9ecfbf;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 25px; }
  .fcol-brand { grid-column: span 2; }
}
@media (max-width: 480px) {
  .footer-cols { grid-template-columns: 1fr; }
  .fcol-brand { grid-column: span 1; }
}

/* ── DESKTOP OVERRIDES ── */
@media (min-width: 768px) {
  .banner-slide img { object-fit: contain; }
  header { height: 60px; padding: 0 24px; }
  header img { height: 44px; }
  .h-btns button { padding: 7px 18px; }
  .desktop-nav { display: flex !important; gap: 2px; }
  .page-body   { padding-bottom: 0; }
  .wrap { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
  .game-grid { grid-template-columns: repeat(5, 1fr); gap: 10px; }
  .gcard-name { font-size: 11px; }
  .main-layout {
    display: grid;
    grid-template-columns: 1fr 240px;
    gap: 20px;
    align-items: start;
  }
  .promo-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .footer-cols { grid-template-columns: 1.2fr 1fr 1fr 1fr; }
  .pays { flex-wrap: nowrap; }
  .fbot { display: flex; justify-content: space-between; align-items: center; }
  .fbot .pays { margin-top: 0; }

  /* SEO section desktop */
  .seo-hero h1 { font-size: 30px; }
  .seo-h2 { font-size: 26px; }
  .seo-h3 { font-size: 19px; }
  .seo-h4 { font-size: 15px; }
  .seo-p { font-size: 15px; }
  .seo-list li { font-size: 15px; }
  .seo-steps li { font-size: 15px; }
  .usp-grid { grid-template-columns: repeat(3, 1fr); }
  .sticky-sidebar {
    position: sticky;
    top: 100px;
    z-index: 10;
  }
}
@media (min-width: 1200px) {
  .tabs-inner { justify-content: center; padding: 0; width: 100%; }
  .tabs { -webkit-mask-image: none; mask-image: none; }
}
