/* =========================
   Core variables & base
   ========================= */
:root {
  /* Dark green base */
  --bg: #02130c;
  --panel: #062015;

  --text: #f6fff8;
  --muted: #b7d6c4;

  /* Orange system based on #fd9800 */
  --gold: #fd9800;          /* core brand orange */
  --gold-start: #ffcf70;    /* light orange for gradients */
  --gold-end: #fd9800;      /* strong orange edge */
  --accent: #fff4d0;        /* pale for links / highlights */

  /* JILIX green palette (still used for backgrounds) */
  --green-deep: #02381f;
  --green-mid: #048540;
  --green-bright: #21d36c;

  --ring: linear-gradient(90deg, var(--gold-start), var(--gold-end));

  --section-pad: clamp(64px, 7vw, 104px);
  --nav-offset: 78px;
}

* {
  font-family: 'Poppins', Arial, Helvetica, sans-serif !important;
}

html,
body {
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

body {
  padding-top: var(--nav-offset);
}

/* Paragraphs / lead text */
p,
.lead {
  color: var(--muted);
  line-height: 1.75;
}

/* Improve anchor scrolling for fixed navbar */
section,
.tab-pane,
[id] {
  scroll-margin-top: calc(var(--nav-offset) + 12px);
}

/* =========================
   Headings
   ========================= */
/* Solid white headings for maximum contrast */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  letter-spacing: 0.4px;
  color: #ffffff;
  text-shadow:
    0 0 14px rgba(0, 0, 0, 0.85),
    0 2px 6px rgba(0, 0, 0, 0.9);
}

/* Utility if you ever want gradient text on small elements */
.text-gradient {
  background: linear-gradient(90deg, var(--gold-start), var(--gold-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Title bar */
h1.has-bar,
h2.has-bar,
h3.has-bar {
  position: relative;
  padding-left: 18px;
  margin-bottom: 18px;
}
h1.has-bar::before,
h2.has-bar::before,
h3.has-bar::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.12em;
  bottom: 0.12em;
  width: 6px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--gold-start), var(--gold-end));
  box-shadow: 0 0 10px rgba(253, 152, 0, 0.55);
}
h1.has-bar::before {
  width: 8px;
}

main > section {
  padding-block: var(--section-pad);
}

/* HERO gets its own JILIX-style green gradient */
.hero {
  padding-block: calc(var(--section-pad) * 0.9);
  background:
    radial-gradient(900px 480px at 10% -10%, rgba(33, 211, 108, 0.35), transparent 60%),
    radial-gradient(800px 420px at 90% 120%, rgba(255, 223, 120, 0.28), transparent 60%),
    radial-gradient(circle at 50% 0, rgba(4, 133, 64, 0.36), var(--green-deep) 55%, #010705 100%);
}

/* Alternating section backgrounds – dark green gradients */
section {
  padding-top: 80px;
  padding-bottom: 80px;
}
section:nth-of-type(odd) {
  background:
    radial-gradient(circle at 0% 0%, rgba(4, 133, 64, 0.28), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(33, 211, 108, 0.22), transparent 60%),
    #02130c;
}
section:nth-of-type(even) {
  background:
    radial-gradient(circle at 100% 0%, rgba(4, 133, 64, 0.2), transparent 55%),
    radial-gradient(circle at 0% 100%, rgba(9, 97, 51, 0.26), transparent 60%),
    #03170f;
}

/* =========================
   Navbar
   ========================= */
.navbar.jq-glass {
  background:
    linear-gradient(90deg, rgba(2, 35, 20, 0.96), rgba(4, 60, 31, 0.96)) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(173, 255, 203, 0.16);
  box-shadow: 0 18px 30px -18px rgba(0, 0, 0, 0.75);
}

.navbar-brand img {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
  transition: opacity 0.25s;
}
.navbar-brand img:hover {
  opacity: 0.9;
}
@media (max-width: 991px) {
  .navbar-brand img {
    height: 40px;
  }
}

/* Center menu on desktop */
.navbar-collapse {
  justify-content: center;
}

.navbar-nav {
  gap: 0.5rem !important;
  white-space: nowrap;
}
.navbar-nav .nav-item {
  flex-shrink: 0 !important;
}
.navbar-nav .nav-link {
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
  align-items: center;
}

/* Links */
.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  transition: color 0.2s, text-shadow 0.2s;
}
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--accent);
  text-shadow: 0 0 10px rgba(253, 152, 0, 0.75);
}

/* CTA buttons in navbar */
.cta-group {
  margin-left: 1rem !important;
}
.navbar .btn.btn-gold.btn-sm {
  padding-left: 1.4rem !important;
  padding-right: 1.4rem !important;
}

/* Mobile nav */
.navbar .navbar-toggler {
  position: relative;
  z-index: 1052;
}
@media (max-width: 991.98px) {
  .navbar .navbar-collapse {
    position: fixed;
    top: var(--nav-offset);
    left: 0;
    right: 0;
    height: calc(100vh - var(--nav-offset));
    background:
      linear-gradient(180deg, #02130c 0%, #031910 50%, #010806 100%);
    padding: 16px 20px;
    overflow-y: auto;
    z-index: 1051;
  }
}

/* =========================
   Buttons
   ========================= */
.btn-gold {
  background:
    linear-gradient(135deg, var(--gold-start), var(--gold-end));
  color: #02130c !important; /* dark text for WCAG contrast */
  border: none;
  border-radius: 50px;
  font-weight: 600;
  padding: 10px 24px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.55);
  transition: all 0.3s ease;
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-end), #ffb347);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.8);
}

.btn.ghost {
  background: none !important;
  border: none !important;
  color: #f9fff9 !important;
  font-weight: 600;
}
.btn.ghost:hover {
  color: var(--accent) !important;
}

/* Large buttons used in CTA */
.btn-lg {
  padding: 12px 26px;
  font-size: 1.05rem;
  border-radius: 999px;
}
.btn-outline-gold {
  background:
    linear-gradient(#02130c, #02130c) padding-box,
    linear-gradient(135deg, var(--gold-start), var(--gold-end)) border-box;
  border: 1px solid transparent;
  color: #f9fff9 !important;
  font-weight: 700;
  border-radius: 999px;
  transition: all 0.3s ease;
}
.btn-outline-gold:hover {
  color: #02130c !important;
  background:
    linear-gradient(135deg, var(--gold-start), var(--gold-end)) padding-box,
    linear-gradient(135deg, var(--gold-start), var(--gold-end)) border-box;
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.8);
}

/* =========================
   Global Card Style
   ========================= */

.card-base,
.why-cards .card,
.promoTile,
.promo-card,
.post-card,
.providers .bullets li,
.flow .item,
.step,
.slot-card,
.tip-card,
.provider-card,
.security-card,
.benefit-card,
.forgot-card,
.hot-game-card,
.game-categories .card {
  background:
    radial-gradient(circle at top, rgba(4, 133, 64, 0.35) 0, #032015 40%, #010807 100%);
  border-radius: 14px;
  border: 1px solid rgba(143, 255, 197, 0.16);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.8);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card-base:hover,
.promoTile:hover,
.promo-card:hover,
.post-card:hover,
.providers .bullets li:hover,
.flow .item:hover,
.step:hover,
.slot-card:hover,
.tip-card:hover,
.provider-card:hover,
.security-card:hover,
.benefit-card:hover,
.forgot-card:hover,
.hot-game-card:hover,
.game-categories .card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.95),
    0 0 0 1px rgba(33, 211, 108, 0.32);
  border-color: rgba(33, 211, 108, 0.48);
}

/* =========================
   HERO
   ========================= */

.hero-figure {
  flex: 0 0 auto;
  width: 420px;
  max-width: 38vw;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero-figure img.hero-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

@media (max-width: 991.98px) {
  .hero-figure {
    width: 320px;
    max-width: 65vw;
  }
}
@media (max-width: 575.98px) {
  .hero-figure {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  .hero-figure .hero-img {
    width: 100%;
    height: auto;
    transform: scale(1.15);
    transform-origin: center top;
  }
}

/* HERO ghost button alignment */
.hero .btn.ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.2rem;
  line-height: 1;
}

/* =========================
   WHY JILIX SECTION (Enhanced)
   ========================= */

.why-section {
  position: relative;
  padding: clamp(80px, 10vw, 120px) 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(33, 211, 108, 0.18), transparent),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(253, 152, 0, 0.12), transparent),
    radial-gradient(circle at 50% 50%, rgba(4, 133, 64, 0.08), transparent 70%),
    linear-gradient(180deg, #02150d 0%, #031910 50%, #02130c 100%);
  overflow: hidden;
}

.why-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(143, 255, 197, 0.3), transparent);
}

/* Header */
.why-header {
  margin-bottom: 50px;
}

.why-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  margin-bottom: 20px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(253, 152, 0, 0.12);
  border: 1px solid rgba(253, 152, 0, 0.35);
  box-shadow: 0 4px 20px rgba(253, 152, 0, 0.15);
}

.why-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.why-subtitle {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
}

/* Stats Row */
.why-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 50px;
  padding: 32px 40px;
  border-radius: 20px;
  background:
    radial-gradient(circle at top, rgba(33, 211, 108, 0.12), transparent 60%),
    rgba(2, 21, 13, 0.8);
  border: 1px solid rgba(143, 255, 197, 0.18);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.why-stat {
  text-align: center;
  position: relative;
}

.why-stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  height: 50px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(143, 255, 197, 0.3), transparent);
}

.why-stat-num {
  display: block;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.why-stat-label {
  display: block;
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 4px;
}

@media (max-width: 768px) {
  .why-stats {
    grid-template-columns: repeat(2, 1fr);
    padding: 24px;
    gap: 20px;
  }
  .why-stat:not(:last-child)::after {
    display: none;
  }
}

/* Feature Cards Grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* Card Base */
.why-card {
  position: relative;
  padding: 30px 24px;
  border-radius: 20px;
  background:
    radial-gradient(circle at top left, rgba(4, 133, 64, 0.2), transparent 50%),
    linear-gradient(180deg, #041a10 0%, #02130c 100%);
  border: 1px solid rgba(143, 255, 197, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  transition: all 0.35s ease;
  overflow: hidden;
}

.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-start), var(--gold-end));
  opacity: 0;
  transition: opacity 0.35s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(33, 211, 108, 0.4);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(33, 211, 108, 0.1);
}

.why-card:hover::before {
  opacity: 1;
}

/* Card Icon */
.why-card-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
  box-shadow:
    0 8px 24px rgba(253, 152, 0, 0.35),
    0 4px 12px rgba(0, 0, 0, 0.5);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.why-card-icon i {
  font-size: 1.6rem;
  color: #02130c;
}

.why-card:hover .why-card-icon {
  transform: scale(1.08) rotate(-3deg);
  box-shadow:
    0 12px 32px rgba(253, 152, 0, 0.45),
    0 6px 16px rgba(0, 0, 0, 0.6);
}

.why-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.why-card > p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}

/* Featured Card (Large) */
.why-card-featured {
  grid-column: span 1;
  grid-row: span 2;
  padding: 36px 28px;
  background:
    radial-gradient(circle at 30% 0%, rgba(253, 152, 0, 0.15), transparent 50%),
    radial-gradient(circle at 70% 100%, rgba(33, 211, 108, 0.15), transparent 50%),
    linear-gradient(180deg, #052418 0%, #02130c 100%);
  border-color: rgba(253, 152, 0, 0.25);
}

.why-card-featured::before {
  opacity: 1;
  height: 4px;
}

.why-card-featured .why-card-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
}

.why-card-featured .why-card-icon i {
  font-size: 2rem;
}

.why-card-featured h3 {
  font-size: 1.35rem;
}

.why-card-featured > p {
  font-size: 1rem;
  margin-bottom: 20px;
}

/* Featured Card Glow */
.why-card-glow {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(253, 152, 0, 0.2), transparent 70%);
  pointer-events: none;
}

/* Check List in Featured Card */
.why-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-card-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(143, 255, 197, 0.1);
}

.why-card-list li:last-child {
  border-bottom: none;
}

.why-card-list li i {
  font-size: 1rem;
  color: var(--green-bright);
}

/* Bottom CTA */
.why-cta {
  padding-top: 20px;
}

.why-cta-text {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 576px) {
  .why-cta .btn {
    display: block;
    width: 100%;
    margin-bottom: 12px;
  }
  .why-cta .btn.me-2 {
    margin-right: 0 !important;
  }
}

/* =========================
   SLOTS SHOWCASE SECTION
   ========================= */

.slots-showcase {
  padding: 80px 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(4, 133, 64, 0.15), transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(253, 152, 0, 0.08), transparent 50%),
    var(--bg);
}

/* Header */
.slots-header {
  margin-bottom: 48px;
}

.slots-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(253, 152, 0, 0.15), rgba(253, 152, 0, 0.05));
  border: 1px solid rgba(253, 152, 0, 0.3);
  border-radius: 50px;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.slots-badge i {
  font-size: 1rem;
}

.slots-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.slots-subtitle {
  max-width: 650px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Stats Bar */
.slots-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
  padding: 24px;
  background: rgba(3, 56, 31, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
}

.slots-stat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 8px;
}

.slots-stat i {
  font-size: 2rem;
  color: var(--gold);
}

.slots-stat-info {
  display: flex;
  flex-direction: column;
}

.slots-stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}

.slots-stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Games Grid */
.slots-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

/* Featured Large Card */
.slots-featured {
  grid-column: 1;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  background: linear-gradient(145deg, rgba(3, 56, 31, 0.6), rgba(2, 19, 12, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.slots-featured:hover {
  transform: translateY(-8px);
  border-color: rgba(253, 152, 0, 0.4);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(253, 152, 0, 0.1);
}

.slots-featured-image {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.slots-featured-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.slots-featured:hover .slots-featured-image img {
  transform: scale(1.08);
}

.slots-featured-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: linear-gradient(135deg, #ff4444, #cc0000);
  border-radius: 8px;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(255, 68, 68, 0.4);
}

.slots-featured-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.slots-featured-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.slot-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
  font-weight: 500;
}

.slot-tag i {
  color: var(--gold);
  font-size: 0.8rem;
}

.slots-featured-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.slots-featured-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.slots-featured-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
  padding: 16px;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 10px;
}

.slots-featured-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
}

.slots-featured-meta i {
  color: var(--gold);
}

.slots-featured .btn-gold {
  margin-top: auto;
  width: fit-content;
}

/* Regular Game Cards */
.slots-card {
  background: linear-gradient(145deg, rgba(3, 56, 31, 0.4), rgba(2, 19, 12, 0.8));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.slots-card:hover {
  transform: translateY(-6px);
  border-color: rgba(253, 152, 0, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.slots-card-image {
  position: relative;
  height: 130px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.slots-card-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.slots-card:hover .slots-card-image img {
  transform: scale(1.1);
}

.slots-card-rtp {
  position: absolute;
  bottom: 10px;
  right: 10px;
  padding: 5px 10px;
  background: rgba(0, 0, 0, 0.75);
  border: 1px solid rgba(253, 152, 0, 0.5);
  border-radius: 6px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
}

.slots-card-content {
  padding: 20px;
}

.slots-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.slots-card-desc {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.slots-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
  border: none;
  border-radius: 8px;
  color: #02130c;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.slots-card-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(253, 152, 0, 0.4);
  color: #02130c;
}

/* Bottom CTA */
.slots-cta {
  text-align: center;
  padding: 32px;
  background: linear-gradient(135deg, rgba(3, 56, 31, 0.5), rgba(2, 19, 12, 0.8));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
}

.slots-cta-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 991px) {
  .slots-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .slots-grid {
    grid-template-columns: 1fr;
  }
  
  .slots-featured {
    grid-column: 1;
    grid-row: auto;
  }
}

@media (max-width: 767px) {
  .slots-showcase {
    padding: 60px 0;
  }
  
  .slots-title {
    font-size: 2rem;
  }
  
  .slots-featured-image {
    height: 220px;
  }
  
  .slots-featured-meta {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 576px) {
  .slots-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .slots-stat {
    justify-content: flex-start;
    padding: 12px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
  }
  
  .slots-featured-content {
    padding: 20px;
  }
  
  .slots-featured-title {
    font-size: 1.4rem;
  }
  
  .slots-card-image {
    height: 140px;
  }
}

/* =========================
   APP / DOWNLOAD STEPS
   ========================= */

.app-two {
  background:
    radial-gradient(circle at 100% 0%, rgba(4, 133, 64, 0.25), transparent 55%),
    #03170f;
}
.app-steps {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}
.step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
}

/* numbered pills */
.step-num {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
  color: #02130c;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.75),
    inset 0 0 0 2px rgba(2, 19, 12, 0.25);
}

.step-body h3,
.step-body h6 {
  margin: 0 0 4px;
  font-weight: 700;
}
.step-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.app-visual {
  position: relative;
  padding: 10px;
  border-radius: 16px;
  background:
    radial-gradient(1200px 400px at 20% 0%, rgba(33, 211, 108, 0.22), transparent 60%),
    radial-gradient(900px 350px at 80% 120%, rgba(255, 223, 120, 0.16), transparent 60%),
    #02150d;
  border: 1px solid rgba(143, 255, 197, 0.22);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
}
.app-visual img {
  display: block;
  margin-inline: auto;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}
@media (max-width: 991px) {
  .app-visual {
    margin-top: 10px;
  }
}

/* =========================
   GAME CATEGORIES – HOME
   ========================= */

.home-categories {
  background:
    radial-gradient(circle at 0% 0%, rgba(33, 211, 108, 0.22), transparent 55%),
    #031910;
}
.home-cat-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}
.home-cat-cta {
  padding-inline: 1.2rem;
  padding-block: 0.45rem;
  border-radius: 999px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  border: 1px solid rgba(173, 255, 203, 0.25);
  background: rgba(3, 29, 16, 0.92);
}
.home-cat-cta:hover {
  border-color: rgba(33, 211, 108, 0.85);
  background: radial-gradient(circle at 50% 0%, rgba(33, 211, 108, 0.38), transparent 60%);
  transform: translateY(-1px);
}
.home-cat-card {
  padding: 24px 22px;
}
.home-cat-img {
  object-fit: contain !important;
  max-width: 100%;
  height: auto;
  display: block;
}

/* =========================
   HOT GAMES CAROUSELS
   ========================= */

.hot-games {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(143, 255, 197, 0.16);
}
.hot-games-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.25rem 1rem;
  margin-bottom: 1rem;
}
.hot-games-head h4 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}
.hot-games-head small {
  font-size: 0.8rem;
  color: var(--muted);
}

/* Carousel layout */
.hot-games-carousel .carousel-inner {
  padding: 0.25rem 2.5rem 0.75rem;
}

/* Card */
.hot-game-card {
  padding: 0.9rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.hot-game-card .hot-thumb {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 0.75rem;
  padding: 0.4rem;
  background: radial-gradient(circle at top, #064628 0, #02130c 80%);
}
.hot-game-card .hot-thumb img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 220px;
  object-fit: contain;
  margin: 0 auto;
  border-radius: 10px;
  transform: translateZ(0);
  transition: transform 0.35s ease;
}
.hot-game-card:hover .hot-thumb img {
  transform: scale(1.03);
}

/* Hot badge – orange pill */
.hot-game-card .hot-badge {
  position: absolute;
  top: 0.55rem;
  left: 0.55rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #02130c;
  background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.hot-game-card:hover .hot-badge {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.9);
}

/* Hot name – solid near-white for readability */
.hot-game-card .hot-name {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
  color: #fff9ef;
}
.hot-game-card .hot-meta {
  font-size: 0.82rem;
  line-height: 1.5;
  color: #d0e7d7;
  margin: 0;
}

.hot-games-carousel .carousel-control-prev,
.hot-games-carousel .carousel-control-next {
  width: 2.25rem;
  top: 50%;
  transform: translateY(-50%);
}
.hot-games-carousel .carousel-control-prev-icon,
.hot-games-carousel .carousel-control-next-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.7);
  background-size: 55% 55%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.85);
}

@media (max-width: 991.98px) {
  .hot-games-carousel .carousel-inner {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .hot-games-carousel .carousel-control-prev,
  .hot-games-carousel .carousel-control-next {
    width: 2rem;
  }
  .hot-games-carousel .carousel-control-prev-icon,
  .hot-games-carousel .carousel-control-next-icon {
    width: 2rem;
    height: 2rem;
  }
}
@media (max-width: 575.98px) {
  .hot-games-carousel .row > [class*="col-"] {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* =========================
   PROMOTIONS – GRID & CAROUSEL
   ========================= */

.promos {
  background:
    radial-gradient(circle at 100% 0%, rgba(33, 211, 108, 0.22), transparent 55%),
    #031910;
}
.promoGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 24px;
}
.promoTile {
  display: flex;
  flex-direction: column;
  color: var(--text);
}
.promoImg {
  width: 100%;
  height: auto;
  max-height: 150px;
  object-fit: contain;
  background: #02120b;
  border-bottom: 1px solid rgba(143, 255, 197, 0.16);
  transition: transform 0.3s ease;
}
.promoTile:hover .promoImg {
  transform: scale(1.02);
}
.promoTitle {
  margin: 12px 12px 6px;
  font-weight: 800;
  font-size: 0.95rem;
}
.promoCopy {
  margin: 0 12px 14px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}
@media (max-width: 768px) {
  .promoImg {
    max-height: 120px;
  }
}
.promo-card .hot-thumb {
  aspect-ratio: auto;
  height: auto;
  padding: 0;
  background: none;
  overflow: visible;
}
.promo-card .hot-thumb img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 1rem;
  display: block;
}

/* =========================
   ARTICLES GRID
   ========================= */

.articles {
  background:
    radial-gradient(circle at 0% 0%, rgba(4, 133, 64, 0.22), transparent 55%),
    #031910;
  padding-block: var(--section-pad);
}
.articles .sub {
  color: var(--muted);
  margin: 6px 0 14px;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 6px;
}
.post-card {
  display: flex;
  flex-direction: column;
}
.post-card .thumb-wrap {
  display: block;
}
.post-card .thumb {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-bottom: 1px solid rgba(143, 255, 197, 0.16);
  transition: transform 0.35s ease;
}
.post-card:hover .thumb {
  transform: scale(1.035);
}
.post-card .post-body {
  padding: 14px 14px 16px;
}
.post-card .meta {
  color: #d6f0df;
  opacity: 0.9;
  font-size: 0.86rem;
  margin-bottom: 6px;
}
.post-card .meta .cat {
  color: #04150a;
  background: var(--ring);
  border-radius: 999px;
  padding: 2px 8px;
  font-weight: 700;
}
.post-card .post-title {
  margin: 6px 0 8px;
  font-size: 1.05rem;
  line-height: 1.32;
}
.post-card .post-title a {
  text-decoration: none;
  color: inherit;
}
.post-card .excerpt {
  color: var(--muted);
  margin: 0 0 10px;
  font-size: 0.95rem;
}
.post-card .read-more {
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
}
.post-card .read-more:hover {
  color: var(--accent);
}

/* pagination */
.pager {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  margin-top: 22px;
}
.pager .page {
  display: inline-grid;
  place-items: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border-radius: 10px;
  background: #021810;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  border: 1px solid rgba(143, 255, 197, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.pager .page:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(33, 211, 108, 0.35);
  border-color: rgba(33, 211, 108, 0.55);
}
.pager .page.active {
  color: #02130c;
  background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
  border-color: transparent;
}

/* =========================
   PROVIDERS
   ========================= */

.providers {
  background:
    radial-gradient(circle at 100% 0%, rgba(4, 133, 64, 0.24), transparent 55%),
    #03170f;
}
.providers .has-bar {
  margin-bottom: 14px;
}
.providers .bullets {
  list-style: none;
  padding: 0;
  margin: 12px 0 6px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.providers .bullets li {
  position: relative;
  padding: 16px 16px 16px 60px;
  color: var(--muted);
}

/* bullet icon background */
.providers .bullets li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.8);
}
.providers .bullets li[data-initial]::after {
  content: attr(data-initial);
  position: absolute;
  left: 16px;
  top: 16px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #02130c;
  font-size: 0.9rem;
}
.providers .bullets li strong {
  color: #ffffff;
}
.providers p {
  margin-top: 16px;
  color: var(--muted);
}

/* =========================
   FAQ – unified accordion
   ========================= */

.faq {
  background:
    radial-gradient(circle at 0% 0%, rgba(33, 211, 108, 0.22), transparent 55%),
    #031910;
}
.faq-accordion {
  --bs-accordion-bg: transparent;
  --bs-accordion-border-color: rgba(143, 255, 197, 0.22);
  --bs-accordion-color: var(--text);
  --bs-accordion-btn-color: var(--text);
  --bs-accordion-btn-bg: #041910;
  --bs-accordion-active-bg: linear-gradient(90deg, rgba(33, 211, 108, 0.26), rgba(255, 223, 120, 0.12));
  --bs-accordion-active-color: var(--gold);
  --bs-accordion-border-radius: 12px;
  --bs-accordion-inner-border-radius: 12px;
  --bs-accordion-btn-focus-border-color: rgba(33, 211, 108, 0.65);
  --bs-accordion-btn-focus-box-shadow: 0 0 0 0.2rem rgba(33, 211, 108, 0.35);
}
.faq-accordion .accordion-item {
  background: #041910 !important;
  border: 1px solid var(--bs-accordion-border-color) !important;
  border-radius: 12px !important;
  overflow: hidden;
  margin-bottom: 12px;
}
.faq-accordion .accordion-button {
  background: var(--bs-accordion-btn-bg) !important;
  color: var(--text) !important;
  font-weight: 700;
  padding: 16px 18px;
  border: none;
  box-shadow: none;
}
.faq-accordion .accordion-button:hover {
  color: var(--gold) !important;
}
.faq-accordion .accordion-button:not(.collapsed) {
  background: var(--bs-accordion-active-bg) !important;
  color: var(--gold) !important;
}
.faq-accordion .accordion-button::after {
  filter: brightness(1.6) saturate(1.2);
  transition: transform 0.25s ease;
}
.faq-accordion .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}
.faq-accordion .accordion-body {
  background: #02150d !important;
  color: var(--muted) !important;
  padding: 18px 20px;
  border-top: 1px solid rgba(143, 255, 197, 0.16);
  line-height: 1.65;
}
@media (max-width: 576px) {
  .faq-accordion .accordion-button {
    padding: 14px 16px;
  }
  .faq-accordion .accordion-body {
    padding: 16px;
  }
}

/* =========================
   PAYMENTS
   ========================= */

.payments {
  background:
    radial-gradient(circle at 100% 0%, rgba(4, 133, 64, 0.22), transparent 55%),
    #03170f;
}
.pay-guide {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 18px;
}
@media (max-width: 992px) {
  .pay-guide {
    grid-template-columns: 1fr;
  }
}
.pay-col h3 {
  margin: 0 0 6px;
}
.pay-col .note {
  margin-bottom: 12px;
  color: var(--muted);
}
.flow {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: grid;
  gap: 12px;
}
.flow .item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 16px;
}
.flow .badge {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
  color: #02130c;
  font-weight: 800;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.75);
}
.flow .body h4 {
  margin: 0 0 4px;
}
.flow .body p {
  margin: 0;
  color: var(--muted);
}
.methods,
.assurance {
  padding: 14px 16px;
}
.methods h5 {
  margin: 0 0 8px;
}
.methods .list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}
.assurance p {
  margin: 0;
  color: var(--muted);
}
.payments p a {
  color: #ffd786;
  font-weight: 700;
  text-decoration: none;
}
.payments p a:hover {
  color: #ffb347;
  text-decoration: underline;
}

/* =========================
   CTA SECTION
   ========================= */

.cta-wrap {
  background:
    radial-gradient(circle at 0% 0%, rgba(33, 211, 108, 0.22), transparent 55%),
    #031910;
  padding-block: clamp(48px, 6vw, 84px);
}
.cta-card {
  position: relative;
  border-radius: 16px;
  padding: clamp(28px, 4.5vw, 48px);
  text-align: center;
  color: var(--text);
  background:
    radial-gradient(900px 360px at 15% -10%, rgba(33, 211, 108, 0.3), transparent 60%),
    radial-gradient(700px 300px at 85% 110%, rgba(255, 223, 120, 0.18), transparent 60%),
    #02140c;
  border: 1px solid rgba(143, 255, 197, 0.22);
  box-shadow:
    0 16px 44px rgba(0, 0, 0, 0.7),
    0 10px 28px rgba(33, 211, 108, 0.2);
}
.cta-title {
  margin: 0 0 10px;
  font-weight: 800;
  letter-spacing: 0.3px;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
}
.cta-card .lead {
  max-width: 960px;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.75;
}
.cta-card .lead a {
  color: #ffd786;
  font-weight: 700;
  text-decoration: none;
}
.cta-card .lead a:hover {
  color: #ffb347;
  text-decoration: underline;
}
.cta-actions {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

/* =========================
   FOOTER
   ========================= */

.site-footer {
  background:
    radial-gradient(circle at 100% 0%, rgba(4, 133, 64, 0.24), transparent 55%),
    #03170f;
  padding: 48px 0 22px;
  border-top: 1px solid rgba(143, 255, 197, 0.22);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.footer-brand .footer-logo img {
  height: 42px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.45));
  margin-bottom: 10px;
}
.site-footer h4 {
  margin: 0 0 10px;
  font-weight: 800;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin: 6px 0;
}
.footer-links a {
  color: rgba(232, 248, 237, 0.9);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}
.footer-links a:hover {
  color: var(--accent);
  transform: translateX(2px);
}
.site-footer .legal {
  border-top: 1px solid rgba(143, 255, 197, 0.22);
  margin-top: 26px;
  padding: 16px 0 24px;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}
.site-footer .legal-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.875rem;
  color: #c6e4d3;
}
.site-footer .legal-inner .dmca-badge img {
  display: block;
  height: 20px;
  width: auto;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }
}
@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .site-footer {
    padding: 38px 0 18px;
  }
}

/* =========================
   BACK TO TOP BUTTON
   ========================= */

#backToTop {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  font-size: 1.4rem;
  font-weight: 700;
  color: #02130c;
  background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.75);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9999;
}
#backToTop.show {
  opacity: 1;
  visibility: visible;
}
#backToTop:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.9);
}
#backToTop:focus {
  outline: 2px solid var(--gold-end);
  outline-offset: 3px;
}

/* =========================
   LINK TREATMENT IN CONTENT
   ========================= */

.container > p,
.container > ul,
.container > ol {
  margin-bottom: 18px;
}

/* Internal links and in-page anchors */
p a[href*="jilix.io"],
p a[href^="/"],
p a[href^="#"] {
  color: #ffd786;       /* lighter tint */
  font-weight: 700;
  text-decoration: none;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

p a[href*="jilix.io"]:hover,
p a[href^="/"]:hover,
p a[href^="#"]:hover {
  color: #ffb347;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

/* External links */
p a[href^="http"]:not([href*="jilix.io"]) {
  color: var(--accent);
  font-weight: 500;
}
p a[href^="http"]:not([href*="jilix.io"]):hover {
  color: var(--gold-start);
}

/* Generic image behaviour */
img,
.hero-img,
.promoImg,
.app-visual img {
  max-width: 100%;
  height: auto;
}

/* =========================
   Breadcrumb / article meta
   ========================= */

.breadcrumb-gold {
  background: linear-gradient(90deg, #ffd479 0%, #f7c645 40%, #e1a93b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  text-decoration: none;
}
.breadcrumb-gold:hover {
  opacity: 0.85;
  text-decoration: underline;
}
.breadcrumb-current {
  color: #d6c38a !important;
  font-weight: 600;
}
.breadcrumb-item + .breadcrumb-item::before {
  color: #e3c77b;
}

.category-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  background: linear-gradient(90deg, #ffd479 0%, #f7c645 40%, #e1a93b 100%);
  color: #1e1e1e;
}
.meta-gold {
  background: linear-gradient(90deg, #ffd479 0%, #f7c645 40%, #e1a93b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

/* =========================
   PROTECT WEBSITE (optional)
   ========================= */

/* Enable only when body has .protect-copy */
body.protect-copy,
body.protect-copy * {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Allow selection in forms */
body.protect-copy input,
body.protect-copy textarea {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

/* ------------------------------------
   FIXED WHY SECTION (solid icons + better contrast)
---------------------------------------*/

/* White headings with glow (override gradient) */
.heading-white {
  background: none !important;
  -webkit-background-clip: initial !important;
  -webkit-text-fill-color: #ffffff !important;
  color: #ffffff !important;
  text-shadow: 0 0 16px rgba(0, 0, 0, 0.85);
}

/* WHY section cards – tidy alignment */
.why-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.why-card {
  padding: 26px 20px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Solid orange circle icons */
.why-icon {
  width: 64px;
  height: 64px;
  margin: 4px auto 14px;
  border-radius: 50%;
  background: var(--gold-end); /* #fd9800 */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.85);
}

.why-icon i {
  font-size: 1.8rem;
  color: #02130c;
}

.footer-4col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  padding: 60px 0;
}

.footer-about .footer-logo {
  max-width: 160px;
  margin-bottom: 15px;
}

.footer-about p {
  margin: 15px 0 20px;
  max-width: 280px;
  line-height: 1.6;
}

.footer-social a {
  margin-right: 12px;
  font-size: 20px;
  color: var(--gold);
  transition: 0.2s;
}

.footer-social a:hover {
  opacity: 0.7;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #ccc;
  transition: 0.2s;
}

.footer-links a:hover {
  color: var(--gold);
}

.legal-bar {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 25px;
  align-items: center;
  font-size: 14px;
  color: #aaa;
}

.dmca-badge img {
  height: 24px;
  margin-left: 10px;
}

@media(max-width: 992px) {
  .footer-4col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 576px) {
  .footer-4col {
    grid-template-columns: 1fr;
  }
}

/* =========================
   GAME CARDS + CAROUSEL
   ========================= */

/* Outer wrapper clamps Swiper so it never overextends section */
.games-carousel-wrapper {
  position: relative;
  overflow: hidden; /* prevents Swiper from pushing outside the layout */
}

/* Swiper container – allow shadows & hover to show inside wrapper */
.games-carousel {
  overflow: visible;
  padding: 0.25rem 2rem 0.75rem; /* breathing room so shadows are not clipped */
  box-sizing: border-box;
}

/* Slides behave as flex items so cards can stretch to equal height */
.games-carousel .swiper-wrapper {
  align-items: stretch;
}

.games-carousel .swiper-slide {
  display: flex;
  height: auto;
}

/* Base layout for game cards – rely on .card-base for background/hover */
.home-cat-card.game-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px 20px 22px;
  text-align: left;
}

/* Title + body */
.game-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.game-card p {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.6;
  color: var(--muted);
}

/* Swiper nav & pagination */
.games-carousel-nav .swiper-button-prev,
.games-carousel-nav .swiper-button-next {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(143, 255, 197, 0.35);
  background: rgba(1, 14, 8, 0.9);
  backdrop-filter: blur(6px);
}

.games-carousel-nav .swiper-button-prev::after,
.games-carousel-nav .swiper-button-next::after {
  font-size: 16px;
}

/* keep arrows just inside the padded area so nothing is clipped */
.games-carousel-nav .swiper-button-prev {
  left: 0.5rem;
}

.games-carousel-nav .swiper-button-next {
  right: 0.5rem;
}

.games-carousel-pagination .swiper-pagination-bullet {
  opacity: 0.4;
}

.games-carousel-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

/* Mobile tweak */
@media (max-width: 575.98px) {
  .home-cat-card.game-card {
    padding: 18px 16px 20px;
  }
}

/* ======================================
   JILIX Slot Game Options – thumbs
   ====================================== */

/* Horizontal banner images, fully visible, only in #games section */
#games .game-card-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;        /* horizontal banner */
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 14px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.7); /* same shadow, now fully visible */
}

#games .game-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;         /* show the whole image */
  display: block;
  background: #02130c;         /* subtle filler behind transparent PNGs */
}

/* ======================================
   JILIX Fishing Game Options – thumbs
   ====================================== */

#fishing-games .game-card-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;        /* same horizontal banner */
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 14px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.7); /* identical shadow */
}

#fishing-games .game-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;        /* same: fully visible, no cropping */
  display: block;
  background: #02130c;
}

/* Match the card layout to #games */
#fishing-games .home-cat-card.game-card {
  display: flex;
  flex-direction: column;
}


/* ======================================
   JILIX Live Casino – match Slot & Fishing styling
====================================== */

#live-casino .game-card-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;     /* same horizontal banner */
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 14px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.7); /* same shadow */
}

#live-casino .game-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;      /* full visibility */
  display: block;
  background: #02130c;      /* same dark filler */
}

#live-casino .home-cat-card.game-card {
  display: flex;
  flex-direction: column;   /* same card layout */
}

/* ======================================
   JILIX Sports Section – match card/thumb styling
====================================== */

#sports-games .game-card-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 14px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.7);
}

#sports-games .game-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #02130c;
}

#sports-games .home-cat-card.game-card {
  display: flex;
  flex-direction: column;
}
/* ======================================
   JILIX Featured Slot Picks – match all other game styling
====================================== */

#slots-2 .game-card-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 14px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.7);
}

#slots-2 .game-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #02130c;
}

#slots-2 .home-cat-card.game-card {
  display: flex;
  flex-direction: column;
}

/* =========================
   PROMOTIONS CAROUSEL
   ========================= */

.promo-carousel-wrapper {
  position: relative;
  overflow: hidden;              /* keep Swiper inside section */
}

.promo-carousel {
  overflow: visible;             /* allow shadows to show */
  padding: 0.25rem 2rem 1rem;    /* breathing room for card shadows */
  box-sizing: border-box;
}

.promo-carousel .swiper-wrapper {
  align-items: stretch;
}

.promo-carousel .swiper-slide {
  display: flex;
  height: auto;
}

/* keep using .card-base + .promo-card from your existing CSS */
.promo-card {
  padding: 0.9rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* banner image wrapper (you already have .promo-card .hot-thumb img rules) */
.promo-card .hot-thumb {
  margin: 0;
  padding: 0;
  background: none;
  overflow: visible;
}

/* text box under banner */
.promo-card .promo-body {
  margin-top: 0.6rem;
  padding: 10px 12px 12px;
  border-radius: 12px;
  background: rgba(2, 25, 14, 0.9);
}

/* status pill – "In Progress" */
.promoStatus {
  display: inline-flex;
  align-items: center;
  margin-top: 6px;
  padding: 3px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: rgba(255, 244, 208, 0.12);
  border: 1px solid rgba(255, 244, 208, 0.55);
  color: #fff7d6;
}

/* nav + pagination, same look as games carousel but scoped to promos */
.promo-carousel-nav .swiper-button-prev,
.promo-carousel-nav .swiper-button-next {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(143, 255, 197, 0.35);
  background: rgba(1, 14, 8, 0.9);
  backdrop-filter: blur(6px);
}

.promo-carousel-nav .swiper-button-prev::after,
.promo-carousel-nav .swiper-button-next::after {
  font-size: 16px;
}

.promo-carousel-nav .swiper-button-prev {
  left: 0.5rem;
}

.promo-carousel-nav .swiper-button-next {
  right: 0.5rem;
}

.promo-carousel-pagination .swiper-pagination-bullet {
  opacity: 0.4;
}

.promo-carousel-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

/* mobile padding tweak */
@media (max-width: 575.98px) {
  .promo-carousel {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

/* NAV DROPDOWN – GLOBAL FOR ALL PAGES */
.navbar .dropdown-menu.nav-dropdown-menu {
  min-width: 14rem;           /* control width here */
  max-width: 18rem;
  width: max-content;
  padding: 0.5rem 0;
  border-radius: 0.75rem;
  border: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.navbar .dropdown-menu.nav-dropdown-menu .dropdown-item {
  display: block;
  width: 100%;
  padding: 0.35rem 1.25rem;
  font-weight: 500;
  color: #0b1a16;
  text-decoration: none;
  white-space: nowrap;        /* keeps each item on one line */
}

.navbar .dropdown-menu.nav-dropdown-menu .dropdown-item:hover,
.navbar .dropdown-menu.nav-dropdown-menu .dropdown-item:focus {
  background-color: rgba(4, 146, 86, 0.07);
  color: #049256;
}

.home-cat-cta {
  padding-inline: 1.2rem;
  padding-block: 0.45rem;
  border-radius: 999px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  border: 1px solid rgba(173, 255, 203, 0.25);
  background: rgba(3, 29, 16, 0.92);

  /* FIXED TEXT COLOR */
  color: #ffd786;              /* soft gold, consistent with internal links */
  font-weight: 700;
  text-decoration: none;
}

.home-cat-cta:hover {
  border-color: rgba(33, 211, 108, 0.85);
  background: radial-gradient(circle at 50% 0%, rgba(33, 211, 108, 0.38), transparent 60%);
  transform: translateY(-1px);

  /* keep readable contrast on hover */
  color: #ffb347;
  text-decoration: none;
}

/* =========================
   NAVBAR DROPDOWN – JILIX STYLE
   ========================= */

.navbar .dropdown-menu.jq-dropdown {
  min-width: 12rem;
  padding: 0.5rem 0;
  border-radius: 12px;
  border: 1px solid rgba(143, 255, 197, 0.22);
  background:
    radial-gradient(circle at top, rgba(4, 133, 64, 0.25) 0, #02150d 50%, #010807 100%);
  box-shadow:
    0 12px 36px rgba(0, 0, 0, 0.85),
    0 0 0 1px rgba(33, 211, 108, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  margin-top: 0.5rem;
}

.navbar .dropdown-menu.jq-dropdown .dropdown-item {
  display: flex;
  align-items: center;
  padding: 0.6rem 1.25rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all 0.2s ease;
  border-radius: 0;
}

.navbar .dropdown-menu.jq-dropdown .dropdown-item i {
  font-size: 1rem;
  color: var(--gold);
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.navbar .dropdown-menu.jq-dropdown .dropdown-item:hover,
.navbar .dropdown-menu.jq-dropdown .dropdown-item:focus {
  background: rgba(33, 211, 108, 0.15);
  color: var(--accent);
  text-shadow: 0 0 8px rgba(253, 152, 0, 0.5);
}

.navbar .dropdown-menu.jq-dropdown .dropdown-item:hover i,
.navbar .dropdown-menu.jq-dropdown .dropdown-item:focus i {
  opacity: 1;
  color: var(--gold-start);
}

.navbar .dropdown-menu.jq-dropdown .dropdown-item.active {
  background: rgba(253, 152, 0, 0.18);
  color: var(--accent);
}

.navbar .dropdown-menu.jq-dropdown .dropdown-item.active i {
  color: var(--gold-start);
}

/* Dropdown divider if needed */
.navbar .dropdown-menu.jq-dropdown .dropdown-divider {
  border-color: rgba(143, 255, 197, 0.16);
  margin: 0.35rem 0;
}

/* Mobile dropdown adjustments */
@media (max-width: 1199.98px) {
  .navbar .dropdown-menu.jq-dropdown {
    background: rgba(2, 21, 13, 0.95);
    border: none;
    border-radius: 8px;
    margin: 0.25rem 0 0.5rem 1rem;
    box-shadow: none;
  }

  .navbar .dropdown-menu.jq-dropdown .dropdown-item {
    padding: 0.55rem 1rem;
  }
}
