:root {
  --btk-green: #569919;
  --btk-green-bright: #84cc16;
  --btk-yellow: #fed800;
  --btk-navy: #23313d;
  --btk-ink: #16202c;
  --btk-muted: #98a9bc;
  --btk-text: #f5f7fa;
  --btk-line: rgba(255, 255, 255, 0.1);
  --btk-r: 14px;
  --btk-head: 68px;
  --btk-font: "Outfit", system-ui, sans-serif;
  --btk-display: "Barlow Condensed", Impact, sans-serif;
  --btk-danger: #b91c1c;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body.btk-body {
  font-family: var(--btk-font);
  color: var(--btk-text);
  background: var(--btk-ink);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  max-width: 100%;
}
body.btk-body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    repeating-linear-gradient(-12deg, transparent, transparent 18px, rgba(254, 216, 0, 0.04) 18px, rgba(254, 216, 0, 0.04) 20px),
    radial-gradient(ellipse 60% 45% at 10% 0%, rgba(86, 153, 25, 0.22), transparent 55%),
    linear-gradient(180deg, #1a2834 0%, var(--btk-ink) 42%);
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--btk-yellow); text-decoration: none; }
a:hover { color: #fff; }
:focus-visible { outline: 2px solid var(--btk-yellow); outline-offset: 2px; }
.btk-skip {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
  top: 0;
  inset-inline-start: 0;
  z-index: 100;
  background: var(--btk-yellow);
  color: #000;
}
.btk-skip:focus {
  width: auto;
  height: auto;
  margin: 0;
  padding: 8px 12px;
  overflow: visible;
  clip: auto;
  clip-path: none;
  white-space: normal;
  inset-inline-start: 12px;
  top: 12px;
  font-weight: 700;
}

.btk-head {
  position: sticky;
  top: 0;
  z-index: 100;
  overflow: visible;
  background: rgba(35, 49, 61, 0.94);
  border-bottom: 1px solid var(--btk-line);
  backdrop-filter: blur(12px);
}
.btk-head__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  min-height: var(--btk-head);
  display: flex;
  align-items: center;
  gap: 16px;
  overflow: visible;
}
.btk-brand img { height: 28px; width: auto; }
.btk-nav { display: none; gap: 6px; flex: 1; flex-wrap: wrap; }
.btk-nav a {
  color: var(--btk-muted);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 999px;
}
.btk-nav a:hover { color: #fff; background: rgba(255, 255, 255, 0.06); }
.btk-tools {
  margin-inline-start: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  overflow: visible;
  position: relative;
  z-index: 200;
}
.btk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  transition: transform 0.2s, filter 0.2s;
  text-decoration: none;
}
.btk-btn:active { transform: translateY(1px); }
.btk-btn--solid { background: var(--btk-green); color: #fff; box-shadow: 0 8px 24px rgba(86, 153, 25, 0.35); }
.btk-btn--solid:hover { filter: brightness(1.08); }
.btk-btn--ghost { background: transparent; border-color: var(--btk-line); color: var(--btk-text); }
.btk-burger {
  order: 99;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border: 1px solid var(--btk-line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}
.btk-burger span { width: 18px; height: 2px; background: var(--btk-yellow); border-radius: 2px; }
.btk-drawer {
  position: fixed;
  inset: var(--btk-head) 0 0 0;
  background: rgba(22, 32, 44, 0.98);
  padding: 20px;
  z-index: 49;
  overflow: auto;
}
.btk-drawer[hidden] {
  display: none !important;
}
.btk-drawer__nav { display: grid; gap: 8px; margin-top: 16px; }
.btk-drawer__nav a {
  display: block;
  padding: 12px;
  border: 1px solid var(--btk-line);
  border-radius: var(--btk-r);
  color: var(--btk-text);
  font-weight: 600;
}
.btk-drawer__close {
  background: transparent;
  border: 1px solid var(--btk-line);
  color: var(--btk-text);
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
}

.btk-lang { position: relative; z-index: 300; }
.btk-lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 40px;
  padding: 0 10px;
  border: 1px solid var(--btk-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--btk-text);
  font: inherit;
  font-size: 0.78rem;
  cursor: pointer;
}
.btk-lang-menu {
  position: absolute;
  inset-inline-end: 0;
  top: calc(100% + 6px);
  min-width: 180px;
  max-width: min(180px, calc(100vw - 1.5rem));
  max-height: 280px;
  overflow: auto;
  background: var(--btk-navy);
  border: 1px solid var(--btk-line);
  border-radius: var(--btk-r);
  padding: 6px;
  z-index: 400;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}
.btk-lang-menu[hidden] {
  display: none !important;
}
.btk-lang-item {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 8px 10px;
  border: 0;
  background: transparent;
  color: var(--btk-text);
  font: inherit;
  text-align: start;
  cursor: pointer;
  border-radius: 8px;
}
.btk-lang-item:hover { background: rgba(255, 255, 255, 0.06); }
.btk-flag { border-radius: 2px; object-fit: cover; }

.btk-main { max-width: 1200px; margin: 0 auto; padding: 24px 16px 64px; }
.btk-page { padding-top: 32px; }
.btk-hero {
  display: grid;
  gap: 28px;
  padding: 28px 0 40px;
  border-bottom: 1px solid var(--btk-line);
}
.btk-kicker {
  color: var(--btk-yellow);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.btk-hero h1 {
  font-family: var(--btk-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
  max-width: 16ch;
  margin-bottom: 14px;
}
.btk-lead { color: var(--btk-muted); font-size: 1.05rem; max-width: 52ch; margin-bottom: 16px; }
.btk-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.btk-chips span {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(254, 216, 0, 0.1);
  border: 1px solid rgba(254, 216, 0, 0.35);
  color: var(--btk-yellow);
  font-size: 0.78rem;
  font-weight: 700;
}
.btk-hero__cta { display: flex; flex-wrap: wrap; gap: 10px; }
.btk-hero__odds {
  background: rgba(35, 49, 61, 0.85);
  border: 1px solid var(--btk-line);
  border-radius: var(--btk-r);
  padding: 16px;
}
.btk-odds-label { font-size: 0.78rem; color: var(--btk-muted); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.08em; }

.btk-section { padding: 40px 0; border-bottom: 1px solid var(--btk-line); }
.btk-section h2 {
  font-family: var(--btk-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 10px;
}
.btk-why-grid {
  display: grid;
  gap: 14px;
  margin-top: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.btk-why-grid article {
  background: rgba(35, 49, 61, 0.55);
  border: 1px solid var(--btk-line);
  border-radius: var(--btk-r);
  padding: 18px;
}
.btk-why-grid span {
  display: inline-block;
  color: var(--btk-yellow);
  font-family: var(--btk-display);
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.btk-cats { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.btk-cats span {
  padding: 10px 14px;
  border-radius: var(--btk-r);
  background: rgba(86, 153, 25, 0.15);
  border: 1px solid rgba(86, 153, 25, 0.35);
  font-weight: 600;
  font-size: 0.88rem;
}

.btk-match {
  background: rgba(22, 32, 44, 0.8);
  border: 1px solid var(--btk-line);
  border-radius: var(--btk-r);
  padding: 14px;
  margin-bottom: 10px;
}
.btk-match__meta { font-size: 0.75rem; color: var(--btk-muted); margin-bottom: 6px; }
.btk-match__teams { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-bottom: 12px; font-weight: 700; }
.btk-match__odds { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.btk-odd {
  display: grid;
  gap: 2px;
  padding: 10px 8px;
  border-radius: 10px;
  border: 1px solid var(--btk-line);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  color: inherit;
  font: inherit;
  text-decoration: none;
}
.btk-odd--home { border-color: rgba(86, 153, 25, 0.5); }
.btk-odd--draw { border-color: rgba(254, 216, 0, 0.45); }
.btk-odd--away { border-color: rgba(152, 169, 188, 0.45); }
.btk-odd__l { font-size: 0.72rem; color: var(--btk-muted); }
.btk-odd__v { font-family: var(--btk-display); font-size: 1.1rem; }

.btk-slots {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  margin-top: 16px;
}
.btk-slot {
  background: rgba(35, 49, 61, 0.6);
  border: 1px solid var(--btk-line);
  border-radius: var(--btk-r);
  padding: 12px;
}
.btk-slot__art {
  aspect-ratio: 4/3;
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
  background: rgba(22, 32, 44, 0.5);
}
.btk-slot__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.btk-slot h3 { font-size: 0.95rem; margin-bottom: 10px; }
.btk-slot .btk-btn { width: 100%; }

.btk-sport-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  margin-top: 16px;
}
.btk-sport-card {
  border: 1px solid var(--btk-line);
  border-radius: var(--btk-r);
  overflow: hidden;
  background: rgba(35, 49, 61, 0.5);
}
.btk-sport-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
}
.btk-sport-card span {
  display: block;
  padding: 10px 12px;
  font-weight: 700;
  font-size: 0.85rem;
}

.btk-media-row {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-top: 16px;
}
.btk-media-card {
  border: 1px solid var(--btk-line);
  border-radius: var(--btk-r);
  overflow: hidden;
  background: rgba(35, 49, 61, 0.5);
}
.btk-media-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.btk-media-card p {
  padding: 10px 12px;
  font-size: 0.85rem;
  color: var(--btk-muted);
}

.btk-net-grid {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.btk-guide-list { list-style: none; display: grid; gap: 8px; margin-top: 12px; }
.btk-guide-list a { color: var(--btk-text); font-weight: 600; }
.btk-about p { margin-bottom: 12px; color: var(--btk-muted); max-width: 72ch; }
.btk-faq details {
  border: 1px solid var(--btk-line);
  border-radius: var(--btk-r);
  padding: 12px 14px;
  margin-bottom: 8px;
  background: rgba(35, 49, 61, 0.45);
}
.btk-faq summary { cursor: pointer; font-weight: 700; }
.btk-faq p { margin-top: 10px; color: var(--btk-muted); }
.btk-final { text-align: center; }
.btk-page-hero { padding: 24px 0 32px; }
.btk-page-hero h1 {
  font-family: var(--btk-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 10px;
}

.btk-net-list { display: grid; gap: 10px; }
.btk-net-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid var(--btk-line);
  border-radius: var(--btk-r);
  background: rgba(35, 49, 61, 0.5);
}
.btk-net-row--here { border-color: rgba(254, 216, 0, 0.45); }
.btk-pill {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--btk-yellow);
  color: #16202c;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.btk-foot {
  margin-top: 40px;
  border-top: 1px solid var(--btk-line);
  background: rgba(35, 49, 61, 0.65);
  padding: 32px 16px 20px;
}
.btk-foot__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.btk-foot h3 { font-size: 0.9rem; margin-bottom: 10px; color: var(--btk-yellow); }
.btk-foot ul { list-style: none; display: grid; gap: 6px; }
.btk-foot button { background: none; border: 0; color: var(--btk-text); font: inherit; cursor: pointer; padding: 0; text-align: left; }
.btk-foot__cta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.btk-badge-18 {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--btk-yellow);
  font-weight: 800;
  margin-bottom: 8px;
}
.btk-foot__legal {
  max-width: 1200px;
  margin: 20px auto 0;
  padding-top: 16px;
  border-top: 1px solid var(--btk-line);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  font-size: 0.82rem;
  color: var(--btk-muted);
}

.btk-skel-line {
  display: block;
  height: 12px;
  border-radius: 6px;
  background: linear-gradient(90deg, rgba(255,255,255,.06), rgba(255,255,255,.14), rgba(255,255,255,.06));
  background-size: 200% 100%;
  animation: btk-shimmer 1.2s infinite;
  margin-bottom: 8px;
}
@keyframes btk-shimmer { to { background-position: -200% 0; } }

@media (min-width: 900px) {
  .btk-nav { display: flex; }
  .btk-burger { display: none; }
  .btk-hero { grid-template-columns: 1.1fr 0.9fr; align-items: center; }
}
@media (max-width: 820px) {
  .btk-tools .btk-btn--ghost { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
html[dir=rtl] .btk-tools { direction: ltr; }
html[dir=rtl] .btk-lang-menu { left: 0; right: auto; max-width: min(240px, calc(100vw - 16px)); }
