:root {
  --b11-blue: #0754d8;
  --b11-blue-dark: #082364;
  --b11-navy: #04122d;
  --b11-gold: #ffc83d;
  --b11-gold-dark: #d99408;
  --b11-ink: #07152f;
  --b11-muted: #667188;
  --b11-line: rgba(7, 21, 47, .12);
  --b11-soft: #f4f7fc;
  --b11-white: #fff;
  --b11-shadow: 0 18px 42px rgba(4, 18, 45, .12);
}
* { box-sizing: border-box; }
html { overflow-x: hidden; }
body.bet11-page {
  margin: 0;
  background: var(--b11-white);
  color: var(--b11-ink);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
  line-height: 1.65;
}
.bet11-page a { color: inherit; text-decoration: none; }
.bet11-page img { max-width: 100%; display: block; }
.bet11-container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.bet11-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: linear-gradient(90deg, #05266f 0%, #0754d8 54%, #073b9e 100%);
  box-shadow: 0 10px 30px rgba(4, 18, 45, .22);
}
.bet11-header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.bet11-brand, .bet11-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--b11-white);
  text-decoration: none;
}
.bet11-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--b11-gold);
  border: 2px solid currentColor;
  font-size: 16px;
  font-weight: 900;
}
.bet11-brand-name {
  font-size: 31px;
  line-height: 1;
  font-weight: 900;
  color: var(--b11-white);
}
.bet11-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  min-width: 0;
  flex: 1 1 auto;
}
.bet11-nav a {
  color: rgba(255, 255, 255, .86);
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
  white-space: nowrap;
  padding: 29px 0 25px;
  border-bottom: 3px solid transparent;
}
.bet11-nav a:hover, .bet11-nav a.is-active {
  color: var(--b11-gold);
  border-bottom-color: var(--b11-gold);
}
.bet11-button, .bet11-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}
.bet11-button-primary, .bet11-header-cta {
  color: #07152f;
  background: linear-gradient(180deg, #ffdd68 0%, #ffbd27 100%);
  box-shadow: 0 10px 22px rgba(255, 200, 61, .32);
}
.bet11-button-secondary {
  color: var(--b11-white);
  border-color: rgba(255,255,255,.46);
  background: rgba(255,255,255,.08);
}
.bet11-hero {
  color: var(--b11-white);
  background:
    radial-gradient(circle at 76% 38%, rgba(255,200,61,.18), transparent 25%),
    linear-gradient(115deg, #04122d 0%, #062d82 48%, #096bff 100%);
  overflow: hidden;
}
.bet11-hero-inner {
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: 26px;
  padding: 48px 0;
}
.bet11-hero-copy { position: relative; z-index: 2; }
.bet11-hero h1 {
  max-width: 630px;
  margin: 0;
  color: var(--b11-white);
  font-size: clamp(42px, 5.2vw, 72px);
  line-height: 1.06;
  font-weight: 900;
}
.bet11-hero h1 .gold { color: var(--b11-gold); display: block; }
.bet11-hero p {
  max-width: 570px;
  margin: 22px 0 0;
  color: rgba(255,255,255,.86);
  font-size: 17px;
  line-height: 1.75;
}
.bet11-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 28px; }
.bet11-hero-art {
  position: relative;
  align-self: stretch;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bet11-hero-art::before {
  content: "";
  position: absolute;
  inset: 12% 0 7% 5%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.18), transparent 68%);
  filter: blur(8px);
}
.bet11-hero-art img {
  position: relative;
  width: min(100%, 620px);
  aspect-ratio: 1200 / 760;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 22px 58px rgba(0,0,0,.25);
}
.bet11-proof {
  background: var(--b11-white);
  border-bottom: 1px solid var(--b11-line);
}
.bet11-proof-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding: 28px 0;
}
.bet11-proof-item {
  display: grid;
  justify-items: center;
  gap: 12px;
  min-height: 118px;
  padding: 6px 18px;
  text-align: center;
  border-right: 1px solid var(--b11-line);
}
.bet11-proof-item:last-child { border-right: 0; }
.bet11-proof-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--b11-blue);
  font-size: 26px;
  font-weight: 900;
}
.bet11-proof-item strong { font-size: 14px; line-height: 1.3; color: var(--b11-ink); }
.bet11-proof-item span { color: var(--b11-muted); font-size: 13px; line-height: 1.55; }
.bet11-section { padding: 62px 0; }
.bet11-section-soft { background: linear-gradient(180deg, #fff 0%, #f5f8ff 100%); }
.bet11-section-title {
  margin: 0 0 28px;
  color: var(--b11-ink);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.16;
  text-align: center;
  font-weight: 900;
}
.bet11-title-rule {
  width: 34px;
  height: 3px;
  margin: -15px auto 30px;
  background: var(--b11-gold);
  border-radius: 999px;
}
.bet11-lead {
  max-width: 820px;
  margin: -12px auto 30px;
  color: var(--b11-muted);
  text-align: center;
  font-size: 17px;
  font-weight: 700;
}
.bet11-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.bet11-game-card {
  min-width: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--b11-navy);
  box-shadow: var(--b11-shadow);
}
.bet11-game-card img {
  width: 100%;
  height: 154px;
  object-fit: cover;
}
.bet11-game-card-body { padding: 18px; color: var(--b11-white); }
.bet11-game-card h3 { margin: 0 0 8px; color: var(--b11-gold); font-size: 20px; font-weight: 900; }
.bet11-game-card p { margin: 0; color: rgba(255,255,255,.76); font-size: 14px; line-height: 1.65; }
.bet11-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 32px;
}
.bet11-feature-media img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--b11-shadow);
}
.bet11-feature-list { display: grid; gap: 16px; }
.bet11-feature-item {
  display: grid;
  grid-template-columns: 54px minmax(0,1fr);
  gap: 16px;
  padding: 18px;
  border-radius: 8px;
  background: var(--b11-white);
  box-shadow: 0 12px 30px rgba(4,18,45,.08);
  border: 1px solid var(--b11-line);
}
.bet11-feature-num {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--b11-ink);
  background: linear-gradient(180deg, #ffdd68, #ffbd27);
  font-weight: 900;
}
.bet11-feature-item h3 { margin: 0 0 4px; color: var(--b11-ink); font-size: 19px; font-weight: 900; }
.bet11-feature-item p { margin: 0; color: var(--b11-muted); font-weight: 700; }
.bet11-news-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.bet11-news-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 18px;
  min-height: 210px;
  padding: 18px;
  border-radius: 8px;
  border: 1px solid var(--b11-line);
  background: var(--b11-white);
  box-shadow: 0 12px 30px rgba(4,18,45,.08);
}
.bet11-news-thumb {
  min-height: 112px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--b11-ink);
  background: linear-gradient(180deg, #ffdd68, #ffbd27);
  font-weight: 900;
}
.bet11-news-tag { display: inline-flex; margin-bottom: 8px; color: var(--b11-blue); font-size: 12px; font-weight: 900; }
.bet11-news-card h3 { margin: 0 0 8px; color: var(--b11-ink); font-size: 21px; line-height: 1.2; font-weight: 900; }
.bet11-news-card p { margin: 0 0 10px; color: var(--b11-muted); font-weight: 700; }
.bet11-news-meta { display: flex; gap: 12px; flex-wrap: wrap; color: #788398; font-size: 13px; font-weight: 800; }
.bet11-content-box {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 38px);
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--b11-line);
  box-shadow: var(--b11-shadow);
}
.bet11-content-box h2 { margin: 0 0 14px; color: var(--b11-ink); font-size: clamp(28px, 3vw, 38px); font-weight: 900; }
.bet11-content-box p, .bet11-content-box li { color: #24304a; font-size: 17px; font-weight: 650; }
.bet11-content-box ul { margin: 0; padding-left: 20px; }
.bet11-page-hero {
  padding: 68px 0;
  color: #fff;
  background:
    radial-gradient(circle at 78% 40%, rgba(255,200,61,.2), transparent 28%),
    linear-gradient(115deg, #04122d 0%, #062d82 48%, #096bff 100%);
}
.bet11-page-hero h1 { max-width: 820px; margin: 0; font-size: clamp(38px, 5vw, 64px); line-height: 1.08; font-weight: 900; }
.bet11-page-hero p { max-width: 720px; margin: 18px 0 0; color: rgba(255,255,255,.82); font-size: 18px; font-weight: 700; }
.bet11-page-layout {
  display: grid;
  grid-template-columns: minmax(0,1fr) 330px;
  gap: 24px;
  align-items: start;
}
.bet11-page-card, .bet11-side-card {
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--b11-line);
  box-shadow: var(--b11-shadow);
  overflow: hidden;
}
.bet11-page-card img { width: 100%; max-height: 380px; object-fit: cover; }
.bet11-page-card-body { padding: clamp(22px, 3vw, 34px); }
.bet11-page-card-body h2 { margin: 0 0 12px; color: var(--b11-ink); font-size: 30px; font-weight: 900; }
.bet11-page-card-body p, .bet11-page-card-body li { color: #24304a; font-size: 17px; font-weight: 650; }
.bet11-side-card { padding: 22px; position: sticky; top: 96px; }
.bet11-side-card h3 { margin: 0 0 12px; color: var(--b11-ink); font-size: 22px; font-weight: 900; }
.bet11-side-card a { display: block; padding: 12px 0; border-bottom: 1px solid var(--b11-line); color: var(--b11-blue-dark); font-weight: 900; }
.bet11-article-wrap { padding: 54px 0; background: var(--b11-soft); }
.bet11-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 26px;
  align-items: start;
}
.bet11-article {
  padding: clamp(22px, 4vw, 34px);
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--b11-line);
  box-shadow: var(--b11-shadow);
}
.bet11-crumb { margin-bottom: 18px; color: #788398; font-size: 14px; font-weight: 800; }
.bet11-article h1 { margin: 0 0 14px; color: var(--b11-ink); font-size: clamp(30px, 4vw, 48px); line-height: 1.12; font-weight: 900; }
.bet11-article-meta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 20px; color: #788398; font-size: 14px; font-weight: 800; }
.bet11-article-summary { margin-bottom: 24px; padding: 18px; border-left: 4px solid var(--b11-blue); background: var(--b11-soft); color: #24304a; font-weight: 800; }
.bet11-article-body { color: #24304a; font-size: 17px; font-weight: 600; }
.bet11-pagination { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin: 24px 0 0; padding: 0; list-style: none; }
.bet11-pagination a, .bet11-pagination span, .bet11-pagination li {
  min-width: 38px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid var(--b11-line);
  background: #fff;
  color: var(--b11-blue-dark);
  font-weight: 900;
}
.bet11-footer {
  padding: 42px 0;
  color: rgba(255,255,255,.74);
  background: #04122d;
}
.bet11-footer-grid { display: grid; grid-template-columns: 1.2fr repeat(3,minmax(0,1fr)); gap: 24px; }
.bet11-footer h3 { margin: 0 0 12px; color: var(--b11-gold); font-size: 20px; font-weight: 900; }
.bet11-footer p, .bet11-footer li { margin: 0 0 8px; font-weight: 700; }
.bet11-footer ul { margin: 0; padding: 0; list-style: none; }
@media (max-width: 1080px) {
  .bet11-header-inner { flex-wrap: wrap; padding: 12px 0; }
  .bet11-nav { order: 3; flex-basis: 100%; justify-content: flex-start; overflow-x: auto; }
  .bet11-proof-grid, .bet11-card-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .bet11-footer-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 820px) {
  .bet11-hero-inner, .bet11-feature-grid, .bet11-page-layout, .bet11-article-layout { grid-template-columns: 1fr; }
  .bet11-hero-inner { padding: 42px 0; }
  .bet11-hero h1 { font-size: 42px; }
  .bet11-news-list { grid-template-columns: 1fr; }
  .bet11-side-card { position: static; }
}
@media (max-width: 560px) {
  .bet11-brand-name { font-size: 26px; }
  .bet11-proof-grid, .bet11-card-grid, .bet11-footer-grid { grid-template-columns: 1fr; }
  .bet11-news-card { grid-template-columns: 1fr; }
  .bet11-section { padding: 44px 0; }
}
