/* ===== COMMON SECTION STYLES ===== */


/* Use Bootstrap default container widths — no override needed */

.bw-section {
    padding: 6px 7px 5px;

    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
    width: 100%;
}

.width100 {
  width:100%;
}

.bw-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}.bw-section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}

.bw-section-title span { font-size: 18px; }

.bw-show-all {
    font-size: 9px;
    font-weight: 600;
    color: #00c45e;
    text-decoration: none;
    white-space: nowrap;
    border: 1px solid #00c45e;
    padding: 4px 12px;
    border-radius: 20px;
    transition: background 0.2s, color 0.2s;
    font-family: 'Inter', sans-serif;
}

.bw-show-all:hover {
  background: #00c45e;
  color: #fff;
  text-decoration: none;
}

/* ===== SCROLL TRACK (click-driven, no auto-scroll) ===== */
.bw-scroll-outer {
  overflow: hidden;
  position: relative;
  width: 100%;
  cursor: grab;
  user-select: none;
}

.bw-scroll-track {
    display: flex;
    gap: 5px;
    width: max-content;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== PROMOTIONS ===== */
.bw-promo-card {
  flex: 0 0 220px;

  background: #1e1e38;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}

.bw-promo-card:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 24px rgba(0, 196, 94, 0.25);
}

.bw-promo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Scroll nav arrows for sections */
.bw-scroll-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.bw-scroll-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #1e1e38;
  border: 1px solid #333;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
}

.bw-scroll-btn:hover {
  background: #00c45e;
  border-color: #00c45e;
}

/* ===== PROVIDERS ===== */
.bw-provider-card {
  flex: 0 0 120px;
  height: 44px;
  background: #fff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.bw-provider-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 8px rgba(0,166,81,0.5);
}

.bw-provider-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.bw-provider-card span {
  font-size: 12px;
  font-weight: 700;
  color: #111;
  white-space: nowrap;
}

/* ===== GAME CARDS (Trending) ===== */
.bw-game-card {
  flex: 0 0 200px;
     background: #535353;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(0,0,0,0.4);
}

.bw-game-card:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 22px rgba(0,196,94,0.2);
}

/* Thumb wrapper for overlay */
.bw-game-thumb {
  position: relative;
  overflow: hidden;
}

.bw-game-thumb img {
  width: 100%;

  object-fit: cover;
  display: block;
  transition: filter 0.25s;
}

.bw-game-card:hover .bw-game-thumb img {
  filter: brightness(0.45);
}

/* Play overlay */
.bw-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
}

.bw-game-card:hover .bw-play-overlay {
  opacity: 1;
}

.bw-play-btn {
  background: #00c45e;
  color: #fff;
  border: none;
  border-radius: 22px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 14px rgba(0,196,94,0.5);
  transition: background 0.2s, transform 0.15s;
}

.bw-play-btn:hover {
  background: #00a84f;
  transform: scale(1.06);
}

.bw-game-card-info {
  padding: 6px 8px 8px;
}

.bw-game-name {
  font-size: 11px;
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bw-game-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}

.bw-game-price {
  font-size: 10px;
  color: #f5a623;
  font-weight: 700;
}

.bw-game-likes {
  font-size: 10px;
  color: #aaa;
  display: flex;
  align-items: center;
  gap: 3px;
}

.bw-badge-new {
  position: absolute;
  top: 6px;
  left: 6px;
  background: #00a651;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 3px;
  text-transform: uppercase;
}

.bw-badge-exclusive {
  position: absolute;
  top: 0;
  right: 0;
  background: #1a1a2e;
  color: #f5a623;
  font-size: 8px;
  font-weight: 700;
  padding: 2px 4px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  letter-spacing: 1px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .bw-promo-card  { flex: 0 0 180px; height: 108px; }
  .bw-provider-card { flex: 0 0 100px; height: 38px; }
  .bw-game-card   { flex: 0 0 130px; }
  .bw-game-thumb img { height: 130px; }
}

@media (max-width: 480px) {
  .bw-promo-card  { flex: 0 0 155px; height: 92px; }
  .bw-provider-card { flex: 0 0 90px; height: 34px; }
  .bw-game-card   { flex: 0 0 115px; }
  .bw-game-thumb img { height: 115px; }
}

/* ===== JACKPOT BANNER ===== */
.bw-jackpot-bannera {
  width: 100%;
  overflow: hidden;
  margin: 8px 0;
}

.bw-jackpot-bannera img {
  width: 100%;
  display: block;
}

.bw-jackpot-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #0a3d8f 0%, #1565c0 50%, #0a3d8f 100%);
  padding: 28px 40px;
  margin: 8px 0;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  min-height: 160px;
}

.bw-jackpot-bg-img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: auto;
  object-fit: cover;
  object-position: left center;
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
}

.bw-jackpot-left,
.bw-jackpot-right {
  position: relative;
  z-index: 1;
}

.bw-jackpot-left {
  flex: 1;
}

.bw-jackpot-label {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.bw-jackpot-title {
  font-size: 42px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 3px;
  text-transform: uppercase;
  line-height: 1;
  font-style: italic;
}

.bw-jackpot-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.bw-jackpot-amount {
  font-size: 48px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 2px;
  white-space: nowrap;
}

.bw-jackpot-btns {
  display: flex;
  gap: 12px;
}

.bw-jp-btn {
  height: 42px;
  padding: 0 28px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.bw-jp-info {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
}

.bw-jp-info:hover { background: rgba(255,255,255,0.25); }

.bw-jp-play {
  background: #fff;
  color: #0a3d8f;
}

.bw-jp-play:hover { background: #e8f0fe; }

/* ===== PRIVE TAG ===== */
.bw-prive-card { position: relative; }

.bw-prive-tag {
  position: absolute;
  bottom: 52px;
  left: 0;
  right: 0;
  text-align: center;
  background: rgba(0,0,0,0.55);
  color: #f5a623;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 2px;
  padding: 3px 0;
  text-transform: uppercase;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .bw-jackpot-banner { padding: 20px 20px; }
  .bw-jackpot-title  { font-size: 30px; }
  .bw-jackpot-amount { font-size: 32px; }
  .bw-jp-btn { height: 36px; padding: 0 18px; font-size: 13px; }
}

@media (max-width: 480px) {
  .bw-jackpot-banner  { flex-direction: column; align-items: flex-start; padding: 16px; }
  .bw-jackpot-right   { align-items: flex-start; width: 100%; }
  .bw-jackpot-title   { font-size: 24px; }
  .bw-jackpot-amount  { font-size: 26px; }
  .bw-jackpot-btns    { width: 100%; }
  .bw-jp-btn          { flex: 1; }
}


/* ===== FOOTER ===== */
.bw-footer {
    background: #2b2b2b;
    color: #a1a1a1;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    border-top: 1px solid #121212;
}

.bw-footer-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

/* About */
.bw-footer-about {
  padding: 28px 0 20px;
  border-bottom: 1px solid #1a1a2e;
}

.bw-footer-about-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.bw-footer-about-body p {
  color: #888;
  font-size: 12px;
  line-height: 1.7;
  margin-bottom: 6px;
}

.bw-footer-show-more {
  background: none;
  border: 1px solid #333;
  color: #aaa;
  font-size: 12px;
  padding: 6px 16px;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 10px;
  transition: border-color 0.2s, color 0.2s;
}
.bw-footer-show-more:hover { border-color: #555; color: #fff; }

/* Partners */
.bw-footer-partners {
    background: #474747;
    padding: 16px 0;
    border-bottom: 1px solid #1a1a2e;
}
.bw-footer-partners-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.bw-footer-logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.bw-footer-badges {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.bw-footer-badges img {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: brightness(0.9);
  transition: filter 0.2s;
}
.bw-footer-badges img:hover { filter: brightness(1.1); }

/* Links Grid */
.bw-footer-links-wrap {
  padding: 24px 0;
  border-bottom: 1px solid #1a1a2e;
}

.bw-footer-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.bw-footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bw-footer-col a {
  color: #aaa;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: color 0.2s;
}
.bw-footer-col a:hover { color: #fff; }

/* Legal */
.bw-footer-legal {
  padding: 20px 0;
  border-bottom: 1px solid #1a1a2e;
}

.bw-footer-legal p {
  color: #666;
  font-size: 11px;
  line-height: 1.7;
  margin-bottom: 8px;
}

.bw-footer-legal-link { color: #888; text-decoration: underline; }
.bw-footer-legal-link:hover { color: #ccc; }
.bw-footer-legal-link-green { color: #00c45e; text-decoration: none; font-weight: 700; font-size: 11px; }
.bw-footer-legal-link-green:hover { text-decoration: underline; }

/* Bottom bar */
.bw-footer-bottom {
  padding: 12px 0;
  border-bottom: 1px solid #1a1a2e;
}

.bw-footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bw-footer-version { color: #e8e8e8; font-size: 11px; }
.bw-footer-bottom-right { color: #e8e8e8; font-size: 11px; }

/* App + Social */
.bw-footer-app {
  padding: 20px 0 28px;
}

.bw-footer-app-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.bw-footer-app-title {
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 4px;
}

.bw-footer-app-sub {
  color: #666;
  font-size: 11px;
  margin-bottom: 2px;
}

.bw-footer-app-icons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.bw-app-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  font-size: 16px;
  text-decoration: none;
  font-weight: 700;
  transition: opacity 0.2s;
}
.bw-app-badge:hover { opacity: 0.8; }
.bw-app-apple  { background: #222; color: #fff; }
.bw-app-google { background: #222; color: #4caf50; font-size: 12px; }
.bw-app-huawei { background: #c00; color: #fff; font-size: 13px; }

.bw-footer-social {
  display: flex;
  gap: 10px;
  align-items: center;
}

.bw-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #1a1a2e;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid #2a2a3e;
  transition: background 0.2s, border-color 0.2s;
}
.bw-social-btn:hover { background: #252545; border-color: #444; color: #fff; }
.bw-social-btn img { width: 20px; height: 20px; object-fit: contain; }

/* Footer Responsive */
@media (max-width: 768px) {
  .bw-footer-links-grid { grid-template-columns: repeat(2, 1fr); }
  .bw-footer-partners-inner { justify-content: center; }
  .bw-footer-app-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .bw-footer-links-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .bw-footer-badges img { height: 28px; }
  .bw-footer-bottom-inner { flex-direction: column; gap: 4px; align-items: flex-start; }
}

/* ===== MOBILE BOTTOM NAV ===== */
.bw-mobile-bottom-nav {
  display: none;
}

@media (max-width: 768px) {
  .bw-mobile-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: #111;
    border-top: 1px solid #222;
    z-index: 1100;
    align-items: stretch;
  }

  /* push footer content above bottom nav */
  .bw-footer {
    padding-bottom: 64px;
  }

  /* push main content above bottom nav */
  main {
    padding-bottom: 64px;
  }

  .bw-mbn-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-decoration: none;
    color: #aaa;
    font-size: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    transition: color 0.15s;
    -webkit-tap-highlight-color: transparent;
  }

  .bw-mbn-item:hover,
  .bw-mbn-item.active {
    color: #fff;
  }

  .bw-mbn-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 1;
  }

  .bw-mbn-icon svg {
    width: 22px;
    height: 22px;
  }

  .bw-mbn-label {
    font-size: 10px;
    white-space: nowrap;
  }

  /* Center Categories button — highlighted */
  .bw-mbn-center {
    background: #1a6fd4;
    color: #fff;
    border-radius: 0;
    position: relative;
  }

  .bw-mbn-center .bw-mbn-icon {
    font-size: 22px;
    color: #fff;
  }

  .bw-mbn-center:hover {
    background: #155bb5;
    color: #fff;
  }
}
