/* =============================================
   TopUp Easy — Custom Modern Design
   ============================================= */

/* === SCROLL PROGRESS BAR === */
.tpe-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, rgb(var(--primary-color)), rgba(var(--primary-color),.4));
  z-index: 99999;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px rgba(var(--primary-color), .6);
}

/* === BACK TO TOP === */
.tpe-back-top {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 46px;
  height: 46px;
  background: rgb(var(--primary-color));
  color: #fff;
  border: none;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.35s cubic-bezier(.4,0,.2,1);
  z-index: 999;
  box-shadow: 0 4px 20px rgba(var(--primary-color),.45);
}
.tpe-back-top.is-visible { opacity: 1; transform: translateY(0); }
.tpe-back-top:hover {
  box-shadow: 0 6px 30px rgba(var(--primary-color),.65);
  transform: translateY(-3px);
}
.rtl .tpe-back-top { right: auto; left: 24px; }

/* On mobile: move back-to-top above the fixed bottom-nav bar */
@media (max-width: 1199px) {
  .tpe-back-top {
    bottom: 110px !important;
  }
}

/* === SECTION TITLES — gradient underline === */
.trending-game-section h2,
.trending-live-section h2,
.section-header h2,
.tpe-section-title {
  position: relative;
  display: inline-block;
}
.trending-game-section h2::after,
.trending-live-section h2::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 45px;
  height: 3px;
  background: rgb(var(--primary-color));
  border-radius: 3px;
}
.rtl .trending-game-section h2::after,
.rtl .trending-live-section h2::after {
  left: auto;
  right: 0;
}

/* === GAME CARD HOVER GLOW === */
.game-box-vertical {
  transition: transform 0.3s ease;
}
.game-box-vertical:hover {
  transform: translateY(-6px);
}
.game-box-vertical:hover .img-box {
  box-shadow: 0 10px 35px rgba(var(--primary-color),.28);
}

/* === TRENDING CARD HOVER === */
.trending-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.trending-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(var(--primary-color),.2);
}

/* =========================================
   FOOTER — Full Redesign
   ========================================= */

/* Reset old footer + enforce dark bg */
.footer-section {
  padding-bottom: 0 !important;
}
.tpe-footer-wrap {
  background: #171B1C !important;
  background-color: #171B1C !important;
  color: rgba(255,255,255,.85) !important;
  position: relative;
  overflow: hidden;
}

/* Background glow blob */
.tpe-footer-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(var(--primary-color),.055) 0%, transparent 70%);
  pointer-events: none;
}

/* === Glowing divider line === */
.tpe-footer-topline {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(var(--primary-color),.7) 50%, transparent 100%);
  position: relative;
  margin-bottom: 0;
}
.tpe-footer-topline::after {
  content: '';
  position: absolute;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 250px;
  height: 6px;
  background: rgb(var(--primary-color));
  filter: blur(10px);
  border-radius: 50%;
}

/* === Newsletter band === */
.tpe-newsletter-band {
  padding: 55px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.tpe-newsletter-glass {
  background: linear-gradient(135deg,
    rgba(var(--primary-color),.09) 0%,
    rgba(var(--primary-color),.04) 100%
  );
  border: 1px solid rgba(var(--primary-color),.18);
  border-radius: 22px;
  padding: 44px 48px;
  position: relative;
  overflow: hidden;
}

.tpe-newsletter-glass::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(var(--primary-color),.1) 0%, transparent 70%);
  pointer-events: none;
}
.rtl .tpe-newsletter-glass::before { right: auto; left: -80px; }

.tpe-nl-icon-box {
  width: 58px;
  height: 58px;
  background: rgba(var(--primary-color),.12);
  border: 1px solid rgba(var(--primary-color),.22);
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 18px;
}

.tpe-newsletter-glass h3 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0;
}

/* Newsletter form */
.tpe-nl-row {
  display: flex;
  gap: 10px;
  align-items: stretch;
}
.tpe-nl-field {
  flex: 1;
  height: 52px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 0 18px;
  color: #fff;
  font-size: 14px;
  font-family: var(--heading-font);
  transition: all 0.3s;
}
.tpe-nl-field:focus {
  outline: none;
  border-color: rgba(var(--primary-color),.5);
  background: rgba(var(--primary-color),.06);
}
.tpe-nl-field::placeholder { color: rgba(255,255,255,.35); }

.tpe-nl-submit {
  height: 52px;
  padding: 0 28px;
  background: rgb(var(--primary-color));
  color: #fff;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  font-family: var(--heading-font);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s;
  box-shadow: 0 4px 18px rgba(var(--primary-color),.38);
}
.tpe-nl-submit:hover {
  box-shadow: 0 6px 28px rgba(var(--primary-color),.58);
  transform: translateY(-2px);
}

@media (max-width: 576px) {
  .tpe-newsletter-glass { padding: 28px 20px; }
  .tpe-nl-row { flex-direction: column; }
  .tpe-nl-submit { width: 100%; }
  .tpe-newsletter-glass h3 { font-size: 20px; }
}

/* === Footer main columns === */
.tpe-footer-cols {
  padding: 60px 0 40px;
}

/* Logo */
.tpe-footer-brand img {
  max-height: 44px;
  margin-bottom: 18px;
}
.tpe-footer-brand p {
  color: rgba(255,255,255,.48);
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 22px;
}

/* Social icons */
.tpe-socials {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
}
.tpe-social-btn {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.55);
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s;
}
.tpe-social-btn:hover {
  background: rgba(var(--primary-color),.15);
  border-color: rgba(var(--primary-color),.35);
  color: rgb(var(--primary-color));
  transform: translateY(-3px);
  box-shadow: 0 5px 18px rgba(var(--primary-color),.22);
}

/* Column title */
.tpe-col-heading {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 22px;
  padding-bottom: 14px;
  position: relative;
}
.tpe-col-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: rgb(var(--primary-color));
  border-radius: 2px;
}
.rtl .tpe-col-heading::after { left: auto; right: 0; }

/* Footer links — override widget-link inside tpe-footer-links */
.tpe-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tpe-footer-links li { margin-bottom: 8px; }

.tpe-footer-links .widget-link,
.tpe-footer-links a {
  color: rgba(255,255,255,.5) !important;
  font-size: 14px;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
  margin-left: 0 !important;
}
.tpe-footer-links .widget-link::before,
.tpe-footer-links a::before {
  content: '';
  width: 5px;
  height: 5px;
  background: rgba(var(--primary-color),.5);
  border-radius: 50%;
  flex-shrink: 0;
  transition: all 0.25s;
}
.tpe-footer-links .widget-link:hover,
.tpe-footer-links a:hover {
  color: rgb(var(--primary-color)) !important;
  padding-inline-start: 5px;
}
.tpe-footer-links .widget-link:hover::before,
.tpe-footer-links a:hover::before {
  background: rgb(var(--primary-color));
  box-shadow: 0 0 8px rgba(var(--primary-color),.5);
}

/* Contact items */
.tpe-contact-list { margin: 0; padding: 0; list-style: none; }
.tpe-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: rgba(255,255,255,.5);
  font-size: 14px;
}
.tpe-c-icon {
  width: 36px;
  height: 36px;
  background: rgba(var(--primary-color),.1);
  border: 1px solid rgba(var(--primary-color),.18);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(var(--primary-color));
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* === Copyright bar === */
.tpe-copyright-bar {
  background: rgba(0,0,0,.3);
  border-top: 1px solid rgba(255,255,255,.055);
  padding: 18px 0;
}
.tpe-copyright-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.tpe-copyright-text {
  color: rgba(255,255,255,.38);
  font-size: 13px;
  margin: 0;
}
.tpe-copyright-text a {
  color: rgb(var(--primary-color));
  text-decoration: none;
  font-weight: 600;
}
.tpe-pay-badges {
  display: flex;
  align-items: center;
  gap: 8px;
}
.tpe-pay-badge {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 6px;
  padding: 3px 10px;
  color: rgba(255,255,255,.45);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
}

@media (max-width: 575px) {
  .tpe-copyright-inner { justify-content: center; text-align: center; }
  .tpe-pay-badges { justify-content: center; }
}

/* === STATS COUNTER BAR === */
.tpe-stats-bar {
  background: linear-gradient(135deg,
    rgba(var(--primary-color),.12) 0%,
    rgba(var(--primary-color),.06) 100%
  );
  border-top: 1px solid rgba(var(--primary-color),.15);
  border-bottom: 1px solid rgba(var(--primary-color),.15);
  padding: 30px 0;
}
.tpe-stat-item {
  text-align: center;
  position: relative;
}
.tpe-stat-item + .tpe-stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: rgba(var(--primary-color),.25);
}
.rtl .tpe-stat-item + .tpe-stat-item::before {
  left: auto;
  right: 0;
}
.tpe-stat-number {
  font-size: 28px;
  font-weight: 800;
  color: rgb(var(--primary-color));
  line-height: 1.2;
  display: block;
}
.tpe-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  margin-top: 3px;
  display: block;
}

/* === SECTION TITLE BADGE (global) === */
.tpe-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(var(--primary-color),.1);
  color: rgb(var(--primary-color));
  border: 1px solid rgba(var(--primary-color),.2);
  padding: 3px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 8px;
}

/* === FOOTER: Newsletter icon box size === */
.tpe-nl-icon-box {
  width: 56px;
  height: 56px;
}

/* === FOOTER: better newsletter layout for RTL === */
.rtl .tpe-newsletter-glass::before {
  right: auto;
  left: -80px;
}

/* =============================================
   GLOBAL FRONTEND ENHANCEMENTS
   ============================================= */

/* === NAVBAR GLASSMORPHISM === */
nav.cusotm-nav {
  background: rgba(23,27,28,.88) !important;
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
  border-bottom: 1px solid rgba(255,255,255,.05) !important;
  box-shadow: 0 2px 30px rgba(0,0,0,.22) !important;
}

/* === TOP BAR — cleaner dark === */
.header-top-section {
  background: rgba(10,13,14,.95) !important;
  border-bottom: 1px solid rgba(255,255,255,.04) !important;
}

/* === SEARCH BOX GLOW ON FOCUS === */
.search-box2 .form-control:focus,
.headerSearch .form-control:focus {
  box-shadow: 0 0 0 2px rgba(var(--primary-color),.25) !important;
}

/* === LOGO SMOOTH HOVER === */
.logo img, .desktop-view-wrapper .logo img {
  transition: opacity 0.2s ease;
}
.logo:hover img { opacity: .85; }

/* =============================================
   ALL SECTION TITLES — consistent gradient underline
   ============================================= */
.blog-section > .container > div > h2,
.exclusive-offer-section > .container > div > div > h2,
.just-released-section > .container > div > h2,
.main-categories h2,
.trending-game-section > .container > div > div > h2,
.trending-live-section > .container > div > div > h2 {
  position: relative;
  display: inline-block;
}
.blog-section > .container > div > h2::after,
.exclusive-offer-section > .container > div > div > h2::after,
.just-released-section > .container > div > h2::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 3px;
  background: rgb(var(--primary-color));
  border-radius: 3px;
}
.rtl .blog-section > .container > div > h2::after,
.rtl .exclusive-offer-section > .container > div > div > h2::after,
.rtl .just-released-section > .container > div > h2::after {
  left: auto;
  right: 0;
}

/* === KEW-BTN (explore more) — subtle glow on hover === */
.kew-btn:hover {
  box-shadow: 0 4px 20px rgba(var(--primary-color),.22) !important;
}

/* =============================================
   BLOG CARDS — lift + shadow (keep img zoom from original)
   ============================================= */
.blog-box {
  border-radius: 16px !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  overflow: hidden !important;
}
.blog-box:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 16px 45px rgba(0,0,0,.38) !important;
}

/* =============================================
   PRODUCT BOX (Exclusive Cards) — add primary glow
   ============================================= */
.product-box:hover {
  box-shadow: 0 10px 35px rgba(var(--primary-color),.15) !important;
}

/* =============================================
   CATEGORY CARDS — hover lift
   ============================================= */
.category-card {
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(0,0,0,.35);
}
.category-card img {
  width: 100%;
  display: block;
  transition: transform 0.45s ease;
}
.category-card:hover img {
  transform: scale(1.03);
}

/* =============================================
   JUST RELEASED CARDS — subtle ring on hover
   ============================================= */
.released-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}
.released-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 10px 30px rgba(var(--primary-color),.18) !important;
}

/* =============================================
   SECTION SPACING — consistent padding
   ============================================= */
.blog-section,
.exclusive-offer-section,
.just-released-section {
  position: relative;
}

/* Subtle top border between dark sections */
.blog-section::before,
.exclusive-offer-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.06), transparent);
}

/* =============================================
   HERO SWIPER — glow on active bullet
   ============================================= */
.hero-swiper .swiper-pagination-bullet-active {
  box-shadow: 0 0 10px rgba(var(--primary-color),.7) !important;
}

/* =============================================
   SCROLL ANIMATIONS — smoother AOS override
   ============================================= */
[data-aos] {
  transition-timing-function: cubic-bezier(.4,0,.2,1) !important;
}

/* =============================================
   FOOTER NEWSLETTER — center form vertically
   ============================================= */
.tpe-newsletter-glass .row {
  align-items: center;
}

/* =============================================
   HERO SLIDER — Full Redesign
   ============================================= */

/* 1. Consistent height & overflow */
.slider-box {
  min-height: 290px !important;
  border-radius: 22px !important;
  overflow: hidden !important;
  padding: 40px !important;
  position: relative !important;
  z-index: 0 !important;
  display: flex !important;
  align-items: center !important;
}

/* 2. Background image — contain so full game art is always visible.
      z-index: 0 lifts the image above the slider-box's background-color */
.slider-box::after {
  background-size: contain !important;
  background-position: right bottom !important;
  border-radius: 0 !important;
  transition: none !important;
  z-index: 0 !important;
}

/* 3. Gradient overlay — sits above the image (z-index: 1), text is at z-index: 2 */
.slider-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(15,18,20,0.90) 0%,
    rgba(15,18,20,0.70) 40%,
    rgba(15,18,20,0.20) 72%,
    transparent 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* RTL: gradient from right to left  */
.rtl .slider-box::before {
  background: linear-gradient(
    to left,
    rgba(15,18,20,0.90) 0%,
    rgba(15,18,20,0.70) 40%,
    rgba(15,18,20,0.20) 72%,
    transparent 100%
  ) !important;
}

/* RTL: remove the old rotateY flip — position image to the left instead */
.rtl .slider-box::after {
  transform: none !important;
  background-position: left bottom !important;
}

/* 4. Text sits above the gradient overlay */
.slider-box .text-box {
  position: relative !important;
  z-index: 2 !important;
  width: 60% !important;
}

/* 5. Sub-title badge */
.slider-box .text-box .section-subtitle {
  display: inline-block !important;
  background: rgba(var(--primary-color),0.15) !important;
  border: 1px solid rgba(var(--primary-color),0.35) !important;
  border-radius: 30px !important;
  padding: 4px 14px !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: rgb(var(--primary-color)) !important;
  letter-spacing: 0.3px !important;
  margin-bottom: 10px !important;
}

/* 6. Title */
.slider-box .text-box .title {
  font-size: 30px !important;
  line-height: 1.25 !important;
  text-transform: none !important;
  text-shadow: 0 2px 14px rgba(0,0,0,0.55) !important;
}

/* 7. Description — normal weight, readable */
.slider-box .text-box .description {
  font-size: 15px !important;
  font-weight: 400 !important;
  text-transform: none !important;
  opacity: 0.88 !important;
  max-width: 360px !important;
  line-height: 1.6 !important;
}

/* 8. Mobile */
@media (max-width: 767px) {
  .slider-box {
    min-height: 230px !important;
    padding: 24px 20px !important;
  }
  .slider-box .text-box {
    width: 85% !important;
  }
  .slider-box::before {
    background: linear-gradient(
      135deg,
      rgba(15,18,20,0.92) 0%,
      rgba(15,18,20,0.75) 55%,
      rgba(15,18,20,0.35) 100%
    ) !important;
  }
  .slider-box .text-box .title {
    font-size: 22px !important;
    line-height: 1.3 !important;
  }
  .slider-box .text-box .description {
    font-size: 13px !important;
  }
}

/* 9. Tablet */
@media (min-width: 768px) and (max-width: 1199px) {
  .slider-box {
    min-height: 260px !important;
  }
  .slider-box .text-box {
    width: 70% !important;
  }
  .slider-box .text-box .title {
    font-size: 26px !important;
  }
}

/* 10. Pagination bullets — pill style */
.hero-swiper .swiper-pagination {
  bottom: 14px !important;
}
.hero-swiper .swiper-pagination-bullet {
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background: rgba(255,255,255,0.25) !important;
  transition: all 0.3s ease !important;
  margin: 0 3px !important;
}
.hero-swiper .swiper-pagination-bullet-active {
  width: 26px !important;
  height: 8px !important;
  border-radius: 4px !important;
  background: rgb(var(--primary-color)) !important;
  box-shadow: 0 0 12px rgba(var(--primary-color),0.65) !important;
}

/* 11. Autoplay progress circle */
.hero-swiper .autoplay-progress {
  width: 40px !important;
  height: 40px !important;
  bottom: 10px !important;
  right: 14px !important;
  background: rgba(0,0,0,0.3) !important;
  border-radius: 50% !important;
}
.rtl .hero-swiper .autoplay-progress {
  right: auto !important;
  left: 14px !important;
}

/* === TRENDING SIDEBAR CARDS === */
.trending-card {
  border-radius: 14px !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease !important;
  overflow: hidden !important;
  background: rgba(255,255,255,0.03) !important;
}
.trending-card:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35) !important;
  border-color: rgba(var(--primary-color),0.22) !important;
}

/* Hero section padding — breathing room from navbar */
.hero-section {
  padding-top: 28px !important;
  padding-bottom: 28px !important;
  background-color: #171B1C !important;
}

/* Both columns start at the same top */
.hero-section .row {
  align-items: flex-start !important;
}
/* On desktop, give the slider a tall enough min-height to match the trending column */
@media (min-width: 992px) {
  .slider-box {
    min-height: 390px !important;
  }
}


/* =============================================
   ALTERNATING BACKGROUNDS — visual rhythm
   ============================================= */

/* Level A — darkest base */
.hero-section,
.just-released-section,
.trending-live-section,
.blog-section {
  background-color: #171B1C !important;
  background: #171B1C !important;
}

/* Level B — slightly elevated, creates section break */
.main-categories,
.trending-game-section,
.exclusive-offer-section,
.flash-deal-section,
.flash-deal-section-inner {
  background-color: #1E2426 !important;
  background: #1E2426 !important;
}

/* =============================================
   SECTION SPACING — generous breathing room
   ============================================= */
.trending-game-section,
.trending-live-section,
.exclusive-offer-section,
.blog-section,
.just-released-section {
  padding-top: 64px !important;
  padding-bottom: 64px !important;
}
.main-categories {
  padding-top: 56px !important;
  padding-bottom: 56px !important;
}

/* =============================================
   SECTION HEADERS — clear visual identity
   ============================================= */

/* h2 size + weight */
.trending-game-section h2,
.trending-live-section h2,
.exclusive-offer-section h3,
.blog-section h2,
.just-released-section h2,
.main-categories h2 {
  font-size: 26px !important;
  font-weight: 800 !important;
  letter-spacing: -0.2px !important;
  margin-bottom: 4px !important;
}

/* Accent bar under h2 — primary color, glow */
.trending-game-section h2::after,
.trending-live-section h2::after,
.blog-section h2::after,
.just-released-section h2::after {
  content: '' !important;
  position: absolute !important;
  bottom: -6px !important;
  left: 0 !important;
  width: 36px !important;
  height: 3px !important;
  background: rgb(var(--primary-color)) !important;
  border-radius: 3px !important;
  box-shadow: 0 0 10px rgba(var(--primary-color), 0.6) !important;
}
.rtl .trending-game-section h2::after,
.rtl .trending-live-section h2::after,
.rtl .blog-section h2::after,
.rtl .just-released-section h2::after {
  left: auto !important;
  right: 0 !important;
}
/* Make sure h2 is positioned for ::after */
.trending-game-section h2,
.trending-live-section h2,
.blog-section h2,
.just-released-section h2 {
  position: relative !important;
  display: inline-block !important;
}

/* Subtitle under header */
.trending-game-section .d-flex > div > p,
.trending-live-section .d-flex > div > p,
.exclusive-offer-section .d-flex > div > p,
.blog-section .d-flex > div > p,
.just-released-section .d-flex > div > p {
  color: rgba(255,255,255,0.5) !important;
  font-size: 14px !important;
  margin-top: 8px !important;
}

