:root {
  --topbarH: 0px;
  --bg: #191919;
  --surface: #121314;
  --surface2: #191919;
  --textPrimary: #ffffff;
  --textSecondary: #FFF;
  --border: #003566;
  --primary: #d9ac4f;
  --secondary: #003566;
  --accent: #d9ac4f;
  --maxw: 1250px;
  --radius: 16px;
  --shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
  --shadow2: 0 10px 24px rgba(0, 0, 0, 0.25);
  --headerH: 72px;
  --gap: 22px;
  --font:
    ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial,
    "Noto Sans", "Liberation Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--textPrimary);
  padding-top: calc(var(--headerH) + var(--topbarH));
}

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

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  color: var(--accent);
}

ul,
ol {
  color: var(--textSecondary);
  line-height: 1.8;
  padding-left: 20px;
  margin: 10px 0;
}

li {
  margin: 6px 0;
}

ul li img,
ol li img {
  display: block;
  margin: 12px auto;
  max-width: 275px;
  width: 100%;
  height: auto;
}

ul,
ol li {
  padding-left: 0px;
}

@media (max-width: 768px) {

  ul li img,
  ol li img {
    max-width: 260px;
  }

  ul ol li {
    padding: 15px;
  }

  .footer-badges {
    display: block !important;
  }

  .footer-badges img {
    margin-bottom: 10px;
  }

}

.no-bullets {
  list-style: none;
  padding-left: 0;
  /* removes the default indent */
  margin-left: 0;
}

/* Player reviews layout (scoped) */
.player-reviews .review {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 14px;
  margin-top: 12px;
  background: #23252e;
}

/* Alternate image position left/right */
.player-reviews .review:nth-child(even) {
  flex-direction: row-reverse;
}

/* Image frame size (does not affect other images) */
.player-reviews .review__media {
  flex: 0 0 120px;
  /* fixed column for portrait */
  max-width: 120px;
}

.player-reviews .review__img {
  display: block;
  border-radius: 10px;
  width: 122px;
  height: 120px;
}

/* Text side */
.player-reviews .review__content {
  flex: 1 1 auto;
  min-width: 0;
}

.player-reviews .review__name {
  margin: 0 0 6px;
}

/* Mobile: stack neatly */
@media (max-width: 768px) {

  .player-reviews .review,
  .player-reviews .review:nth-child(even) {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .player-reviews .review__media {
    flex: 0 0 auto;
    max-width: 160px;
    /* slightly larger on mobile */
    width: 55%;
  }
}

strong {
  color: var(--textPrimary);
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 18px;
}

/* Header */
.site-header {
  position: fixed;
  top: var(--topbarH);
  left: 0;
  right: 0;
  height: var(--headerH);
  z-index: 1000;
  background: #191919;
  backdrop-filter: saturate(130%) blur(10px);
  border-bottom: 1px solid rgba(0, 53, 102, 0.7);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 180px;
}

.brand img {
  height: 50px;
  width: 120px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 11px;
}

.nav a {
  color: var(--textPrimary);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 10px 12px;
  border-radius: 12px;
}

.nav a:hover {
  background: rgba(255, 214, 10, 0.1);
}

.nav .btn {
  background: var(--primary);
  color: #000;
  padding: 10px 14px;
  border-radius: 31px;
  font-weight: 900;
  border: 1px solid #ffc300;
}

.nav .btn:hover {
  background: var(--accent);
}

.giftcode {
  text-align: center;
  margin-top: 0;
  color: var(--accent);
  font-weight: 900;
  font-size: 2rem;
  border-radius: 12px;
  background: rgba(255, 195, 0, 0.1);
  padding: 14px 18px;
}

.dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.caret {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--textSecondary);
}

.dropdown-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 220px;
  background: #191919;
  border-radius: 0px;
  box-shadow: var(--shadow2);
  padding: 8px;
  display: none;
}

.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
}

.dropdown-menu a:hover {
  background: rgba(255, 214, 10, 0.1);
}

.dropdown.open .dropdown-menu {
  display: block;
}

.mobile-btn {
  display: none;
  background: transparent;
  border: 1px solid rgba(0, 53, 102, 0.8);
  color: var(--textPrimary);
  border-radius: 14px;
  padding: 10px 12px;
  cursor: pointer;
}

/* Mobile drawer */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  z-index: 1200;
  display: none;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(380px, 92vw);
  background: rgba(0, 29, 61, 0.98);
  border-left: 1px solid rgba(0, 53, 102, 0.8);
  z-index: 1300;
  transform: translateX(102%);
  transition: transform 0.22s ease;
}

.drawer.open {
  transform: translateX(0);
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-bottom: 1px solid rgba(0, 53, 102, 0.7);
}

.drawer-head img {
  height: 30px;
}

.drawer-close {
  background: var(--accent);
  border: 1px solid rgba(0, 53, 102, 0.8);
  color: var(--secondary);
  border-radius: 14px;
  padding: 10px 12px;
  cursor: pointer;
}

.drawer-subtoggle {
  width: 100%;
  text-align: left;
}

.drawer-download {
  display: block;
  margin-top: 10px;
  text-align: center;
}

.drawer-notice {
  padding: 0 12px 14px;
}

.drawer-nav {
  padding: 10px 12px;
}

.drawer-nav a {
  display: block;
  padding: 12px 12px;
  border-radius: 14px;
  color: var(--textPrimary);
  font-weight: 800;
}

.drawer-nav a:hover {
  background: rgba(255, 214, 10, 0.1);
}

.drawer-nav .divider {
  height: 1px;
  background: rgba(0, 53, 102, 0.7);
  margin: 10px 0;
}

.drawer-nav .subhead {
  color: var(--textSecondary);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 12px;
}

.drawer-nav .btn {
  margin-top: 8px;
  background: var(--primary);
  color: #001021;
  text-align: center;
}

.drawer-nav .btn:hover {
  background: var(--accent);
}

/* Sections */
.section {
  position: relative;
  padding: 13px 0;
  overflow: hidden;
}

.section.section--a {
  /* Use background-color (not shorthand) so page-specific background images can work */
  background-color: var(--bg);
}

.section.section--b {
  background: var(--surface);
}

.section.section--c {
  background: var(--surface2);
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-size:
    auto,
    auto,
    auto,
    18px 18px;
  opacity: 0.65;
}

.section>.container {
  position: relative;
}

.kicker {
  color: var(--textSecondary);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
}

.h1 {
  font-size: 2.8rem;
  margin: 10px 0 10px;
  line-height: 1.1;
  color: #d9ac4f;
}

.h2 {
  font-size: 1.75rem;
  margin: 0 0 14px;
}

h3 {
  font-size: 1.25rem;
  margin: 0 0 10px;
  color: var(--accent);
}

.lead {
  color: var(--textSecondary);
  font-size: 1.06rem;
  line-height: 1.7;
  margin: 0;
  text-shadow: 0 0 white;
}

strong {
  color: var(--accent);
}

.grid {
  display: grid;
  gap: var(--gap);
}

.grid.two {
  grid-template-columns: 1.05fr 0.95fr;
}

.grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  background: #242424;
  border: 1px solid #d9ac4f;
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  padding: 18px 33px !important;
}

.card:hover {
  border-color: rgba(255, 214, 10, 0.55);
}

.hero {
  padding: 40px 0px 50px;
  position: relative;
}

/* Background image */
.hero.has-bg {
  background-color: #242424;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.center-cnct {
  text-align: center;
}

/* content above overlay */
.hero.has-bg>.container {
  position: relative;
  z-index: 2;
}

/* GRID LAYOUT */
.hero-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

/* TOP FULL WIDTH CONTENT */
.hero-top {
  max-width: 100%;
}

/* BUTTONS */
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .hero-bottom {
    grid-template-columns: 1fr;
  }

  .hero-art img {
    height: 260px;
  }
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
  justify-content: center;
  padding-top: 24px;
}

.action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 40px;
  border-radius: 30px;
  border: 1px solid rgba(0, 53, 102, 0.85);
  background: rgba(0, 29, 61, 0.55);
  color: var(--textPrimary);
  font-weight: 900;
}

.action.primary {
  background: #6F7381;
  color: #fff;
  border-color: #ffc300;
}

.action.primary:hover {
  background: var(--accent);
}

.action:hover {
  border-color: rgba(255, 214, 10, 0.55);
}

/* Carousel */
.carousel {
  position: relative;
}

/* Portrait screenshot carousel: show full image, no cropping */
.carousel--portrait .carousel-slide {
  /* Make portrait carousel smaller (avoid oversized slides) */
  flex: 0 0 280px;
  max-width: 280px;

  aspect-ratio: auto;
  /* remove fixed banner ratio */
  height: auto;
  display: block;

  /* slide is just a wrapper, inner .card provides the visual frame */
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.carousel--portrait .carousel-slide img {
  width: 100%;
  height: auto;
  object-fit: contain;
  /* key: no crop */
  display: block;
  background: rgba(0, 8, 20, 0.35);
  /* letterbox area if needed */
}


@media (max-width: 768px) {
  .carousel--portrait .carousel-slide {
    flex-basis: 220px;
    max-width: 220px;
  }

  .carousel--portrait .carousel-viewport {
    max-width: 520px;
  }
}

@media (max-width: 480px) {
  .carousel--portrait .carousel-slide {
    flex-basis: 190px;
    max-width: 190px;
  }

  .carousel--portrait .carousel-viewport {
    max-width: 420px;
  }
}

/* Disable zoom effect so edges never get clipped */
.carousel--portrait .carousel-slide:hover img {
  transform: none;
  filter: none;
}

/* Payment methods carousel: same behavior as screenshots, smaller logo cards */
.carousel--payments .carousel-slide {
  flex: 0 0 210px;
  max-width: 210px;

  aspect-ratio: auto;
  height: auto;
  display: block;

  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.carousel--payments .carousel-slide img {
  width: 100%;
  height: 84px;
  /* uniform logo height */
  object-fit: contain;
  display: block;
  background: rgba(0, 8, 20, 0.1);
}

.carousel--payments .carousel-viewport {
  max-width: 1000px;
}

@media (max-width: 768px) {
  .carousel--payments .carousel-slide {
    flex-basis: 180px;
    max-width: 180px;
  }

  .carousel--payments .carousel-slide img {
    height: 74px;
  }

  .carousel--payments .carousel-viewport {
    max-width: 520px;
  }
}

.carousel-viewport {
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 20px;
  padding: 20px 0px;
}

.carousel-track {
  display: flex;
  gap: 18px;
  will-change: transform;
  transition: none;
}

.carousel-slide {
  flex: 0 0 100%;
  max-width: 1000px;

  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0, 53, 102, 0.85);
  background: rgba(0, 29, 61, 0.6);
  box-shadow: var(--shadow2);
  /* keeps approx 1000 x 450 */
  aspect-ratio: 1000 / 450;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  /* key change, ensures no cropping */
  object-fit: contain;
  /* removes the zoom-on-hover that can crop edges */
  transform: none;
  filter: none;
  /* letterbox color for images that do not match ratio */
  background: rgba(0, 8, 20, 0.35);
}

.carousel-slide:hover img {
  transform: none;
  filter: none;
}

/* Overlay buttons (your HTML uses .carousel-btn) */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(0, 53, 102, 0.85);
  background: rgb(217 172 79);
  cursor: pointer;
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  line-height: 1;
}

.carousel-btn:hover {
  border-color: rgba(255, 214, 10, 0.55);
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}

/* Payment Methods continuous carousel */
.pay-carousel {
  margin-top: 14px;
  overflow: hidden;
  border-radius: 12px;
  padding: 14px 10px;
  background: rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pay-track {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  animation: payScroll 22s linear infinite;
}

.pay-item {
  flex: 0 0 auto;
  width: 140px;
  /* logo box width */
  height: 74px;
  /* logo box height */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pay-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* prevents cropping and keeps uniform size */
  display: block;
}

/* Seamless loop: track slides left by half its own content (because we duplicated the set) */
@keyframes payScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Pause on hover (optional) */
.pay-carousel:hover .pay-track {
  animation-play-state: paused;
}

/* Responsive sizing */
@media (max-width: 768px) {
  .pay-item {
    width: 120px;
    height: 64px;
  }

  .pay-track {
    animation-duration: 18s;
  }

  .drawer-nav {
    background: #000;
  }
}

/* Keep dots if you already use them elsewhere */
.dots {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 214, 10, 0.8);
  background: transparent;
  cursor: pointer;
}

.dot.active {
  background: var(--primary);
}

@media (max-width: 1100px) {
  .carousel-viewport {
    max-width: 100%;
  }

  .carousel-slide {
    max-width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .carousel-track {
    transform: none !important;
  }
}

/* âŒ REMOVE GRID */
.faq.faq--2col {
  display: block;
  column-count: 2;
  column-gap: 20px;
}

/* Mobile */
@media (max-width: 900px) {
  .faq.faq--2col {
    column-count: 1;
  }
}

/* Item fix */
.faq-item {
  break-inside: avoid;
  margin-bottom: 12px;
}

/* FAQ item */
.faq-item {
  border: 1px solid rgb(217 172 79);
  border-radius: 6px;
  overflow: hidden;
  background: #191919;
  align-self: start;
}

/* Question */
.faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  color: var(--textPrimary);
  padding: 14px;
  font-weight: 950;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}

/* Answer animation */
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 14px;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(0, 53, 102, 0.7);
  background: #242424;
}

.footer-grid {
  display: grid;
  gap: 5px;
  grid-template-columns: 22% 76%;
  padding: 34px 0;
}

.footer-title {
  font-weight: 950;
  margin: 0 0 10px;
}

.footer-links a {
  display: block;
  padding: 8px 0;
  color: var(--textSecondary);
  font-weight: 800;
}

.footer-links a:hover {
  color: var(--primary);
}

.small {
  color: var(--textSecondary);
  line-height: 1.7;
  text-shadow: 0 0 white;
  text-align: justify;
}

.footer-bottom {
  border-top: 1px solid rgba(0, 53, 102, 0.7);
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.scroll-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  border: 1px solid rgba(0, 53, 102, 0.85);
  background: rgb(217 172 79);
  color: #000;
  cursor: pointer;
  display: none;
}

.scroll-top.show {
  display: block;
}

.scroll-top:hover {
  border-color: rgba(255, 214, 10, 0.55);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 980px) {

  .grid.two,
  .hero-wrap {
    grid-template-columns: 1fr;
  }

  .grid.three {
    grid-template-columns: 1fr;
  }

  .carousel-slide {
    flex-basis: calc(100% - 0px);
  }

  .nav {
    display: none;
  }

  .mobile-btn {
    display: inline-flex;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  body {
    padding-top: 68px;
  }

  :root {
    --headerH: 68px;
  }
}

/* Form fields */
.field {
  width: 100%;
  margin-top: 6px;
  margin-bottom: 12px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(0, 53, 102, 0.85);
  background: rgba(0, 8, 20, 0.55);
  color: var(--textPrimary);
}

/* Table of contents */
.toc {
  margin: 10px 0 0 0;
  padding: 0;
  list-style: none;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0, 53, 102, 0.6);
}

.toc li a {
  display: block;
  padding: 10px 12px;
  text-decoration: none;
  color: var(--textPrimary);
  background: rgba(0, 29, 61, 0.25);
  border-bottom: 1px solid rgba(0, 53, 102, 0.35);
}

.toc li:nth-child(even) a {
  background: rgba(0, 29, 61, 0.15);
}

.toc li:last-child a {
  border-bottom: none;
}

.toc li a:hover {
  background: rgba(0, 160, 255, 0.18);
}

/* Table of Contents dropdown */
.toc-dropdown {}

.toc-dropdown .toc {
  margin-top: 10px;
}

.toc-dropdown>summary {
  list-style: none;
  cursor: pointer;
  user-select: none;
}

.toc-dropdown>summary::-webkit-details-marker {
  display: none;
}

.toc-summary {
  font-size: 1.75rem;
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.toc-summary::after {
  content: "âž¤";
  font-size: 1.1rem;
}

.toc-dropdown[open] .toc-summary::after {
  content: "â–¼";
}

.section-surface {
  margin-bottom: 16px;
}

.section-surface:last-child {
  margin-bottom: 0;
}

/* Header search + auth buttons */
.btn--ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--textPrimary);
  padding: 10px 14px;
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.06);
}

.nav-search {
  display: flex;
  align-items: center;
  background: rgb(49 95 192);
  border: 1px solid rgb(212 190 190);
  border-radius: 30px;
  padding: 4px 8px;
  backdrop-filter: blur(6px);
  max-width: 260px;

  position: relative;
  overflow: hidden;
}

/* default background */
.nav-search::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(49 95 192);
  z-index: 0;
}

/* hover background (right â†’ left) */
.nav-search::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2f80ff, #1a4fd8);
  transform: translateX(100%);
  transition: transform 0.4s ease;
  z-index: 1;
}

.nav-search:hover::before {
  transform: translateX(0);
}

/* content always on top */
.nav-search input,
.nav-search button {
  position: relative;
  z-index: 2;
}

/* input */
.nav-search input {
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  padding: 6px 10px;
  width: 190px;
  font-size: 14px;
}

.nav-search input::placeholder {
  color: #e0e0e0;
}

/* button */
.nav-search buttons {
  background: linear-gradient(135deg, #1aff1a, #00b300);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-search button i {
  color: #003300;
  font-size: 16px;
}

/* mobile */
@media (max-width: 768px) {
  .nav-search {
    width: 100%;
    margin: 10px 0;
  }

  .nav-search input {
    width: 100%;
  }
}

.tabox-boxes .card.reveal.is-visible {
  background: linear-gradient(to right, #03090f, transparent);
}

.box {
  background: linear-gradient(to right, #23252e, transparent);
  border-radius: 14px;
  padding: 18px;
}

/* ===== Table ===== */
.table-wrap {
  background: rgba(255, 255, 255, .15);
  border-radius: 12px;
  overflow: hidden;
  padding: 10px;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  border: 1px solid rgb(217 172 79);
}

td.label {
  width: 42%;
  background: #191919;
  padding: 11px 14px;
  font-weight: 600;
  color: #fff;
  position: relative;
}

td.label::before {
  content: "";
  position: absolute;
  left: 8px;
  color: #cfd8ff;
}

td.value {
  background: #242424;
  padding: 11px 14px 11px 24px;
  color: #fff;
  font-weight: 600;
}

tr:not(:last-child) td {
  border: 1px solid rgb(217 172 79);
}

.info {
  margin-top: 12px;
  background: rgba(255, 255, 255, .35);
  color: #1a1f4d;
  padding: 12px;
  border-radius: 10px;
  font-size: 14px;
  text-align: left;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  font-size: 16px;
}

.compare-table th {
  padding: 16px 10px;
  background: linear-gradient(180deg, #263fbf, #1a2e8f);
  color: #fff;
  font-weight: 700;
}

.compare-table td:first-child {
  text-align: center;
  padding-left: 18px;
  color: #000;
  background-color: #c6c7ec;
}

.compare-table td {
  padding: 14px 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .55), rgba(220, 230, 255, .45));
  color: #1a1f4d;
  font-weight: 600;
}

.compare-table td:first-child {
  text-align: center;
  padding-left: 18px;
  color: #000;
  background-color: #c6c7ec;
}

.compare-table tr:not(:last-child) td {
  border-bottom: 1px solid rgba(255, 255, 255, .35);
}

.cards {
  background-color: #23252e;
  padding: 13px 42px 13px 10px;
}

.cards.reveal.is-visible {
  text-align: center;
}

@media (max-width: 768px) {
  .title {
    font-size: 26px;
  }

  .box {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  table {
    font-size: 14px;
  }

  td.label,
  td.value {
    padding: 10px;
  }

  .right {
    margin-top: 10px;
  }

  .right img {
    max-width: 200px;
    margin: auto;
  }

  .section-title span {
    white-space: normal;
    font-size: 17px;
    text-align: center;
  }

  .compare-title {
    font-size: 24px;
  }

  .compare-table {
    font-size: 14px;
  }

  .giftcode {
    font-size: 1rem;
  }

}

.game-section {
  background: #0b1f3a;
  color: #fff;
}

.section-head {
  text-align: center;
  margin-bottom: 30px;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.game-card {
  background: #242424;
  border-radius: 14px;
  padding: 15px;
  transition: 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.game-card:hover {
  transform: translateY(-5px);
}

.game-card img {
  width: 100%;
  border-radius: 24px;
  margin-bottom: 10px;
}

.game-card h3 {
  font-size: 18px;
  margin-bottom: 6px;
  color: #ffd54f;
}

.game-card p {
  font-size: 14px;
  color: #ccc;
}

/* âœ… Mobile */
@media (max-width: 768px) {
  .game-grid {
    grid-template-columns: 1fr;
  }
}

.black-type-clr {
  background: #23252e;
}

.black-type-clr h3 {
  font-size: 20px;
}

.center {
  display: flex;
  margin: auto;
  justify-content: center;
  align-items: center;
}

/* Table Base */
.table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Poppins', sans-serif;
  background: #0f172a;
  border-radius: 12px;
  overflow: hidden;
}

/* Header BLACK */
.table thead {
  background: #ffd54f;
}

.table thead th {
  color: #fff;
  padding: 14px;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
}

.table thead th strong {
  color: #000 !important;
}

/* Body */
.table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.3s;
}

.table tbody tr:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* Cells */
.table td {
  padding: 12px 14px;
  font-size: 14px;
}

/* Feature column (same rakha) */
.table td:first-child {
  font-weight: 600;
  color: #ffb703;
}

/* DM Win column (WHITE) */
.table td:nth-child(2) {
  color: #ffffff;
}

/* Other Apps column (WHITE) */
.table td:nth-child(3) {
  color: #ffffff;
}

/* Zebra */
.table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}

/* Responsive */
@media (max-width: 768px) {
  .table thead {
    display: none;
  }

  .table,
  .table tbody,
  .table tr,
  .table td {
    display: block;
    width: 100%;
  }

  .table tr {
    margin-bottom: 15px;
    background: #111827;
    border-radius: 10px;
    padding: 10px;
  }

  .table td {
    position: relative;
  }

  .table td::before {
    content: attr(data-label);
    position: absolute;
    left: 12px;
    top: 12px;
    color: #9ca3af;
    font-weight: 600;
    font-size: 13px;
    text-align: left;
  }

  ul,
  ol {

    padding-left: 0px;
  }
}

.author-img {
  display: flex;
  justify-content: center;
}

.author-img img {
  max-width: 206px;
  border-radius: 30px;
  border: 7px solid #fff;
  padding: 10px;
}

.hero-art.reveal.for-height.is-visible {
  margin: auto;
}

.hero-art.reveal.for-height.is-visible img {
  height: 500px;
}

/* Badges Right */
.footer-badges {
  /* ðŸ”¥ sabse zyada width */
  display: flex;
  align-items: center;
  gap: 15px;
}

.hero-d-buttons {
  margin-top: -14px;
}

.footer-badges img {
  height: 47px;
}

.black-type-clrs img {
  display: flex;
  justify-content: center;
  margin: auto;
  max-width: 280px;
}

.for-center {
  text-align: center;
}

html {
  scroll-behavior: smooth;
}

.table-wrap thead th {
  padding: 11px;
}

section.section.section--a.inner-section {
  background: #e9c36e;
}

.player-reviews .bdg-card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.player-reviews .card>.h2 {
  grid-column: 1 / -1;
}