html {
  scroll-behavior: smooth;
}

body.ba99-original {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: #050101;
  color: #fff7df;
  font-family: "Noto Sans Bengali", "Kohinoor Bangla", "Hind Siliguri", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0 !important;
}

body.ba99-original *,
body.ba99-original *::before,
body.ba99-original *::after {
  box-sizing: border-box;
  letter-spacing: 0 !important;
}

body.ba99-original a {
  color: inherit;
  text-decoration: none;
}

body.ba99-original img {
  max-width: 100%;
  border-radius: 8px;
}

.ba99-wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.ba99-nav {
  position: relative;
  z-index: 10;
  background: #020202;
  border-bottom: 1px solid rgba(255, 198, 65, 0.24);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.5);
}

.ba99-nav-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.ba99-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 170px;
}

.ba99-brand img {
  display: block;
  width: 178px;
  height: auto;
  border-radius: 6px;
}

.ba99-menu {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.ba99-menu a {
  position: relative;
  padding: 8px 0;
  white-space: nowrap;
}

.ba99-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: linear-gradient(90deg, #ff1f17, #ffc33d);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.ba99-menu a:hover::after {
  transform: scaleX(1);
}

.ba99-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ba99-btn,
.ba99-mega-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 7px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.ba99-btn:hover,
.ba99-mega-cta:hover {
  transform: translateY(-1px);
}

.ba99-btn-gold,
.ba99-mega-cta {
  color: #fff;
  border: 1px solid #ffd15a;
  background: linear-gradient(180deg, #ff3a1f 0%, #d8130f 48%, #971006 100%);
  box-shadow: 0 0 0 1px rgba(255, 28, 19, 0.55), 0 13px 28px rgba(255, 44, 27, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.ba99-btn-line {
  color: #fff;
  border: 1px solid rgba(255, 36, 25, 0.9);
  background: rgba(0, 0, 0, 0.45);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.ba99-hero {
  position: relative;
  overflow: hidden;
  min-height: 690px;
  padding: 72px 0 86px;
  background:
    radial-gradient(circle at 76% 30%, rgba(255, 30, 22, 0.22), transparent 34%),
    radial-gradient(circle at 34% 80%, rgba(255, 154, 23, 0.2), transparent 34%),
    linear-gradient(180deg, #170006 0%, #070000 55%, #250008 100%);
}

.ba99-hero::before,
.ba99-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ba99-hero::before {
  background:
    linear-gradient(102deg, transparent 0 12%, rgba(255, 0, 0, 0.42) 12.3%, transparent 13.2% 100%),
    linear-gradient(73deg, transparent 0 77%, rgba(255, 213, 75, 0.35) 77.3%, transparent 78.2% 100%),
    radial-gradient(circle at 70% 54%, rgba(255, 0, 0, 0.18), transparent 32%);
  opacity: 0.85;
}

.ba99-hero::after {
  top: auto;
  height: 150px;
  background: linear-gradient(180deg, rgba(135, 29, 5, 0), rgba(153, 55, 8, 0.85) 42%, rgba(3, 0, 0, 0.2));
}

.ba99-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  gap: 58px;
  align-items: center;
}

.ba99-hero-copy {
  max-width: 590px;
  min-width: 0;
}

.ba99-hero-logo {
  display: block;
  width: min(330px, 82vw);
  margin-bottom: 34px;
  filter: drop-shadow(0 16px 28px rgba(255, 24, 18, 0.22));
}

.ba99-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 950;
  line-height: 1.04;
  text-shadow: 5px 6px 0 rgba(126, 0, 0, 0.72), 0 18px 34px rgba(0, 0, 0, 0.65);
  overflow-wrap: anywhere;
}

.ba99-hero p {
  max-width: 650px;
  margin: 24px 0 0;
  color: #ffe7bd;
  font-size: 19px;
  line-height: 1.82;
}

.ba99-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.ba99-mega-cta {
  min-height: 64px;
  padding: 0 34px;
  border-radius: 8px;
  font-size: 24px;
  box-shadow: 0 0 0 1px rgba(255, 210, 83, 0.9), 0 20px 36px rgba(255, 34, 21, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.ba99-trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.ba99-trust-row div {
  min-height: 76px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 39, 25, 0.55);
  border-radius: 7px;
  background: rgba(5, 0, 0, 0.82);
  box-shadow: inset 0 0 0 1px rgba(255, 210, 80, 0.04);
}

.ba99-trust-row b {
  display: block;
  color: #ffcf45;
  font-size: 15px;
  font-weight: 950;
}

.ba99-trust-row span {
  display: block;
  margin-top: 4px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.ba99-hero-art {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  border: 1px solid rgba(255, 36, 25, 0.56);
  border-radius: 8px;
  background: #150006;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.5), 0 0 42px rgba(255, 22, 14, 0.18);
}

.ba99-hero-art img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
}

.ba99-section {
  padding: 72px 0;
  background: #060101;
}

.ba99-section-alt {
  background:
    radial-gradient(circle at 22% 0, rgba(255, 38, 22, 0.12), transparent 34%),
    linear-gradient(180deg, #080102, #0d0204 72%, #050101);
}

.ba99-breadcrumb {
  margin: 24px auto 0;
  padding: 18px 20px;
  border: 1px solid rgba(255, 201, 71, 0.38);
  border-radius: 7px;
  background: rgba(7, 7, 7, 0.92);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.ba99-breadcrumb a {
  color: #fff;
}

.ba99-breadcrumb span {
  color: #ffd858;
}

.ba99-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 470px);
  gap: 32px;
  align-items: end;
  margin-bottom: 28px;
}

.ba99-section-head h2 {
  margin: 0;
  color: #ffd858;
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 950;
  line-height: 1.1;
  text-transform: uppercase;
}

.ba99-section-head p {
  margin: 0;
  color: #ffe6bd;
  font-size: 16px;
}

.ba99-visual-grid,
.ba99-game-grid,
.ba99-update-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.ba99-visual-card,
.ba99-game-card,
.ba99-update-card,
.ba99-panel,
.ba99-article,
.ba99-article-side {
  border: 1px solid rgba(255, 34, 24, 0.52);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(25, 0, 7, 0.96), rgba(4, 0, 1, 0.96));
  box-shadow: inset 0 0 0 1px rgba(255, 210, 78, 0.04), 0 20px 48px rgba(0, 0, 0, 0.28);
}

.ba99-visual-card {
  overflow: hidden;
}

.ba99-visual-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.28 / 1;
  object-fit: cover;
  border-radius: 0;
}

.ba99-visual-card figcaption {
  padding: 14px 16px 16px;
  color: #fff;
  font-weight: 950;
  line-height: 1.25;
}

.ba99-game-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ba99-game-card {
  min-height: 235px;
  padding: 24px;
}

.ba99-card-mark {
  position: relative;
  display: block;
  width: 74px;
  height: 60px;
  margin-bottom: 18px;
  border-radius: 7px;
  background: radial-gradient(circle at 30% 24%, #fff, #ffd95c 28%, #ff1d16 58%, #120006 100%);
  box-shadow: 0 0 0 1px rgba(255, 216, 72, 0.56), 0 13px 28px rgba(255, 25, 18, 0.28);
}

.ba99-card-mark::after {
  content: attr(data-mark);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #050101;
  font-size: 24px;
  font-weight: 950;
}

.ba99-game-card h3,
.ba99-update-card h3,
.ba99-panel h2,
.ba99-article-side h2 {
  margin: 0 0 10px;
  color: #fff;
  font-weight: 950;
}

.ba99-game-card p,
.ba99-update-card p,
.ba99-panel p,
.ba99-article-side p {
  margin: 0;
  color: #ffe6bd;
}

.ba99-game-card a,
.ba99-readmore,
.ba99-article-side a,
.ba99-actions-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  min-height: 38px;
  padding: 0 15px;
  border: 1px solid rgba(255, 210, 78, 0.58);
  border-radius: 6px;
  color: #ffda5c;
  font-size: 14px;
  font-weight: 900;
  background: rgba(0, 0, 0, 0.3);
}

.ba99-info-grid,
.ba99-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.45fr);
  gap: 24px;
}

.ba99-panel,
.ba99-article,
.ba99-article-side {
  padding: 28px;
  min-width: 0;
}

.ba99-subhero-grid > *,
.ba99-article-layout > *,
.ba99-info-grid > *,
.ba99-game-grid > *,
.ba99-update-list > *,
.ba99-update-card > * {
  min-width: 0;
}

.ba99-feature,
.ba99-faq details {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 210, 78, 0.18);
}

.ba99-feature:first-of-type {
  border-top: 0;
}

.ba99-feature b,
.ba99-faq summary {
  color: #ffda5c;
  font-weight: 950;
}

.ba99-faq summary {
  cursor: pointer;
}

.ba99-update-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ba99-update-card {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
}

.ba99-update-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 112px;
  border-radius: 7px;
  color: #020101;
  font-size: 26px;
  font-weight: 950;
  background: linear-gradient(135deg, #ffe778, #ff2b16 58%, #3b0003);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.ba99-update-tag,
.ba99-meta span {
  display: inline-flex;
  color: #ffd858;
  font-size: 13px;
  font-weight: 900;
}

.ba99-update-card h3 {
  margin-top: 6px;
  font-size: 20px;
  line-height: 1.35;
}

.ba99-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.ba99-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 26px 0 0;
  padding: 0;
}

.ba99-pagination li {
  list-style: none;
}

.ba99-pagination a,
.ba99-pagination span,
.ba99-pagination .page-link {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 210, 78, 0.45);
  border-radius: 6px;
  color: #ffda5c;
  background: rgba(0, 0, 0, 0.3);
}

.ba99-safe-strip {
  padding: 24px 0;
  border-top: 1px solid rgba(255, 210, 78, 0.18);
  border-bottom: 1px solid rgba(255, 210, 78, 0.18);
  background: #090101;
}

.ba99-safe-strip .ba99-wrap {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.ba99-safe-strip div {
  padding: 12px 16px;
  border-left: 3px solid #ff2a18;
}

.ba99-safe-strip b {
  display: block;
  color: #ffda5c;
  font-weight: 950;
}

.ba99-safe-strip span {
  color: #fff;
}

.ba99-footer {
  padding: 34px 0 42px;
  color: #ffe6bd;
  text-align: center;
  background: #030000;
}

.ba99-subhero {
  padding: 56px 0;
  background:
    radial-gradient(circle at 76% 34%, rgba(255, 25, 18, 0.24), transparent 34%),
    linear-gradient(180deg, #160006, #050101);
}

.ba99-subhero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.52fr);
  gap: 34px;
  align-items: center;
}

.ba99-subhero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 950;
  line-height: 1.08;
  text-shadow: 4px 5px 0 rgba(126, 0, 0, 0.72);
  overflow-wrap: anywhere;
}

.ba99-subhero p {
  margin: 18px 0 0;
  color: #ffe6bd;
  font-size: 18px;
}

.ba99-subhero img {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
  border: 1px solid rgba(255, 210, 78, 0.35);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.35);
}

.ba99-article-zone {
  padding: 54px 0 72px;
  background: #060101;
}

.ba99-crumb {
  margin-bottom: 18px;
  color: #ffda5c;
  font-size: 14px;
  font-weight: 900;
}

.ba99-article h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 950;
  line-height: 1.16;
  overflow-wrap: anywhere;
}

.ba99-article-body,
.ba99-summary {
  color: #ffe6bd;
  font-size: 17px;
  overflow-wrap: anywhere;
}

.ba99-summary {
  margin: 20px 0;
  padding: 18px;
  border-left: 4px solid #ff2a18;
  background: rgba(255, 210, 78, 0.08);
}

.ba99-article-body h2,
.ba99-article-body h3 {
  margin: 28px 0 12px;
  color: #ffda5c;
}

.ba99-article-body ul {
  margin: 12px 0 0;
  padding-left: 22px;
}

.ba99-article-body li + li {
  margin-top: 8px;
}

.ba99-article-figure {
  margin: 22px 0 26px;
}

.ba99-article-figure img {
  display: block;
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border: 1px solid rgba(255, 210, 78, 0.34);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
}

.ba99-article-figure figcaption {
  margin-top: 10px;
  color: #ffd858;
  font-size: 13px;
  font-weight: 900;
}

.ba99-note,
.ba99-related-article {
  margin: 24px 0;
  padding: 22px;
  border: 1px solid rgba(255, 210, 78, 0.3);
  border-radius: 8px;
  background: rgba(255, 210, 78, 0.08);
}

.ba99-note h2,
.ba99-related-article h2 {
  margin-top: 0;
}

.ba99-note-strong {
  border-color: rgba(255, 42, 24, 0.55);
  background: linear-gradient(180deg, rgba(110, 0, 0, 0.36), rgba(255, 210, 78, 0.07));
}

.ba99-table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 14px 0 26px;
  border: 1px solid rgba(255, 210, 78, 0.26);
  border-radius: 8px;
}

.ba99-info-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  background: rgba(5, 0, 0, 0.82);
}

.ba99-info-table th,
.ba99-info-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 210, 78, 0.18);
  text-align: left;
  vertical-align: top;
}

.ba99-info-table th {
  color: #050101;
  font-weight: 950;
  background: linear-gradient(135deg, #ffe778, #ffb62b);
}

.ba99-info-table td {
  color: #ffe6bd;
}

.ba99-info-table tr:last-child td {
  border-bottom: 0;
}

.ba99-faq-list details {
  padding: 16px 0;
  border-top: 1px solid rgba(255, 210, 78, 0.18);
}

.ba99-faq-list summary {
  cursor: pointer;
  color: #ffda5c;
  font-weight: 950;
}

.ba99-related-article a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255, 210, 78, 0.58);
  border-radius: 6px;
  color: #050101;
  font-weight: 950;
  background: linear-gradient(135deg, #ffe778, #ffb62b);
}

.ba99-prenext {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.ba99-prenext div {
  padding: 14px;
  border: 1px solid rgba(255, 210, 78, 0.28);
  border-radius: 7px;
}

.ba99-actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.ba99-article-side {
  align-self: start;
  position: sticky;
  top: 20px;
}

.ba99-article-side a {
  width: 100%;
  margin-top: 12px;
}

@media (max-width: 1080px) {
  .ba99-menu {
    gap: 16px;
    font-size: 14px;
  }

  .ba99-hero-grid {
    grid-template-columns: 1fr;
  }

  .ba99-hero-copy {
    max-width: 760px;
  }
}

@media (max-width: 900px) {
  .ba99-nav-inner {
    min-height: auto;
    padding: 14px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .ba99-menu,
  .ba99-actions {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .ba99-actions {
    flex-wrap: wrap;
  }

  .ba99-section-head,
  .ba99-info-grid,
  .ba99-article-layout,
  .ba99-subhero-grid {
    grid-template-columns: 1fr;
  }

  .ba99-visual-grid,
  .ba99-game-grid,
  .ba99-update-list,
  .ba99-safe-strip .ba99-wrap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ba99-article-side {
    position: static;
  }
}

@media (max-width: 640px) {
  .ba99-wrap {
    width: min(100% - 22px, 1180px);
  }

  .ba99-brand img {
    width: 150px;
  }

  .ba99-hero {
    min-height: auto;
    padding: 44px 0 58px;
  }

  .ba99-hero-logo {
    width: 210px;
    margin-bottom: 22px;
  }

  .ba99-hero h1 {
    max-width: 100%;
    font-size: 27px;
    line-height: 1.18;
    word-break: break-word;
    text-shadow: 3px 4px 0 rgba(126, 0, 0, 0.72);
  }

  .ba99-subhero h1,
  .ba99-article h1 {
    max-width: 100%;
    font-size: 24px;
    line-height: 1.2;
    white-space: normal;
    word-break: break-all;
    text-shadow: 3px 4px 0 rgba(126, 0, 0, 0.72);
  }

  .ba99-subhero p,
  .ba99-summary,
  .ba99-article-body p {
    white-space: normal;
    word-break: break-all;
    overflow-wrap: anywhere;
    font-size: 15px;
  }

  .ba99-hero p {
    font-size: 16px;
  }

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

  .ba99-trust-row,
  .ba99-visual-grid,
  .ba99-game-grid,
  .ba99-update-list,
  .ba99-safe-strip .ba99-wrap,
  .ba99-prenext {
    grid-template-columns: 1fr;
  }

  .ba99-update-card {
    grid-template-columns: 1fr;
  }

  .ba99-mega-cta,
  .ba99-btn {
    width: 100%;
  }

  .ba99-actions {
    flex-direction: column;
    gap: 10px;
    overflow: visible;
  }

  .ba99-actions .ba99-btn {
    min-width: 0;
  }

  .ba99-section {
    padding: 50px 0;
  }
}
