:root {
  --bg: #07120f;
  --panel: #0d1c18;
  --panel-2: #10251f;
  --line: rgba(255, 255, 255, .12);
  --text: #eefbf5;
  --muted: #a7b7af;
  --gold: #f3c45a;
  --green: #16b978;
  --green-2: #0d8f5b;
  --cyan: #54d5ff;
  --shadow: 0 22px 60px rgba(0, 0, 0, .35);
}

* {
  box-sizing: border-box;
}

body.bet-page {
  margin: 0;
  background:
    radial-gradient(circle at 82% 4%, rgba(22, 185, 120, .26), transparent 34rem),
    radial-gradient(circle at 0 20%, rgba(243, 196, 90, .16), transparent 32rem),
    var(--bg);
  color: var(--text);
  font-family: Arial, "Noto Sans Bengali", "Noto Sans", sans-serif;
  letter-spacing: 0;
}

.bet-page a {
  color: inherit;
  text-decoration: none;
}

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

.bet-topbar {
  border-bottom: 1px solid var(--line);
  background: rgba(7, 18, 15, .82);
  backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.bet-nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.bet-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.bet-logo-mark {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold), #fff1aa 48%, var(--green));
  color: #07120f;
  font-weight: 900;
  box-shadow: 0 12px 32px rgba(243, 196, 90, .25);
}

.bet-logo strong {
  display: block;
  font-size: 24px;
  line-height: 1;
  letter-spacing: .03em;
}

.bet-logo span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.bet-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.bet-menu a {
  color: #d9eee5;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 9px 12px;
  font-size: 14px;
}

.bet-menu a:hover,
.bet-menu .is-active {
  border-color: rgba(243, 196, 90, .45);
  background: rgba(243, 196, 90, .09);
  color: #fff6cf;
}

.bet-hero {
  padding: 42px 0 34px;
}

.bet-hero-card {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #07120f;
  box-shadow: var(--shadow);
}

.bet-hero-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 18, 15, .96) 0%, rgba(7, 18, 15, .82) 38%, rgba(7, 18, 15, .22) 70%, rgba(7, 18, 15, .08) 100%),
    url("/assets/5777bet-hero.png") center / cover no-repeat;
}

.bet-hero-content {
  position: relative;
  z-index: 1;
  width: min(650px, 100%);
  padding: clamp(28px, 6vw, 66px);
}

.bet-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: #fff0b7;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.bet-kicker:before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 18px var(--green);
}

.bet-h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 7vw, 76px);
  line-height: 1.02;
  font-weight: 900;
}

.bet-lead {
  margin: 20px 0 0;
  color: #cce0d7;
  font-size: 18px;
  line-height: 1.8;
}

.bet-actions,
.bet-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.bet-button,
.bet-chip {
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.bet-button {
  min-height: 46px;
  padding: 0 20px;
  background: linear-gradient(135deg, var(--gold), #fff0a2);
  color: #081410;
  font-weight: 900;
  box-shadow: 0 14px 32px rgba(243, 196, 90, .22);
}

.bet-button.secondary {
  background: rgba(255, 255, 255, .08);
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: none;
}

.bet-chip {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, .14);
  color: #e8f7ef;
  background: rgba(255, 255, 255, .06);
  font-size: 13px;
}

.bet-section {
  padding: 36px 0;
}

.bet-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.bet-section h2,
.bet-article h1,
.bet-panel h2,
.bet-panel h3 {
  color: #fff;
  margin: 0;
  font-weight: 900;
}

.bet-section h2 {
  font-size: clamp(26px, 4vw, 42px);
}

.bet-section-head p {
  color: var(--muted);
  line-height: 1.7;
  margin: 8px 0 0;
  max-width: 650px;
}

.bet-grid {
  display: grid;
  gap: 18px;
}

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

.bet-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bet-panel,
.bet-card,
.bet-article,
.bet-sidebar-box {
  background: linear-gradient(180deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .035));
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .18);
}

.bet-panel,
.bet-card {
  padding: 22px;
}

.bet-card {
  min-height: 210px;
}

.bet-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  background: rgba(22, 185, 120, .15);
  color: var(--gold);
  font-weight: 900;
}

.bet-card h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
}

.bet-card p,
.bet-panel p,
.bet-card li,
.bet-article p,
.bet-article li {
  color: #bdcec6;
  line-height: 1.8;
}

.bet-feature-image {
  min-height: 360px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: url("/assets/5777bet-categories.png") center / cover no-repeat;
  box-shadow: var(--shadow);
}

.bet-split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 22px;
  align-items: stretch;
}

.bet-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.bet-list li {
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

.bet-steps {
  counter-reset: step;
}

.bet-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.bet-step:before {
  counter-increment: step;
  content: counter(step);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--green);
  color: #06110e;
  font-weight: 900;
}

.bet-news-list {
  display: grid;
  gap: 14px;
}

.bet-news-item {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, .055);
}

.bet-news-item h3,
.bet-news-item h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
}

.bet-meta {
  color: #86a298;
  font-size: 13px;
}

.bet-breadcrumb {
  margin: 22px auto 0;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, .06);
  color: var(--muted);
}

.bet-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 24px;
  padding: 28px 0 48px;
}

.bet-article {
  padding: clamp(22px, 4vw, 40px);
}

.bet-article h1 {
  font-size: clamp(30px, 5vw, 52px);
}

.bet-article .body {
  margin-top: 22px;
}

.bet-sidebar-box {
  padding: 20px;
  margin-bottom: 18px;
}

.bet-footer {
  border-top: 1px solid var(--line);
  color: #91a69d;
  padding: 30px 0;
  text-align: center;
}

.bet-footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .bet-nav,
  .bet-section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .bet-menu {
    justify-content: flex-start;
  }

  .bet-grid.three,
  .bet-grid.four,
  .bet-split,
  .bet-main {
    grid-template-columns: 1fr;
  }

  .bet-hero-card {
    min-height: 560px;
  }

  .bet-hero-card:before {
    background:
      linear-gradient(180deg, rgba(7, 18, 15, .96) 0%, rgba(7, 18, 15, .82) 54%, rgba(7, 18, 15, .4) 100%),
      url("/assets/5777bet-hero.png") center bottom / cover no-repeat;
  }
}

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

  .bet-hero-content {
    padding: 24px;
  }

  .bet-menu a {
    padding: 8px 10px;
    font-size: 13px;
  }
}
