:root {
  --bd-bg: #07070c;
  --bd-panel: rgba(18, 15, 22, .88);
  --bd-panel-strong: #151018;
  --bd-ink: #fff5d8;
  --bd-text: #f2e5cb;
  --bd-muted: #cbbda7;
  --bd-gold: #f5c85a;
  --bd-gold-2: #ff9435;
  --bd-red: #5a1026;
  --bd-blue: #07182b;
  --bd-line: rgba(245, 200, 90, .22);
  --bd-soft-line: rgba(255, 255, 255, .09);
  --bd-shadow: 0 24px 80px rgba(0, 0, 0, .42);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Noto Sans Bengali", "Nirmala UI", "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
  color: var(--bd-text);
  background:
    radial-gradient(circle at 18% 8%, rgba(137, 24, 65, .42), transparent 36%),
    radial-gradient(circle at 82% 0%, rgba(191, 119, 36, .18), transparent 32%),
    linear-gradient(180deg, #09070c 0%, #0e0710 45%, #05070d 100%);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { line-height: 1.78; }
.bd333-page { min-height: 100vh; overflow-x: hidden; }
.bd333-wrap { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }

.bd333-topbar {
  border-bottom: 1px solid var(--bd-soft-line);
  background: rgba(5, 5, 8, .76);
  color: #dacba9;
  font-size: 13px;
}
.bd333-topbar .bd333-wrap {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.bd333-topbar strong { color: var(--bd-gold); }

.bd333-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(7, 7, 12, .88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(245, 200, 90, .14);
}
.bd333-nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.bd333-logo { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.bd333-logo img { width: 148px; height: 48px; object-fit: contain; }
.bd333-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: nowrap;
  min-width: 0;
  scrollbar-width: none;
}
.bd333-menu::-webkit-scrollbar { display: none; }
.bd333-menu a {
  color: #efe0c5;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.bd333-menu a:hover, .bd333-menu a.is-active {
  color: #221006;
  background: linear-gradient(135deg, var(--bd-gold), var(--bd-gold-2));
}
.bd333-actions { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.bd333-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 16px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
  white-space: nowrap;
}
.bd333-btn:hover { transform: translateY(-2px); }
.bd333-btn-primary {
  color: #210c04;
  background: linear-gradient(135deg, #fff2a6 0%, #ffc34c 48%, #ff7a24 100%);
  box-shadow: 0 12px 34px rgba(255, 151, 37, .28);
}
.bd333-btn-light {
  color: #fff0c4;
  border-color: rgba(245, 200, 90, .36);
  background: rgba(255, 255, 255, .06);
}

.bd333-hero {
  position: relative;
  min-height: 660px;
  padding: 72px 0 34px;
  border-bottom: 1px solid rgba(245, 200, 90, .18);
}
.bd333-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 200, 90, .66), transparent);
}
.bd333-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 520px;
  align-items: center;
  gap: 48px;
}
.bd333-hero-copy h1 {
  margin: 0;
  max-width: 720px;
  color: var(--bd-ink);
  font-size: clamp(38px, 6vw, 82px);
  line-height: 1.03;
  font-weight: 900;
}
.bd333-hero-copy p {
  max-width: 650px;
  margin: 22px 0 0;
  color: #eadfc6;
  font-size: 18px;
}
.bd333-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.bd333-trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}
.bd333-trust-row span {
  display: block;
  min-height: 82px;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid rgba(245, 200, 90, .18);
  background: rgba(255, 255, 255, .045);
  color: #d5c8ae;
  font-size: 13px;
  line-height: 1.55;
}
.bd333-trust-row strong { display: block; color: var(--bd-gold); font-size: 18px; margin-bottom: 4px; }
.bd333-hero-media {
  position: relative;
  min-height: 520px;
}
.bd333-hero-media img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(245, 200, 90, .24);
  box-shadow: var(--bd-shadow);
}
.bd333-bonus-panel {
  position: absolute;
  right: -18px;
  bottom: 34px;
  width: 230px;
  padding: 24px 20px;
  border-radius: 8px;
  border: 1px solid rgba(255, 222, 127, .34);
  background:
    linear-gradient(150deg, rgba(93, 15, 38, .96), rgba(19, 12, 13, .96)),
    radial-gradient(circle at 80% 0%, rgba(245, 200, 90, .28), transparent 45%);
  box-shadow: 0 22px 70px rgba(0, 0, 0, .48);
}
.bd333-bonus-panel span { color: #f1d89a; font-weight: 800; }
.bd333-bonus-panel strong { display: block; color: #fff2a8; font-size: 42px; line-height: 1.05; }
.bd333-bonus-panel p { margin: 8px 0 0; color: #f6dfbb; font-size: 14px; line-height: 1.6; }

.bd333-section { padding: 76px 0; }
.bd333-section-soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, .01));
}
.bd333-section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}
.bd333-section-title h2 {
  margin: 0;
  color: var(--bd-ink);
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.12;
}
.bd333-section-title p { margin: 10px 0 0; max-width: 720px; color: var(--bd-muted); }

.bd333-promo-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: -26px;
  position: relative;
  z-index: 4;
}
.bd333-promo-strip article,
.bd333-game-card,
.bd333-news-card,
.bd333-panel,
.bd333-article-card {
  border-radius: 8px;
  border: 1px solid rgba(245, 200, 90, .18);
  background: linear-gradient(160deg, rgba(245, 200, 90, .12), rgba(255, 255, 255, .035));
  box-shadow: 0 16px 50px rgba(0, 0, 0, .24);
}
.bd333-promo-strip article { padding: 24px; min-height: 178px; }
.bd333-promo-strip span,
.bd333-tag {
  color: var(--bd-gold-2);
  font-weight: 900;
  font-size: 13px;
}
.bd333-promo-strip h2,
.bd333-game-card h3,
.bd333-news-card h3 { margin: 12px 0 8px; color: #fff4cf; line-height: 1.28; }
.bd333-promo-strip p,
.bd333-game-card p,
.bd333-news-card p { margin: 0; color: var(--bd-muted); font-size: 15px; }

.bd333-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  gap: 18px;
}
.bd333-panel { padding: 28px; }
.bd333-panel h2, .bd333-panel h3 { color: #fff4cf; margin: 0 0 14px; }
.bd333-checks { display: grid; gap: 10px; padding: 0; margin: 22px 0 0; list-style: none; }
.bd333-checks li {
  padding-left: 26px;
  position: relative;
  color: #e4d6bb;
  line-height: 1.7;
}
.bd333-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .64em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bd-gold), var(--bd-gold-2));
}
.bd333-fact-table { width: 100%; border-collapse: collapse; }
.bd333-fact-table th,
.bd333-fact-table td {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  vertical-align: top;
  text-align: left;
}
.bd333-fact-table th { color: #f9d87a; width: 42%; font-size: 14px; }
.bd333-fact-table td { color: #e4d8c0; }

.bd333-game-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.bd333-game-card {
  position: relative;
  overflow: hidden;
  min-height: 244px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  background: #130e13;
}
.bd333-game-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .44;
  transition: transform .3s ease, opacity .3s ease;
}
.bd333-game-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 5, 8, .12), rgba(5, 5, 8, .92));
}
.bd333-game-card:hover img { transform: scale(1.05); opacity: .58; }
.bd333-game-card > *:not(img) { position: relative; z-index: 1; }
.bd333-game-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 32px;
  border-radius: 999px;
  color: #211006;
  background: linear-gradient(135deg, var(--bd-gold), var(--bd-gold-2));
  font-weight: 900;
}

.bd333-news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.bd333-news-card,
.bd333-article-card {
  display: grid;
  overflow: hidden;
}
.bd333-news-card img,
.bd333-article-card img {
  width: 100%;
  height: 188px;
  object-fit: cover;
}
.bd333-news-body { padding: 20px; }
.bd333-read { color: var(--bd-gold); font-weight: 900; display: inline-block; margin-top: 14px; }

.bd333-band {
  min-height: 360px;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 28px;
}
.bd333-band img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(245, 200, 90, .2);
}

.bd333-column-hero,
.bd333-article-hero {
  padding: 72px 0 54px;
  background:
    linear-gradient(90deg, rgba(5, 5, 8, .94), rgba(20, 8, 18, .82)),
    var(--hero-image);
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid rgba(245, 200, 90, .18);
}
.bd333-column-hero h1,
.bd333-article-hero h1 {
  color: var(--bd-ink);
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.1;
  margin: 0;
  max-width: 780px;
}
.bd333-column-hero p,
.bd333-article-hero p {
  max-width: 760px;
  color: #eadfc6;
  font-size: 18px;
}
.bd333-column-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 22px;
}
.bd333-side-list {
  display: grid;
  gap: 10px;
}
.bd333-side-list a {
  padding: 13px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(255, 255, 255, .08);
  color: #eadfc6;
  font-weight: 800;
}
.bd333-side-list a:hover { border-color: rgba(245, 200, 90, .4); color: var(--bd-gold); }

.bd333-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 22px;
}
.bd333-article-main {
  border-radius: 8px;
  border: 1px solid rgba(245, 200, 90, .18);
  background: rgba(14, 12, 17, .82);
  padding: clamp(22px, 4vw, 42px);
}
.bd333-article-main h2 { color: #fff1be; margin-top: 34px; }
.bd333-article-main p { color: #eadfc6; }
.bd333-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #cebfa5;
  font-size: 14px;
  margin-bottom: 18px;
}
.bd333-table {
  width: 100%;
  border-collapse: collapse;
  margin: 26px 0;
  overflow: hidden;
  border-radius: 8px;
}
.bd333-table th,
.bd333-table td {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .09);
  text-align: left;
  vertical-align: top;
}
.bd333-table th {
  color: #211006;
  background: linear-gradient(135deg, var(--bd-gold), var(--bd-gold-2));
}
.bd333-table td { color: #eadfc6; background: rgba(255, 255, 255, .035); }
.bd333-faq details {
  border: 1px solid rgba(245, 200, 90, .18);
  border-radius: 8px;
  padding: 16px;
  margin-top: 12px;
  background: rgba(255, 255, 255, .04);
}
.bd333-faq summary { cursor: pointer; color: #fff3bf; font-weight: 900; }
.bd333-note {
  margin-top: 28px;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid rgba(245, 200, 90, .26);
  background: linear-gradient(145deg, rgba(89, 18, 40, .42), rgba(255, 255, 255, .035));
}

.bd333-footer {
  padding: 58px 0 24px;
  background: #050507;
  border-top: 1px solid rgba(245, 200, 90, .16);
}
.bd333-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 28px;
}
.bd333-footer h3,
.bd333-footer h4 { color: #fff3bf; margin: 0 0 14px; }
.bd333-footer p,
.bd333-footer a { color: var(--bd-muted); }
.bd333-footer a { display: block; margin: 10px 0; }
.bd333-footer a:hover { color: var(--bd-gold); }
.bd333-copyright {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: #a99b84;
  font-size: 13px;
}

@media (max-width: 980px) {
  .bd333-topbar .bd333-wrap { align-items: flex-start; flex-direction: column; padding: 8px 0; gap: 4px; }
  .bd333-nav { align-items: flex-start; flex-direction: column; padding: 14px 0; }
  .bd333-menu { justify-content: flex-start; width: 100%; overflow-x: auto; padding-bottom: 4px; }
  .bd333-actions { width: 100%; flex-wrap: wrap; }
  .bd333-hero { min-height: auto; padding-top: 46px; }
  .bd333-hero-grid,
  .bd333-intro,
  .bd333-band,
  .bd333-column-layout,
  .bd333-article-layout { grid-template-columns: 1fr; }
  .bd333-hero-media { min-height: 420px; }
  .bd333-hero-media img { height: 420px; }
  .bd333-bonus-panel { right: 16px; bottom: 16px; }
  .bd333-promo-strip,
  .bd333-game-grid,
  .bd333-news-grid,
  .bd333-footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .bd333-wrap { width: min(100% - 22px, 1180px); }
  .bd333-logo img { width: 132px; height: 42px; }
  .bd333-menu { gap: 6px; }
  .bd333-menu a { font-size: 13px; padding: 8px 10px; }
  .bd333-actions .bd333-btn { width: calc(50% - 5px); min-height: 42px; padding: 11px 10px; }
  .bd333-hero-copy h1 { font-size: 39px; }
  .bd333-hero-copy p { font-size: 16px; }
  .bd333-trust-row,
  .bd333-promo-strip,
  .bd333-game-grid,
  .bd333-news-grid,
  .bd333-footer-grid { grid-template-columns: 1fr; }
  .bd333-hero-media { min-height: 330px; }
  .bd333-hero-media img { height: 330px; }
  .bd333-bonus-panel { position: static; width: 100%; margin-top: 12px; }
  .bd333-section { padding: 54px 0; }
  .bd333-section-title { align-items: flex-start; flex-direction: column; }
  .bd333-band img { height: 250px; }
  .bd333-article-main { padding: 20px; }
}
