

:root {
  --bg: #0c0c0e;
  --bg-elev: #121216;
  --bg-card: #17171c;
  --bg-card-hi: #1e1e25;
  --line: #26262e;
  --line-soft: #1c1c22;

  --red: #f4133b;
  --red-dim: #c2102f;
  --gold: #ffb000;
  --gold-dim: #d99500;
  --green: #21c65a;

  --txt: #f2f2f4;
  --txt-mid: #a9a9b5;
  --txt-dim: #6f6f7d;

  --sidebar-w: 246px;
  --ticker-h: 58px;
  --radius: 14px;
  --radius-sm: 8px;

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--txt);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

h1, h2, h3 { margin: 0 0 12px; line-height: 1.18; font-weight: 700; }
h1 { font-size: 31px; }
h2 { font-size: 22px; }
h3 { font-size: 16px; }
p  { margin: 0 0 12px; }

.layout { display: flex; min-height: 100vh; }

.main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.content {
  flex: 1;
  width: 100%;
  padding: 22px 26px calc(var(--ticker-h) + 30px);
}

.sidebar {
  width: var(--sidebar-w);
  flex-shrink: 0;
  background: var(--bg-elev);
  border-right: 1px solid var(--line-soft);
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  padding-bottom: 12px;
}

.logo {
  display: flex;
  align-items: center;
  padding: 16px 18px 18px;
}

.logo-img {
  display: block;
  height: 42px;
  width: auto;
  max-width: 100%;
}

.nav { overflow-y: auto; flex: 1; padding-bottom: 8px; }

.nav-group + .nav-group {
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--line-soft);
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px 20px;
  color: var(--txt-mid);
  font-size: 14px;
  border-left: 3px solid transparent;
  transition: background .15s, color .15s;
}
.nav-link:hover { background: var(--bg-card); color: var(--txt); }
.nav-link.is-active {
  background: linear-gradient(90deg, rgba(244,19,59,.18), transparent 85%);
  border-left-color: var(--red);
  color: var(--txt);
  font-weight: 600;
}
.nav-ico { width: 19px; text-align: center; font-size: 15px; opacity: .92; }

.nav-link[data-ref], .side-btn[data-ref] { cursor: pointer; }
.nav-link[aria-disabled="true"], .side-btn[aria-disabled="true"] { cursor: default; }

.tag-new {
  margin-left: auto;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .5px;
  background: var(--red);
  color: #fff;
  padding: 2px 5px;
  border-radius: 3px;
}

.sidebar-bottom {
  display: flex;
  gap: 8px;
  padding: 12px 14px 0;
  border-top: 1px solid var(--line-soft);
}
.side-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--txt-mid);
  font-size: 13px;
  font-weight: 600;
  padding: 9px 6px;
}
.side-btn:hover { color: var(--txt); border-color: var(--txt-dim); }

.topbar {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 13px 26px;
  background: var(--bg-elev);
  border-bottom: 1px solid var(--line-soft);
  position: sticky;
  top: 0;
  z-index: 30;
}

.topnav { display: flex; gap: 8px; align-items: center; flex-shrink: 0; }
.topnav a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px 11px;
  border-radius: 11px;
  font-size: 16.5px;
  font-weight: 700;
  letter-spacing: .1px;
  color: var(--txt-mid);
  white-space: nowrap;
  background: linear-gradient(180deg, #1b1b22 0%, #141419 100%);
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
  transition: color .16s, border-color .16s, background .16s, transform .16s;
}
.topnav a:hover {
  color: var(--txt);
  border-color: #4a4a5a;
  background: linear-gradient(180deg, #22222b 0%, #191920 100%);
  transform: translateY(-1px);
}
.tn-ico {
  font-size: 15px;
  line-height: 1;
  width: 18px;
  text-align: center;
  filter: saturate(.9);
}

.topnav a.is-active {
  color: var(--txt);
  font-weight: 800;
  border-color: var(--red);
  background: linear-gradient(180deg, #2a1119 0%, #1a0d12 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 0 0 3px rgba(244,19,59,.10);
}
.topnav a.is-active .tn-ico { filter: none; }

.topbar-actions { margin-left: auto; display: flex; gap: 12px; flex-shrink: 0; }
.topbar-actions .btn { font-size: 15px; padding: 13px 26px; letter-spacing: .5px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .4px;
  padding: 11px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: filter .15s, background .15s, color .15s;
}
.btn:hover { filter: brightness(1.12); }

.btn-red   { background: var(--red); color: #fff; }
.btn-gold  { background: transparent; color: var(--gold); border-color: var(--gold-dim); }
.btn-gold:hover { background: var(--gold); color: #17130a; }
.btn-ghost { background: rgba(255,255,255,.06); color: var(--txt); border-color: rgba(255,255,255,.38); }
.btn-ghost:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.6); }
.btn-lg    { padding: 14px 30px; font-size: 14px; }
.btn-block { width: 100%; }

.banners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 34px;
}

.banner {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  display: block;
  line-height: 0;
}
.banner-cta {
  position: absolute;
  left: 4.5%;
  bottom: 4.5%;
  line-height: 1;
  font-size: clamp(10px, 1.05vw, 14px);
  padding: clamp(8px, .95vw, 14px) clamp(14px, 2vw, 30px);
  letter-spacing: .4px;
}
.banner img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: inherit;
}

.banner .btn { align-self: flex-start; box-shadow: 0 6px 20px rgba(0,0,0,.28); }

.section-center {
  text-align: center;
  margin: 40px 0 22px;
  position: relative;
}
.section-center h2 {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.section-center .sub {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: var(--txt-mid);
}
.section-center .sub::before,
.section-center .sub::after {
  content: "";
  width: 90px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.section-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 34px 0 15px;
}
.section-head h2 { margin: 0; }
.section-head .sub { font-size: 13px; color: var(--txt-dim); }

.grid { display: grid; gap: 15px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 19px;
  transition: border-color .15s, transform .15s;
}
a.card:hover { border-color: var(--red); transform: translateY(-2px); }
.card h3 { margin-bottom: 5px; }
.card p { color: var(--txt-mid); font-size: 13px; margin: 0; }
.card-ico { font-size: 25px; margin-bottom: 10px; display: block; }

.tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  min-height: 138px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: border-color .15s, transform .15s;
}
.tile:hover { border-color: var(--gold); transform: translateY(-2px); }
.tile-name { font-weight: 700; font-size: 15px; }
.tile-meta { font-size: 12px; color: var(--txt-dim); }
.tile-badge {
  position: absolute;
  top: 12px; right: 12px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .5px;
  padding: 3px 7px;
  border-radius: 4px;
  background: var(--red);
  color: #fff;
}

.matches { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }

.match {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid #1d3b28;
  padding: 15px 16px 16px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.06), transparent 60%),
    linear-gradient(160deg, #123423 0%, #0d2a1c 55%, #0b2116 100%);
  text-align: center;
}
.match-league {
  font-size: 11px;
  color: rgba(255,255,255,.5);
  margin-bottom: 8px;
}
.match-teams {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}
.match-mid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 14px;
}
.team-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  flex-shrink: 0;
  overflow: hidden;
}
.team-logo img {
  width: 76%;
  height: 76%;
  object-fit: contain;
  display: block;
}

.team-logo img.tl-lg { width: 92%; height: 92%; }
.team-logo img.tl-md { width: 85%; height: 85%; }
.match-when { font-size: 11px; color: rgba(255,255,255,.55); }
.match-when b { display: block; font-size: 17px; color: #fff; font-weight: 700; }

.odds { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.odd {
  background: rgba(0,0,0,.30);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius-sm);
  padding: 7px 4px;
  cursor: pointer;
  transition: background .15s, border-color .15s;
}
.odd:hover { background: var(--red); border-color: var(--red); }
.odd-key { display: block; font-size: 10px; color: rgba(255,255,255,.55); }
.odd-val { font-weight: 700; font-size: 15px; color: #fff; }

.live-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--red);
  margin-right: 6px;
}

.hero {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 36px 32px;
  margin-bottom: 24px;
  background:
    radial-gradient(680px 260px at 88% 14%, rgba(244,19,59,.32), transparent 68%),
    radial-gradient(520px 230px at 10% 92%, rgba(255,176,0,.15), transparent 66%),
    var(--bg-card);
}
.hero h1 { max-width: 730px; }
.hero p  { max-width: 690px; color: var(--txt-mid); margin-bottom: 20px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 13px;
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
}

.steps { counter-reset: step; display: grid; gap: 12px; }
.step {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 17px 19px 17px 62px;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 19px; top: 17px;
  width: 29px; height: 29px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step h3 { margin-bottom: 3px; }
.step p { margin: 0; color: var(--txt-mid); font-size: 13px; }

.form-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
}
.form-card h2 { margin-bottom: 3px; }
.form-note { color: var(--txt-dim); font-size: 13px; margin-bottom: 13px; }

.field { margin-bottom: 9px; }
.field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--txt-mid);
  margin-bottom: 4px;
}
.field input, .field select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--txt);
  font-family: inherit;
  font-size: 14px;
  padding: 9px 13px;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--red); }
.form-card .btn-lg { padding: 11px 30px; }
.form-hint { font-size: 12px; color: var(--txt-dim); margin-top: 9px; }

.bonus-card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(320px 150px at 88% 0%, rgba(255,176,0,.18), transparent 70%),
    var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 21px;
  display: flex;
  flex-direction: column;
}
.bonus-amount {
  font-size: 26px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 4px;
}
.bonus-card p { flex: 1; color: var(--txt-mid); font-size: 13px; }
.promo-chip {
  display: inline-block;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gold);
  border: 1px dashed var(--gold-dim);
  border-radius: 6px;
  padding: 6px 12px;
  margin-bottom: 13px;
  align-self: flex-start;
}

.seo {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 28px;
  margin-top: 32px;
}
.seo h1 { font-size: 23px; }
.seo h2 { font-size: 20px; }
.seo h3 { font-size: 15px; margin-top: 19px; }
.seo p, .seo li { color: var(--txt-mid); font-size: 14px; }
.seo ul { margin: 0 0 12px; padding-left: 20px; }
.seo li { margin-bottom: 5px; }
.seo strong { color: var(--txt); }

.ticker {
  position: fixed;
  left: var(--sidebar-w);
  right: 0;
  bottom: 0;
  height: var(--ticker-h);
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(18,18,22,.97);
  border-top: 1px solid var(--line);
  padding: 0 44px 0 20px;
  overflow: hidden;
}
.ticker-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--txt-mid);
  white-space: nowrap;
  flex-shrink: 0;
}
.ticker-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
}
.ticker-items {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 26px, #000 calc(100% - 26px), transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 26px, #000 calc(100% - 26px), transparent 100%);
}
.ticker-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: ticker-run 42s linear infinite;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
@keyframes ticker-run {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - 6px)); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}
.win {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
}
.win-thumb {
  width: 34px; height: 34px;
  border-radius: 6px;
  flex-shrink: 0;
  background: linear-gradient(140deg, #3a1240, #7a2a18);
}
.win-thumb.t2 { background: linear-gradient(140deg, #102a35, #1d5a3a); }
.win-thumb.t3 { background: linear-gradient(140deg, #3a2410, #a06a12); }
.win-thumb.t4 { background: linear-gradient(140deg, #3a1020, #8a1030); }
.win-thumb.t5 { background: linear-gradient(140deg, #10233a, #1a4a7a); }
.win-name { font-size: 12px; color: var(--txt-mid); line-height: 1.3; }
.win-sum  { font-size: 13px; font-weight: 700; color: var(--green); line-height: 1.3; }
.ticker-close {
  position: absolute;
  right: 16px;
  background: none;
  border: none;
  color: var(--txt-dim);
  font-size: 19px;
  cursor: pointer;
  line-height: 1;
}
.ticker-close:hover { color: var(--txt); }

.footer {
  border-top: 1px solid var(--line);
  background: var(--bg-elev);
  padding: 26px;
  margin-top: auto;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.footer-links { display: flex; flex-wrap: wrap; gap: 17px; }
.footer-links a { font-size: 13px; color: var(--txt-mid); }
.footer-links a:hover { color: var(--txt); }
.age {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--txt-dim);
}
.age-badge {
  border: 2px solid var(--red);
  color: var(--red);
  border-radius: 50%;
  width: 35px; height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
}
.footer-legal {
  margin-top: 15px;
  font-size: 12px;
  color: var(--txt-dim);
  line-height: 1.5;
}

.burger { display: none; }
.nav-backdrop { display: none; }

@media (max-width: 1180px) {
  .matches { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1080px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  }

@media (max-width: 860px) {
  .sidebar { display: none; }
  .ticker { left: 0; }
  .banners { grid-template-columns: 1fr; }
  .matches { grid-template-columns: 1fr; }
  .topnav { gap: 2px; overflow-x: auto; }
  .topnav a { font-size: 15px; padding: 8px 12px; gap: 7px; }
  .tn-ico { font-size: 14px; width: 16px; }
  .content { padding: 16px 16px calc(var(--ticker-h) + 24px); }
  h1 { font-size: 24px; }
  .section-center h2 { font-size: 28px; }
    }

.topbar-logo { display: none; }
.topbar-logo img { display: block; height: 30px; width: auto; }

@media (max-width: 620px) {
  .banner-cta { font-size: 10px; padding: 7px 12px; left: 5%; bottom: 4.5%; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }

  .grid-4 { grid-template-columns: 1fr 1fr; gap: 12px; }
  .section-center .sub::before, .section-center .sub::after { width: 34px; }
  .age { margin-left: 0; }

  .topbar { position: sticky; flex-wrap: wrap; gap: 10px 8px; padding: 10px 10px; }
  .topbar-logo { display: block; order: 1; flex: 0 0 auto; }
  .topbar-logo img { height: 26px; }



  .topbar .promo-copy { display: flex; order: 2; flex: 1 1 auto; min-width: 0; justify-content: center; margin-left: 12px; margin-right: 0; padding: 12px 14px; gap: 10px; }

  .topbar::after { content: ""; order: 3; flex: 0 0 100%; width: 100%; height: 0; margin: 0; }

  .burger {
    display: flex;
    order: 4;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0 11px;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 10px;
    cursor: pointer;
    flex-shrink: 0;
  }
  .burger span {
    display: block;
    height: 2px;
    background: var(--txt);
    border-radius: 2px;
    transition: transform .22s, opacity .22s;
  }
  body.nav-open .burger { border-color: var(--red); }
  body.nav-open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.nav-open .burger span:nth-child(2) { opacity: 0; }
  body.nav-open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .topbar-actions { order: 5; margin-left: auto; gap: 10px; flex: 1 1 auto; min-width: 0; }
  .topbar-actions .btn { flex: 1 1 0; font-size: 14px; padding: 13px 8px; letter-spacing: .3px; border-radius: 10px; }

  .topnav {
    position: absolute;
    top: 100%;
    left: 10px;
    right: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    padding: 0;
    margin-top: 6px;
    border-radius: 12px;
    background: var(--bg-elev);
    box-shadow: 0 10px 24px rgba(0,0,0,.4);
    transition: max-height .32s cubic-bezier(.22,.61,.36,1), opacity .22s ease, padding .3s ease;
    z-index: 40;
  }
  .topnav::-webkit-scrollbar { display: none; }
  body.nav-open .topnav {
    max-height: 62px;
    opacity: 1;
    pointer-events: auto;
    padding: 9px 10px;
    border: 1px solid var(--line);
  }
  .topnav a {
    flex-direction: row;
    justify-content: flex-start;
    gap: 7px;
    padding: 9px 12px;
    font-size: 14px;
    border-radius: 10px;
    text-align: left;
    flex-shrink: 0;

    opacity: 0;
    transform: translateX(-10px);
    transition: opacity .26s ease, transform .26s ease;
  }
  body.nav-open .topnav a { opacity: 1; transform: none; }
  body.nav-open .topnav a:nth-child(1) { transition-delay: .06s; }
  body.nav-open .topnav a:nth-child(2) { transition-delay: .12s; }
  body.nav-open .topnav a:nth-child(3) { transition-delay: .18s; }
  body.nav-open .topnav a:nth-child(4) { transition-delay: .24s; }
  body.nav-open .topnav a:nth-child(5) { transition-delay: .30s; }
  .tn-ico { font-size: 15px; width: auto; }

  .nav-backdrop { display: none; }
}

.post { margin-top: 30px; }
.post h1 { font-size: 27px; margin: 0 0 16px; }
.post h2 {
  font-size: 21px; line-height: 1.3; margin: 30px 0 12px;
  padding-top: 24px; border-top: 1px solid var(--line-soft); color: var(--txt);
}
.post h3 { font-size: 16px; margin: 22px 0 8px; color: var(--txt); }
.post p { color: var(--txt-mid); font-size: 15px; line-height: 1.7; margin: 0 0 14px; }
.post ul, .post ol { color: var(--txt-mid); font-size: 15px; line-height: 1.7;
  margin: 0 0 16px; padding-left: 22px; }
.post li { margin-bottom: 7px; }
.post li::marker { color: var(--gold); }
.post strong { color: var(--txt); }
.post a { color: var(--gold); text-decoration: none; border-bottom: 1px solid rgba(255,176,0,.35); }
.post a:hover { border-bottom-color: var(--gold); }
.post code { background: var(--bg-card-hi); padding: 2px 6px; border-radius: var(--radius-sm);
  font-size: 13.5px; color: var(--txt); }

.post .table-wrap { overflow-x: auto; margin: 0 0 20px; }
.post table { width: 100%; border-collapse: collapse; font-size: 14.5px;
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; }
.post th, .post td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--line-soft); }
.post th { background: var(--bg-card-hi); color: var(--txt); font-weight: 600; }
.post td { color: var(--txt-mid); }
.post tr:last-child td { border-bottom: 0; }

.post .editorial { margin-top: 26px; padding: 16px 20px; background: var(--bg-card);
  border-left: 2px solid var(--gold); border-radius: var(--radius-sm); }
.post .editorial p { font-size: 14px; margin-bottom: 8px; }
.post .editorial p:last-child { margin-bottom: 0; }
.post .editorial .editorial-date { font-size: 12px; font-weight: 600; letter-spacing: .3px;
  text-transform: uppercase; color: var(--txt-dim); margin-bottom: 12px; }

@media (max-width: 720px) {
  .post h1 { font-size: 22px; }
  .post h2 { font-size: 18px; }
  .post p, .post ul, .post ol { font-size: 14.5px; }
  .post th, .post td { padding: 10px 12px; }
}

.post figure { margin: 0 0 24px; text-align: center; }
.post figure img {
  display: block;
  margin: 0 auto;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 540px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-elev);
}
.post figcaption {
  margin-top: 9px;
  text-align: center;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--txt-dim);
}

@media (max-width: 720px) {
  .post figure { margin-bottom: 20px; }
  .post figure img { max-height: 360px; }
  .post figcaption { font-size: 13px; }
}

.tile-1 {
  background: linear-gradient(180deg, rgba(12,12,14,.15) 0%, rgba(12,12,14,.55) 52%, rgba(12,12,14,.93) 100%),
    url("img/tile-aviator.webp") center/cover no-repeat;
}
.tile-2 {
  background: linear-gradient(180deg, rgba(12,12,14,.15) 0%, rgba(12,12,14,.55) 52%, rgba(12,12,14,.93) 100%),
    url("img/tile-slotlar.webp?v=2") center/cover no-repeat;
}
.tile-4 {
  background: linear-gradient(180deg, rgba(12,12,14,.15) 0%, rgba(12,12,14,.55) 52%, rgba(12,12,14,.93) 100%),
    url("img/tile-sweet-bonanza.webp") center/cover no-repeat;
}
.tile-5 {
  background: linear-gradient(180deg, rgba(12,12,14,.15) 0%, rgba(12,12,14,.55) 52%, rgba(12,12,14,.93) 100%),
    url("img/tile-ruletka.webp") center/cover no-repeat;
}
.tile-6 {
  background: linear-gradient(180deg, rgba(12,12,14,.15) 0%, rgba(12,12,14,.55) 52%, rgba(12,12,14,.93) 100%),
    url("img/tile-tv-oyunlar.webp") center/cover no-repeat;
}
.tile-8 {
  background: linear-gradient(180deg, rgba(12,12,14,.15) 0%, rgba(12,12,14,.55) 52%, rgba(12,12,14,.93) 100%),
    url("img/tile-poker.webp") center/cover no-repeat;
}
.tile { text-shadow: 0 1px 3px rgba(0,0,0,.65); }
.tile-meta { color: rgba(255,255,255,.72); }

.form-card { position: relative; }
.form-card form { pointer-events: none; user-select: none; }
.card-ref {
  position: absolute;
  inset: 0;
  z-index: 5;
  border-radius: inherit;
  cursor: pointer;
}
.card-ref[aria-disabled="true"] { cursor: default; }

.promo-copy {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 14px;
  border-radius: 10px;
  background: rgba(255,176,0,.07);
  border: 1px dashed rgba(255,176,0,.45);
  color: var(--gold);
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .15s, border-color .15s, color .15s;
}
.promo-copy:hover { background: rgba(255,176,0,.14); border-color: var(--gold); }
.promo-copy-label {
  color: var(--txt-dim);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .2px;
}
.promo-copy-code { letter-spacing: 1.1px; font-size: 14px; }
.promo-copy-ico { font-size: 14px; opacity: .8; }
.promo-copy.is-copied {
  background: rgba(33,198,90,.12);
  border-color: var(--green);
  border-style: solid;
  color: var(--green);
}
.promo-copy.is-copied .promo-copy-code { letter-spacing: .2px; }

@media (min-width: 621px) {
  .topbar-actions { margin-left: 14px; }
}

@media (max-width: 1180px) {
  .promo-copy-label { display: none; }
  .promo-copy { padding: 9px 12px; }
}

@media (min-width: 621px) and (max-width: 860px) {
  .promo-copy { display: none; }
}

.post figure img.wide    { max-height: 460px; }
.post figure img.medium  { max-height: 520px; }
.post figure img.narrow  { max-height: 560px; }

@media (max-width: 720px) {
  .post figure img.wide   { max-height: 300px; }
  .post figure img.medium { max-height: 360px; }
  .post figure img.narrow { max-height: 400px; }
}

