
:root {
  --sh-bg: #0e0908;
  --sh-red: #8e1519;
  --sh-red-2: #d73530;
  --sh-green: #20b26b;
  --sh-gold: #f2c45c;
  --sh-yellow: #ffe66f;
  --sh-text: #fff7df;
  --sh-soft: #ead8c4;
  --sh-muted: #bba99a;
  --sh-panel: rgba(28, 11, 10, .9);
  --sh-panel-2: rgba(12, 8, 8, .94);
  --sh-line: rgba(242, 196, 92, .27);
  --sh-shadow: 0 26px 70px rgba(0, 0, 0, .38);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.shbet-site {
  margin: 0;
  color: var(--sh-text);
  background:
    radial-gradient(circle at 14% 0%, rgba(242, 196, 92, .16), transparent 28rem),
    radial-gradient(circle at 82% 10%, rgba(215, 53, 48, .24), transparent 34rem),
    radial-gradient(circle at 72% 52%, rgba(32, 178, 107, .09), transparent 28rem),
    linear-gradient(145deg, #0e0908 0%, #260b0e 48%, #0b0707 100%);
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  line-height: 1.62;
  overflow-x: hidden;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.sh-shell { width: min(1180px, calc(100% - 36px)); margin: 0 auto; }
.sh-topbar {
  background: rgba(5, 4, 4, .92);
  border-bottom: 1px solid rgba(242, 196, 92, .16);
  color: var(--sh-soft);
  font-size: 13px;
}
.sh-topbar .sh-shell { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.sh-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(14, 9, 8, .88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(242, 196, 92, .2);
}
.sh-header-inner { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.sh-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; min-width: max-content; }
.sh-logo-mark {
  width: 50px; height: 50px; border-radius: 14px;
  background: linear-gradient(135deg, #ffe66f, #e88f2b 55%, #b9151c);
  color: #170705; display: grid; place-items: center; font-weight: 900; font-size: 19px;
  box-shadow: 0 12px 28px rgba(242, 196, 92, .24);
}
.sh-logo-text strong { display: block; font-size: 30px; line-height: 1; color: var(--sh-yellow); }
.sh-logo-text span { display: block; font-size: 11px; color: var(--sh-muted); letter-spacing: 1.6px; text-transform: uppercase; }
.sh-nav { display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; }
.sh-nav a { text-decoration: none; color: var(--sh-soft); padding: 9px 12px; border-radius: 999px; font-size: 14px; font-weight: 800; }
.sh-nav a:hover { background: rgba(242, 196, 92, .12); color: var(--sh-yellow); }
.sh-actions { display: flex; gap: 10px; align-items: center; }
.sh-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 12px; padding: 12px 18px; text-decoration: none; font-weight: 900; line-height: 1; border: 1px solid transparent;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.sh-btn:hover { transform: translateY(-2px); }
.sh-btn.primary { color: #170705; background: linear-gradient(135deg, var(--sh-yellow), #eea635); box-shadow: 0 18px 34px rgba(242, 196, 92, .22); }
.sh-btn.red { color: #fff; background: linear-gradient(135deg, var(--sh-red-2), #8e1519); box-shadow: 0 18px 34px rgba(215, 53, 48, .2); }
.sh-btn.dark { color: var(--sh-yellow); border-color: rgba(242, 196, 92, .42); background: rgba(0, 0, 0, .24); }
.sh-hero { padding: 24px 0 34px; }
.sh-alert {
  display: flex; align-items: center; justify-content: center; gap: 10px; text-align: center;
  min-height: 42px; padding: 9px 16px; border-radius: 999px; margin-bottom: 20px;
  border: 1px solid rgba(242, 196, 92, .4);
  background: linear-gradient(90deg, rgba(242, 196, 92, .16), rgba(215, 53, 48, .08), rgba(32, 178, 107, .08));
  color: #fff4c4; font-size: 14px; font-weight: 900;
}
.sh-hero-grid { display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(360px, .97fr); gap: 22px; align-items: stretch; }
.sh-hero-copy {
  min-height: 535px; border-radius: 18px; padding: 38px;
  background: linear-gradient(180deg, rgba(43, 13, 12, .95), rgba(13, 8, 8, .94));
  border: 1px solid var(--sh-line); box-shadow: var(--sh-shadow); position: relative; overflow: hidden;
}
.sh-hero-copy::after { content: ""; position: absolute; right: -90px; bottom: -110px; width: 260px; height: 260px; border-radius: 50%; background: rgba(215, 53, 48, .13); }
.sh-kicker { margin: 0 0 16px; color: var(--sh-gold); font-weight: 900; letter-spacing: 1.4px; text-transform: uppercase; font-size: 13px; }
.sh-hero h1 { margin: 0; max-width: 760px; font-size: clamp(38px, 5vw, 64px); line-height: 1.03; letter-spacing: -1px; color: #fff9df; }
.sh-hero-text { margin: 22px 0 0; max-width: 660px; color: var(--sh-soft); font-size: 18px; }
.sh-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.sh-proof-grid { margin-top: 28px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.sh-proof { border: 1px dashed rgba(242, 196, 92, .28); background: rgba(0, 0, 0, .24); border-radius: 14px; padding: 13px 14px; }
.sh-proof strong { display: block; color: var(--sh-yellow); font-size: 15px; }
.sh-proof span { display: block; color: var(--sh-muted); font-size: 13px; margin-top: 2px; }
.sh-hero-media {
  min-height: 535px; border-radius: 18px; border: 1px solid var(--sh-line); overflow: hidden; position: relative;
  background: linear-gradient(180deg, rgba(84, 18, 16, .44), rgba(0, 0, 0, .92)); box-shadow: var(--sh-shadow);
}
.sh-hero-media img { width: 100%; height: 100%; object-fit: cover; min-height: 535px; }
.sh-hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 32%, rgba(14, 9, 8, .84)); pointer-events: none; }
.sh-media-card {
  position: absolute; left: 18px; right: 18px; bottom: 18px; z-index: 2; border-radius: 16px; padding: 16px;
  background: rgba(7, 5, 5, .78); border: 1px solid rgba(242, 196, 92, .32); backdrop-filter: blur(12px);
}
.sh-media-card h2 { margin: 0; font-size: 22px; color: var(--sh-yellow); }
.sh-media-card p { margin: 6px 0 0; color: var(--sh-soft); font-size: 14px; }
.sh-section { padding: 36px 0; }
.sh-section.alt { background: rgba(0, 0, 0, .18); border-top: 1px solid rgba(242, 196, 92, .08); border-bottom: 1px solid rgba(242, 196, 92, .08); }
.sh-section-head { display: flex; align-items: end; justify-content: space-between; gap: 18px; margin-bottom: 18px; }
.sh-section h2 { margin: 0; font-size: clamp(28px, 3vw, 42px); line-height: 1.1; color: #fff7d7; }
.sh-section p.lead { margin: 8px 0 0; color: var(--sh-muted); max-width: 700px; }
.sh-quick-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 10px; }
.sh-quick-grid a {
  min-height: 88px; display: flex; flex-direction: column; justify-content: center; gap: 4px; text-decoration: none;
  padding: 14px; border: 1px solid rgba(242, 196, 92, .28); border-radius: 16px; background: rgba(24, 9, 8, .82);
}
.sh-quick-grid strong { color: var(--sh-yellow); font-size: 16px; }
.sh-quick-grid span { color: var(--sh-muted); font-size: 12px; }
.sh-feature-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.sh-feature {
  min-height: 184px; padding: 18px; border-radius: 18px; border: 1px solid rgba(242, 196, 92, .24);
  background: linear-gradient(180deg, rgba(46, 13, 12, .88), rgba(13, 8, 8, .94)); position: relative; overflow: hidden;
}
.sh-feature::before { content: ""; position: absolute; width: 86px; height: 86px; border-radius: 22px; right: -24px; top: -22px; background: rgba(242, 196, 92, .08); transform: rotate(24deg); }
.sh-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; background: rgba(242, 196, 92, .14); color: var(--sh-yellow); margin-bottom: 14px; }
.sh-icon svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 2; }
.sh-feature h3 { margin: 0; color: #fff4c6; font-size: 18px; }
.sh-feature p { margin: 8px 0 0; color: var(--sh-muted); font-size: 14px; }
.sh-content-band { display: grid; grid-template-columns: minmax(0, .98fr) minmax(320px, .52fr); gap: 22px; align-items: start; }
.sh-guide, .sh-promo, .sh-faq-item, .sh-article-shell, .sh-sidebar-card {
  border: 1px solid rgba(242, 196, 92, .24); background: rgba(19, 8, 8, .88); border-radius: 18px; box-shadow: 0 18px 42px rgba(0,0,0,.22);
}
.sh-guide { padding: 24px; }
.sh-guide h3, .sh-promo h3 { margin: 0; color: var(--sh-yellow); font-size: 24px; }
.sh-guide p { color: var(--sh-soft); }
.sh-guide-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 18px; }
.sh-guide-list div { padding: 14px; border-radius: 14px; background: rgba(255,255,255,.04); border: 1px solid rgba(242, 196, 92, .12); }
.sh-guide-list strong { color: #fff4c6; }
.sh-guide-list span { display: block; margin-top: 4px; color: var(--sh-muted); font-size: 13px; }
.sh-promo { padding: 24px; background: linear-gradient(160deg, rgba(242, 196, 92, .15), rgba(215, 53, 48, .11) 46%, rgba(13, 8, 8, .95)); }
.sh-promo .big { margin: 16px 0 8px; font-size: 54px; line-height: 1; color: var(--sh-yellow); font-weight: 900; }
.sh-promo ul { margin: 18px 0 0; padding-left: 20px; color: var(--sh-soft); }
.sh-article-grid, .sh-preview-list { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.sh-news-card {
  display: flex; flex-direction: column; min-height: 260px; text-decoration: none; overflow: hidden;
  border-radius: 16px; border: 1px solid rgba(242, 196, 92, .24); background: rgba(18, 8, 8, .9);
}
.sh-news-thumb { min-height: 116px; background: linear-gradient(135deg, rgba(242,196,92,.28), rgba(215,53,48,.22)), radial-gradient(circle at 82% 20%, rgba(32,178,107,.2), transparent 42%); border-bottom: 1px solid rgba(242, 196, 92, .16); }
.sh-news-body { padding: 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.sh-news-card h3 { margin: 0; color: #fff4c6; font-size: 18px; line-height: 1.32; }
.sh-news-card p { margin: 0; color: var(--sh-muted); font-size: 14px; }
.sh-news-meta { margin-top: auto; color: var(--sh-gold); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.sh-faq { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.sh-faq-item { padding: 18px; }
.sh-faq-item h3 { margin: 0; color: var(--sh-yellow); font-size: 18px; }
.sh-faq-item p { margin: 8px 0 0; color: var(--sh-muted); }
.sh-footer { margin-top: 26px; padding: 34px 0 22px; background: rgba(5, 4, 4, .88); border-top: 1px solid rgba(242, 196, 92, .2); }
.sh-footer-grid { display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 22px; }
.sh-footer h3 { color: var(--sh-yellow); margin: 0 0 10px; }
.sh-footer p, .sh-footer a, .sh-footer li { color: var(--sh-muted); font-size: 14px; text-decoration: none; }
.sh-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 7px; }
.sh-copy { margin-top: 22px; padding-top: 14px; border-top: 1px solid rgba(242, 196, 92, .12); color: #8f8075; font-size: 13px; }
.sh-article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 22px; align-items: start; padding: 36px 0; }
.sh-article-shell { padding: 34px; }
.sh-article-shell h1 { margin: 0; color: #fff6d6; font-size: clamp(32px, 4vw, 52px); line-height: 1.08; }
.sh-article-meta { margin: 12px 0 22px; color: var(--sh-gold); font-weight: 900; font-size: 13px; text-transform: uppercase; }
.sh-article-body { color: var(--sh-soft); font-size: 17px; }
.sh-article-body h2, .sh-article-body h3 { color: var(--sh-yellow); line-height: 1.2; margin-top: 28px; }
.sh-article-body a { color: var(--sh-yellow); }
.sh-sidebar { display: grid; gap: 14px; position: sticky; top: 98px; }
.sh-sidebar-card { padding: 20px; }
.sh-sidebar-card h3 { margin: 0 0 10px; color: var(--sh-yellow); }
.sh-sidebar-card p, .sh-sidebar-card li { color: var(--sh-muted); font-size: 14px; }
.sh-sidebar-card ul { padding-left: 18px; margin: 10px 0 0; }
@media (max-width: 1100px) {
  .sh-header-inner { flex-wrap: wrap; padding: 12px 0; }
  .sh-nav { order: 3; width: 100%; justify-content: flex-start; }
  .sh-hero-grid, .sh-content-band, .sh-article-layout { grid-template-columns: 1fr; }
  .sh-hero-copy, .sh-hero-media, .sh-hero-media img { min-height: auto; }
  .sh-feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sh-quick-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .sh-article-grid, .sh-preview-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sh-sidebar { position: static; }
}
@media (max-width: 720px) {
  .sh-shell { width: min(100% - 24px, 1180px); }
  .sh-topbar .sh-shell, .sh-section-head { align-items: flex-start; flex-direction: column; }
  .sh-actions { width: 100%; }
  .sh-actions .sh-btn { flex: 1; }
  .sh-nav { gap: 4px; }
  .sh-nav a { padding: 8px 9px; font-size: 12px; }
  .sh-hero { padding-top: 16px; }
  .sh-hero-copy, .sh-article-shell { padding: 24px; }
  .sh-hero h1 { font-size: 40px; letter-spacing: -.4px; }
  .sh-proof-grid, .sh-guide-list, .sh-faq, .sh-feature-grid, .sh-quick-grid, .sh-article-grid, .sh-preview-list, .sh-footer-grid { grid-template-columns: 1fr; }
  .sh-quick-grid a { min-height: 70px; }
}
