:root {
  --bk-bg: #120202;
  --bk-bg-2: #290506;
  --bk-red-900: #5d0507;
  --bk-red-800: #83090d;
  --bk-red-700: #b70f14;
  --bk-red-600: #df1c1f;
  --bk-gold-700: #b76f19;
  --bk-gold-600: #d78d25;
  --bk-gold-500: #f3b33c;
  --bk-gold-300: #ffe28c;
  --bk-paper: #fffaf0;
  --bk-paper-2: #f7efe3;
  --bk-ink: #22120d;
  --bk-muted: #7b665c;
  --bk-line: rgba(255, 226, 140, .22);
  --bk-white: #ffffff;
  --bk-shadow: 0 18px 48px rgba(50, 4, 5, .22);
  --bk-max: 1180px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
}

body.bk33-page {
  color: var(--bk-paper);
  background:
    radial-gradient(circle at 12% -6%, rgba(255, 196, 72, .18), transparent 28%),
    linear-gradient(180deg, #250204 0%, #120202 46%, #fff8ed 46%, #fff8ed 100%);
  font-family: Arial, "Helvetica Neue", sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
}

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

.bk33-page img {
  display: block;
  max-width: 100%;
  height: auto;
}

.bk33-shell {
  width: min(var(--bk-max), calc(100% - 40px));
  margin: 0 auto;
}

.bk33-topbar {
  background: #740609;
  border-bottom: 1px solid rgba(255, 226, 140, .18);
}

.bk33-topbar .bk33-shell {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.bk33-brand-mark {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .22);
  background: url("/assets/bk33-logo.jpg") center / cover no-repeat;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .18), 0 10px 22px rgba(0, 0, 0, .28);
}

.bk33-brand-word {
  display: grid;
  line-height: 1;
}

.bk33-brand-word strong {
  color: var(--bk-white);
  font-size: 48px;
  font-weight: 900;
  text-shadow: 0 3px 0 rgba(0, 0, 0, .16);
}

.bk33-brand-word span {
  color: var(--bk-gold-300);
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}

.bk33-socials,
.bk33-actions,
.bk33-nav-list,
.bk33-hero-actions,
.bk33-trust-row,
.bk33-game-grid,
.bk33-news-grid {
  display: flex;
  align-items: center;
}

.bk33-socials {
  gap: 8px;
  flex: 1;
}

.bk33-social {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--bk-white);
  font-size: 13px;
  font-weight: 900;
  box-shadow: inset 0 -8px 14px rgba(0, 0, 0, .16);
}

.bk33-social:nth-child(1) { background: #315fba; }
.bk33-social:nth-child(2) { background: #25a9e9; }
.bk33-social:nth-child(3) { background: #111; }
.bk33-social:nth-child(4) { background: #21b66b; }
.bk33-social:nth-child(5) { background: #e8472f; }
.bk33-social:nth-child(6) { background: #ff8a00; }

.bk33-actions {
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.bk33-btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  padding: 0 26px;
  border-radius: 999px;
  border: 0;
  color: var(--bk-white);
  background: linear-gradient(180deg, #ffbe5b 0%, #f2772a 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .36), 0 12px 24px rgba(84, 12, 0, .24);
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.bk33-btn.secondary {
  color: #4a1105;
  background: linear-gradient(180deg, #ffe88f 0%, #f1a733 100%);
}

.bk33-btn.ghost {
  color: var(--bk-gold-300);
  background: rgba(255, 226, 140, .08);
  box-shadow: inset 0 0 0 1px rgba(255, 226, 140, .42);
}

.bk33-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #c4070c;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .22);
}

.bk33-nav .bk33-shell {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.bk33-nav-list {
  width: 100%;
  justify-content: center;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.bk33-nav-list a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border-radius: 999px;
  color: var(--bk-white);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.bk33-nav-list a:hover,
.bk33-nav-list .active {
  color: #fff56e;
  background: rgba(0, 0, 0, .14);
}

.bk33-hero {
  position: relative;
  isolation: isolate;
  min-height: 560px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(18, 2, 2, .95) 0%, rgba(35, 4, 5, .74) 40%, rgba(35, 4, 5, .28) 74%, rgba(18, 2, 2, .76) 100%),
    url("/assets/bk33-hero.jpg") center / cover no-repeat;
}

.bk33-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  z-index: -1;
  background: linear-gradient(180deg, transparent, rgba(18, 2, 2, .9));
}

.bk33-hero-content {
  width: min(610px, 100%);
  padding: 72px 0;
}

.bk33-hero h1 {
  margin: 0;
  color: var(--bk-white);
  font-size: 74px;
  line-height: 1;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.bk33-hero-lead {
  margin: 24px 0 0;
  color: rgba(255, 250, 240, .88);
  font-size: 21px;
  font-weight: 800;
}

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

.bk33-trust-row {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.bk33-trust-item {
  min-width: 156px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 226, 140, .26);
  border-radius: 8px;
  background: rgba(50, 4, 5, .7);
}

.bk33-trust-item strong {
  display: block;
  color: var(--bk-gold-300);
  font-size: 24px;
  line-height: 1.1;
  font-weight: 900;
}

.bk33-trust-item span {
  display: block;
  color: rgba(255, 250, 240, .78);
  font-size: 13px;
  font-weight: 900;
}

.bk33-main {
  color: var(--bk-ink);
  background: var(--bk-paper);
}

.bk33-section {
  padding: 64px 0;
}

.bk33-section-soft {
  background: var(--bk-paper-2);
}

.bk33-section h2,
.bk33-section-title,
.bk33-article-title h1,
.bk33-static-hero h1 {
  margin: 0;
  color: #96090d;
  font-size: 42px;
  line-height: 1.18;
  font-weight: 900;
  text-align: center;
  overflow-wrap: anywhere;
}

.bk33-intro-box {
  max-width: 920px;
  margin: 26px auto 0;
  padding: 30px;
  border-left: 4px solid var(--bk-red-600);
  border-radius: 8px;
  color: var(--bk-ink);
  background: #fff;
  box-shadow: var(--bk-shadow);
}

.bk33-intro-box p,
.bk33-feature-row p,
.bk33-card p,
.bk33-news-body p,
.bk33-content-box p,
.bk33-content-box li,
.bk33-article-body,
.bk33-static-content p,
.bk33-static-content li,
.bk33-sidebar-card p {
  color: var(--bk-muted);
}

.bk33-intro-box p {
  margin: 0 0 16px;
  font-size: 17px;
}

.bk33-section-head {
  max-width: 760px;
  margin: 0 auto 32px;
  text-align: center;
}

.bk33-section-head p {
  margin: 12px 0 0;
  color: var(--bk-muted);
  font-weight: 800;
}

.bk33-game-grid {
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}

.bk33-card {
  width: min(270px, 100%);
  min-height: 100%;
  padding: 26px;
  border-radius: 8px;
  color: var(--bk-ink);
  background: #fff;
  box-shadow: var(--bk-shadow);
}

.bk33-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 18px;
}

.bk33-card .icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #4a1105;
  background: linear-gradient(180deg, #ffe88f, #f1a733);
  font-size: 24px;
  font-weight: 900;
}

.bk33-card h3 {
  margin: 0 0 10px;
  color: var(--bk-ink);
  font-size: 21px;
  line-height: 1.3;
  font-weight: 900;
}

.bk33-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 30px;
  align-items: stretch;
}

.bk33-feature-list {
  display: grid;
  gap: 16px;
}

.bk33-feature-row {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 18px;
  padding: 22px;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--bk-shadow);
}

.bk33-feature-row .num {
  color: var(--bk-red-600);
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
}

.bk33-feature-row h3 {
  margin: 0 0 6px;
  color: var(--bk-ink);
  font-size: 20px;
}

.bk33-promo-panel {
  min-height: 100%;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(18, 2, 2, .08), rgba(18, 2, 2, .22)),
    url("/assets/bk33-intro.jpg") center / cover no-repeat;
  box-shadow: var(--bk-shadow);
}

.bk33-news-grid {
  align-items: stretch;
  gap: 18px;
}

.bk33-news-main,
.bk33-news-small,
.bk33-news-row {
  display: grid;
  gap: 12px;
  padding: 24px;
  border-radius: 8px;
  color: var(--bk-ink);
  background: #fff;
  box-shadow: var(--bk-shadow);
}

.bk33-news-main {
  flex: 1.4;
}

.bk33-news-small {
  flex: 1;
}

.bk33-news-row {
  grid-template-columns: 112px minmax(0, 1fr) auto;
  align-items: center;
}

.bk33-news-row img {
  width: 112px;
  height: 76px;
  object-fit: cover;
  border-radius: 8px;
}

.bk33-news-body h2,
.bk33-news-main h3,
.bk33-news-small h3 {
  margin: 0;
  color: var(--bk-ink);
  font-size: 21px;
  line-height: 1.35;
  font-weight: 900;
}

.bk33-news-body h2 a:hover {
  color: var(--bk-red-600);
}

.bk33-meta,
.bk33-news-main time,
.bk33-news-small time {
  color: var(--bk-red-600);
  font-size: 13px;
  font-weight: 900;
}

.bk33-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.bk33-pagination li,
.bk33-pagination a,
.bk33-pagination span {
  min-width: 38px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--bk-ink);
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(131, 9, 13, .18);
  font-size: 14px;
  font-weight: 900;
}

.bk33-pagination a:hover,
.bk33-pagination .thisclass {
  color: #4a1105;
  background: var(--bk-gold-300);
}

.bk33-content-band {
  padding: 62px 0;
  color: var(--bk-ink);
  background: #fff8ed;
}

.bk33-content-box {
  max-width: 960px;
  margin: 0 auto;
  padding: 32px;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--bk-shadow);
}

.bk33-content-box h2 {
  margin: 0 0 16px;
  color: #96090d;
  font-size: 32px;
  font-weight: 900;
}

.bk33-breadcrumb {
  padding: 24px 0 0;
  color: var(--bk-muted);
  background: var(--bk-paper-2);
}

.bk33-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
  font-weight: 900;
}

.bk33-breadcrumb a {
  color: var(--bk-red-600);
}

.bk33-article-shell {
  padding: 38px 0 70px;
  color: var(--bk-ink);
  background: var(--bk-paper-2);
}

.bk33-article-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 26px;
  align-items: start;
}

.bk33-article-main,
.bk33-sidebar-card {
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--bk-shadow);
}

.bk33-article-title {
  padding: 32px;
  border-bottom: 1px solid rgba(131, 9, 13, .12);
}

.bk33-article-title h1 {
  text-align: left;
}

.bk33-article-title p {
  margin: 14px 0 0;
  color: var(--bk-muted);
  font-size: 16px;
}

.bk33-article-body {
  padding: 32px;
  font-size: 17px;
}

.bk33-article-body h2,
.bk33-article-body h3 {
  color: var(--bk-ink);
  line-height: 1.25;
}

.bk33-article-body img {
  margin: 20px 0;
  border-radius: 8px;
}

.bk33-article-tools,
.bk33-prenext {
  padding: 22px 32px;
  border-top: 1px solid rgba(131, 9, 13, .12);
}

.bk33-article-tools ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bk33-article-tools a,
.bk33-prenext a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 13px;
  color: var(--bk-ink);
  background: var(--bk-paper-2);
  font-size: 13px;
  font-weight: 900;
}

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

.bk33-sidebar {
  display: grid;
  gap: 18px;
}

.bk33-sidebar-card {
  padding: 22px;
}

.bk33-sidebar-card h3 {
  margin: 0 0 12px;
  color: var(--bk-ink);
  font-size: 20px;
  font-weight: 900;
}

.bk33-sidebar-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bk33-sidebar-card a {
  color: var(--bk-red-600);
  font-weight: 900;
}

.bk33-static-hero {
  color: #fff;
  padding: 76px 0 48px;
  background:
    linear-gradient(90deg, rgba(18, 2, 2, .96) 0%, rgba(35, 4, 5, .72) 55%, rgba(18, 2, 2, .78) 100%),
    url("/assets/bk33-hero.jpg") center / cover no-repeat;
}

.bk33-static-hero h1 {
  max-width: 760px;
  color: #fff;
  text-align: left;
  font-size: 58px;
}

.bk33-static-hero p {
  max-width: 660px;
  margin: 18px 0 0;
  color: rgba(255, 250, 240, .86);
  font-size: 18px;
  font-weight: 800;
}

.bk33-static-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}

.bk33-static-content {
  display: grid;
  gap: 18px;
}

.bk33-static-content section,
.bk33-static-media {
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--bk-shadow);
}

.bk33-static-content section {
  padding: 28px;
}

.bk33-static-content h2 {
  margin: 0;
  color: #96090d;
  font-size: 28px;
  line-height: 1.25;
  font-weight: 900;
}

.bk33-static-content p {
  margin: 14px 0 0;
}

.bk33-static-media {
  overflow: hidden;
}

.bk33-static-media img {
  width: 100%;
}

.bk33-static-media div {
  padding: 22px;
}

.bk33-footer {
  color: rgba(255, 250, 240, .76);
  background: #180303;
}

.bk33-footer .bk33-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 34px 0;
}

.bk33-footer p {
  max-width: 760px;
  margin: 10px 0 0;
  font-size: 13px;
}

.bk33-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.bk33-footer-links a {
  color: rgba(255, 250, 240, .86);
  font-size: 13px;
  font-weight: 900;
}

@media (max-width: 1080px) {
  .bk33-topbar .bk33-shell,
  .bk33-footer .bk33-shell {
    align-items: flex-start;
    flex-direction: column;
  }

  .bk33-split,
  .bk33-article-grid,
  .bk33-static-layout {
    grid-template-columns: 1fr;
  }

  .bk33-promo-panel {
    min-height: 360px;
  }

  .bk33-news-grid {
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .bk33-shell {
    width: calc(100vw - 28px);
    max-width: none;
  }

  .bk33-brand-word strong {
    font-size: 34px;
  }

  .bk33-socials {
    flex-wrap: wrap;
  }

  .bk33-actions,
  .bk33-hero-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .bk33-btn {
    width: 100%;
  }

  .bk33-nav .bk33-shell {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .bk33-nav-list {
    justify-content: flex-start;
    flex-wrap: nowrap;
  }

  .bk33-hero {
    min-height: auto;
  }

  .bk33-hero-content {
    padding: 54px 0 44px;
  }

  .bk33-hero h1 {
    font-size: 46px;
  }

  .bk33-hero-lead {
    font-size: 17px;
  }

  .bk33-section {
    padding: 48px 0;
  }

  .bk33-section h2,
  .bk33-section-title,
  .bk33-article-title h1,
  .bk33-static-hero h1 {
    font-size: 30px;
  }

  .bk33-news-row {
    grid-template-columns: 1fr;
  }

  .bk33-news-row img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .bk33-feature-row {
    grid-template-columns: 1fr;
  }

  .bk33-prenext {
    grid-template-columns: 1fr;
  }

  .bk33-intro-box,
  .bk33-content-box,
  .bk33-article-title,
  .bk33-article-body,
  .bk33-article-tools,
  .bk33-prenext,
  .bk33-static-content section {
    padding: 22px;
  }
}
