@font-face {
  font-family: 'Bebas Neue';
  src: url('/assets/fonts/bebas-neue-latin.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url('/assets/fonts/manrope-latin.woff2') format('woff2-variations'),
       url('/assets/fonts/manrope-latin.woff2') format('woff2');
  font-weight: 200 900;
  font-style: normal;
  font-display: swap;
}
:root {
  --shk-brand-900: #195a38;
  --shk-brand-1000: #0a3b21;
  --shk-brand-800: #146737;
  --shk-brand-700: #108e3a;
  --shk-brand-600: #47bb29;
  --shk-brand-500: #64bd20;
  --shk-brand-300: #36ff61;
  --shk-brand-200: #87ae79;

  --shk-yellow-200: #fff17f;
  --shk-yellow-300: #fee923;
  --shk-yellow-400: #f4c016;
  --shk-yellow-450: #ffa800;
  --shk-yellow-500: #e8940e;
  --shk-yellow-100: #f9efc8;
  --shk-yellow-160: #ead0a2;
  --shk-yellow-50:  #faf3e2;

  --shk-red-500: #ff5620;
  --shk-red-700: #9a3f19;

  --shk-text:        #f9efc8;
  --shk-text-soft:   #ead0a2;
  --shk-text-mute:   rgba(249, 239, 200, 0.55);

  --shk-grad-yellow: linear-gradient(180deg, #fff17f 0%, #f4c016 60%, #e8940e 100%);
  --shk-grad-brand:  linear-gradient(180deg, #47bb29 0%, #108e3a 50%, #146737 100%);
  --shk-grad-banner: radial-gradient(120% 70% at 100% 55%, #195a38 0%, #195a38 24%, #108e3a 40%, #0a3b21 100%);

  --shk-shadow-card: 0 8px 22px rgba(10, 59, 33, 0.45);
  --shk-shadow-y:    0 4px 0 #9a3f19, 0 8px 18px rgba(154, 63, 25, 0.4);

  --shk-radius:      14px;
  --shk-radius-sm:   8px;
  --shk-radius-lg:   18px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  background: var(--shk-brand-1000);
  color: var(--shk-text);
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin: 0;
  line-height: 1;
  color: var(--shk-yellow-100);
  text-transform: uppercase;
}
p { margin: 0 0 1em; }

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(circle at 15% 10%, rgba(71, 187, 41, 0.07), transparent 45%),
    radial-gradient(circle at 85% 30%, rgba(244, 192, 22, 0.05), transparent 50%);
}

/* === LAYOUT === */
.shk-wrap { width: 100%; max-width: 1320px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.shk-skip { position: absolute; left: -9999px; }
.shk-skip:focus { left: 8px; top: 8px; background: var(--shk-yellow-400); color: var(--shk-brand-900); padding: 8px 14px; border-radius: 4px; font-weight: 700; }

/* === BUTTONS (relief glossy casino style) === */
.shk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 26px;
  min-height: 48px;
  border-radius: 10px;
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-weight: 400;
  font-size: 17px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
  border: none;
  cursor: pointer;
  position: relative;
  isolation: isolate;
}
.shk-btn--y {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.45) 0%, rgba(255,255,255,0) 50%),
    linear-gradient(180deg, #fff17f 0%, #f4c016 45%, #e8940e 100%);
  color: #5a2c0c;
  border: 1px solid rgba(255, 248, 200, 0.6);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.85),
    inset 0 -3px 0 rgba(154, 63, 25, 0.25),
    0 4px 0 #9a3f19,
    0 8px 16px rgba(154, 63, 25, 0.4);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
}
.shk-btn--y:hover { transform: translateY(-2px); filter: brightness(1.06); }
.shk-btn--y:active { transform: translateY(2px); box-shadow: inset 0 1px 0 rgba(255,255,255,0.85), 0 2px 0 #9a3f19, 0 4px 8px rgba(154, 63, 25, 0.4); }
.shk-btn--g {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0) 50%),
    linear-gradient(180deg, #47bb29 0%, #108e3a 50%, #146737 100%);
  color: #f9efc8;
  border: 1px solid rgba(135, 174, 121, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.3),
    inset 0 -3px 0 rgba(10, 59, 33, 0.5),
    0 4px 0 #0a3b21,
    0 8px 18px rgba(10, 59, 33, 0.5);
  text-shadow: 0 1px 0 rgba(10, 59, 33, 0.6);
}
.shk-btn--g:hover { transform: translateY(-2px); filter: brightness(1.1); }
.shk-btn--ghost {
  background: rgba(10, 59, 33, 0.4);
  color: var(--shk-yellow-100);
  border: 1.5px solid rgba(244, 192, 22, 0.35);
  min-height: 48px;
}
.shk-btn--ghost:hover { background: rgba(244, 192, 22, 0.1); border-color: var(--shk-yellow-400); color: var(--shk-yellow-400); }
.shk-btn--lg { padding: 0 40px; min-height: 58px; font-size: 22px; }
.shk-btn--sm { padding: 0 18px; min-height: 38px; font-size: 14px; }

/* === HEADER === */
.shk-head {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 59, 33, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(244, 192, 22, 0.15);
}
.shk-head__bar {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 64px;
}
.shk-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 26px;
  color: var(--shk-yellow-400);
  letter-spacing: 0.05em;
  text-shadow: 0 2px 0 rgba(10, 59, 33, 0.8);
  flex-shrink: 0;
}
.shk-logo__crest {
  width: 42px;
  height: 42px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(6, 36, 20, 0.5));
}
.shk-search {
  flex: 1;
  max-width: 420px;
  position: relative;
  margin: 0 auto;
}
.shk-search input {
  width: 100%;
  background: rgba(249, 239, 200, 0.06);
  border: 1px solid rgba(244, 192, 22, 0.18);
  color: var(--shk-text);
  padding: 11px 16px 11px 42px;
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  outline: none;
}
.shk-search input::placeholder { color: rgba(249, 239, 200, 0.5); }
.shk-search::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f4c016' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='m21 21-4.3-4.3'/%3E%3C/svg%3E") no-repeat center / contain;
}
.shk-head__actions { display: flex; gap: 10px; margin-left: auto; }
.shk-burger {
  display: none;
  background: transparent;
  border: 1.5px solid rgba(244, 192, 22, 0.25);
  border-radius: 10px;
  width: 40px;
  height: 40px;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 4px;
}
.shk-burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--shk-yellow-400);
  border-radius: 2px;
  position: relative;
}
.shk-burger span::before, .shk-burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--shk-yellow-400);
  border-radius: 2px;
}
.shk-burger span::before { top: -7px; }
.shk-burger span::after { top: 7px; }
.shk-drawer { display: none; padding: 20px 0; border-top: 1px solid rgba(244, 192, 22, 0.12); }
.shk-head--open .shk-drawer { display: block; }
.shk-head--open .shk-drawer .shk-nav__list { flex-direction: column; align-items: flex-start; gap: 6px; }

/* === SIDEBAR GAUCHE (fixed left, vertical) === */
:root { --shk-sidebar-w: 88px; }
.shk-sidebar {
  position: fixed;
  left: 0;
  top: 64px;
  bottom: 0;
  width: var(--shk-sidebar-w);
  background: linear-gradient(180deg, var(--shk-brand-1000) 0%, #08311b 100%);
  border-right: 1px solid rgba(244, 192, 22, 0.12);
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 90;
  padding: 10px 6px 80px;
  scrollbar-width: thin;
  scrollbar-color: rgba(244, 192, 22, 0.2) transparent;
}
.shk-sidebar::-webkit-scrollbar { width: 4px; }
.shk-sidebar::-webkit-scrollbar-thumb { background: rgba(244, 192, 22, 0.2); border-radius: 2px; }
.shk-sidebar__list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.shk-sidebar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 10px 4px 12px;
  border-radius: 10px;
  color: var(--shk-text-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.15;
  position: relative;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.shk-sidebar__item:hover {
  color: var(--shk-yellow-300);
  background: rgba(244, 192, 22, 0.06);
}
.shk-sidebar__item--active {
  color: var(--shk-yellow-400);
  background: rgba(244, 192, 22, 0.1);
}
.shk-sidebar__item--active::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 14px;
  bottom: 14px;
  width: 3px;
  background: var(--shk-grad-yellow);
  border-radius: 0 3px 3px 0;
  box-shadow: 0 0 8px rgba(244, 192, 22, 0.55);
}
.shk-sidebar__icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 2px 0 rgba(10, 59, 33, 0.5));
}
.shk-sidebar__icon svg {
  width: 30px;
  height: 30px;
  fill: url(#shkGold);
  stroke: #5a2c0c;
  stroke-width: 0.5;
}
.shk-sidebar__sep {
  height: 1px;
  background: rgba(244, 192, 22, 0.1);
  margin: 8px 4px;
}
.shk-sidebar__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 85;
  backdrop-filter: blur(2px);
}

/* Main wrap pushed right by sidebar width */
main { padding-left: var(--shk-sidebar-w); }
.shk-foot { padding-left: var(--shk-sidebar-w); }

/* === HERO BANNER (image plein cadre, ratio panoramique 3.2/1) === */
.shk-hero {
  position: relative;
  margin: 16px 0 0;
  overflow: hidden;
  border-radius: 18px;
  background: var(--shk-brand-1000);
  isolation: isolate;
  width: 100%;
  aspect-ratio: 3.2 / 1;
  max-height: 360px;
}
.shk-hero__inner {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
  padding: 22px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  max-width: 50%;
}
.shk-hero__cta { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 2px; }
.shk-hero__copy { position: relative; z-index: 2; }
.shk-hero__tag { display: none; }
.shk-hero__title {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-weight: 400;
  font-size: clamp(26px, 3.2vw, 42px);
  letter-spacing: 0.05em;
  color: #ffffff;
  text-transform: uppercase;
  margin: 0;
  line-height: 0.95;
  text-shadow: 0 3px 0 rgba(6, 36, 20, 0.9), 0 0 18px rgba(6, 36, 20, 0.6);
}
.shk-hero__title-accent {
  display: block;
  color: var(--shk-yellow-400);
  text-shadow: 0 3px 0 rgba(154, 63, 25, 0.6), 0 0 18px rgba(6, 36, 20, 0.7);
}
.shk-hero__bonus {
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.shk-hero__bonus-lbl {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: clamp(14px, 1.4vw, 18px);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--shk-yellow-100);
  margin: 0;
  opacity: 0.92;
  text-shadow: 0 2px 0 rgba(6, 36, 20, 0.6);
}
.shk-hero__bonus-main {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: clamp(26px, 3.6vw, 44px);
  font-weight: 400;
  line-height: 0.95;
  background: var(--shk-grad-yellow);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 0 rgba(154, 63, 25, 0.55));
  margin: 0;
  letter-spacing: 0.02em;
}
.shk-hero__bonus-extra {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(13px, 1.2vw, 16px);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--shk-yellow-300);
  text-shadow: 0 2px 0 rgba(6, 36, 20, 0.5);
}
.shk-hero__lede { display: none; }
.shk-hero__art {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.shk-hero__art picture, .shk-hero__art img {
  width: 100%;
  height: 100%;
  display: block;
}
.shk-hero__art img {
  object-fit: cover;
  object-position: center top;
}
.shk-hero__art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 36, 20, 0.92) 0%, rgba(6, 36, 20, 0.7) 25%, rgba(6, 36, 20, 0.3) 42%, transparent 55%);
  pointer-events: none;
}
.shk-hero__leaves { display: none; }
.shk-hero__dots {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 3;
}
.shk-hero__dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(249, 239, 200, 0.3);
  transition: all 0.2s ease;
}
.shk-hero__dots span.active {
  width: 28px;
  border-radius: 4px;
  background: var(--shk-grad-yellow);
  box-shadow: 0 0 8px rgba(244, 192, 22, 0.5);
}
.shk-hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(10, 59, 33, 0.6);
  border: 1px solid rgba(244, 192, 22, 0.3);
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--shk-yellow-400);
  z-index: 3;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.shk-hero:hover .shk-hero__arrow { opacity: 1; }
.shk-hero__arrow--prev { left: 14px; }
.shk-hero__arrow--next { right: 14px; }

/* === GAMES SECTIONS === */
.shk-section { padding: 48px 0; }
.shk-section--shaded { background: rgba(10, 59, 33, 0.55); }
.shk-section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 20px;
  flex-wrap: wrap;
}
.shk-section__head h2 {
  font-size: clamp(26px, 3vw, 38px);
  color: var(--shk-yellow-100);
}
.shk-section__head a {
  font-size: 14px;
  font-weight: 700;
  color: var(--shk-yellow-400);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.shk-section__head a::after { content: "→"; transition: transform 0.2s ease; }
.shk-section__head a:hover::after { transform: translateX(4px); }
.shk-section__sub {
  color: var(--shk-text-soft);
  font-size: 15px;
  max-width: 700px;
  margin-bottom: 30px;
}

.shk-grid {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 4px 0 12px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.shk-grid::-webkit-scrollbar { display: none; }
.shk-grid--lg { gap: 14px; }
.shk-tile {
  flex: 0 0 auto;
  width: 180px;
  position: relative;
  aspect-ratio: 2 / 3;
  border-radius: 6px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--shk-brand-800), var(--shk-brand-1000));
  box-shadow: 0 4px 12px rgba(10, 59, 33, 0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: block;
  scroll-snap-align: start;
}
.shk-grid--lg .shk-tile { width: 200px; }
.shk-tile:hover { transform: translateY(-4px); box-shadow: 0 10px 22px rgba(10, 59, 33, 0.7); }
.shk-tile img { width: 100%; height: 100%; object-fit: cover; }
.shk-tile__rank {
  position: absolute;
  top: 8px;
  left: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.4), transparent 50%),
    var(--shk-grad-yellow);
  color: #5a2c0c;
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 14px;
  font-weight: 400;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 0 var(--shk-red-700);
}
.shk-tile__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10, 59, 33, 0.92) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 10px 10px;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.shk-tile:hover .shk-tile__overlay { opacity: 1; }
.shk-tile__name {
  color: var(--shk-yellow-100);
  font-weight: 700;
  font-size: 12px;
  margin: 0 0 2px;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}
.shk-tile__house {
  color: var(--shk-text-soft);
  font-size: 10px;
  margin: 0;
  font-weight: 500;
}
.shk-tile__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(25, 90, 56, 0.75);
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 2;
}
.shk-tile:hover .shk-tile__play { opacity: 1; }
.shk-tile__play span {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.4), transparent 50%),
    var(--shk-grad-yellow);
  color: #5a2c0c;
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 15px;
  padding: 8px 20px;
  border-radius: 100px;
  letter-spacing: 0.08em;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.8),
    0 3px 0 var(--shk-red-700);
  border: 1px solid rgba(255,255,255,0.4);
}

/* === PROVIDERS / TRIBE === */
.shk-tribe {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.shk-tribe__chip {
  display: grid;
  place-items: center;
  height: 88px;
  background: rgba(20, 103, 55, 0.5);
  border: 1px solid rgba(244, 192, 22, 0.15);
  border-radius: var(--shk-radius);
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 19px;
  letter-spacing: 0.05em;
  color: var(--shk-yellow-100);
  padding: 0 14px;
  text-align: center;
  transition: all 0.2s ease;
}
.shk-tribe__chip:hover {
  background: rgba(244, 192, 22, 0.08);
  border-color: var(--shk-yellow-400);
  color: var(--shk-yellow-400);
  transform: translateY(-3px);
}

/* === EXPEDITION BANNER === */
.shk-expedition {
  background: var(--shk-grad-banner);
  border: 2px solid rgba(244, 192, 22, 0.3);
  border-radius: var(--shk-radius-lg);
  padding: 56px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.shk-expedition::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(244, 192, 22, 0.2), transparent 70%);
  border-radius: 50%;
}
.shk-expedition__pin {
  font-size: 12px;
  letter-spacing: 0.2em;
  font-weight: 800;
  color: var(--shk-yellow-400);
  text-transform: uppercase;
  margin-bottom: 14px;
  position: relative;
}
.shk-expedition h2 {
  font-size: clamp(32px, 4.5vw, 56px);
  margin-bottom: 12px;
  position: relative;
}
.shk-expedition__pot {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  color: var(--shk-yellow-400);
  margin-bottom: 30px;
  letter-spacing: 0.04em;
  position: relative;
}

/* === WINNERS TABLE === */
/* === WINNERS LIVE FEED (ticker scroll infini avec images jeux) === */
.shk-feed {
  position: relative;
  overflow: hidden;
  border-radius: var(--shk-radius-lg);
  background:
    radial-gradient(80% 120% at 50% 50%, rgba(20, 103, 55, 0.45) 0%, rgba(8, 49, 27, 0.65) 100%);
  border: 1px solid rgba(244, 192, 22, 0.15);
  padding: 18px 0;
}
.shk-feed::before, .shk-feed::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 90px;
  z-index: 2;
  pointer-events: none;
}
.shk-feed::before { left: 0; background: linear-gradient(90deg, var(--shk-brand-1000), transparent); }
.shk-feed::after  { right: 0; background: linear-gradient(270deg, var(--shk-brand-1000), transparent); }
.shk-feed__track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: shk-marquee 60s linear infinite;
  padding: 0 6px;
}
.shk-feed:hover .shk-feed__track,
.shk-feed:focus-within .shk-feed__track { animation-play-state: paused; }
@keyframes shk-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.shk-win {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px 10px 10px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), transparent 50%),
    rgba(6, 36, 20, 0.65);
  border: 1px solid rgba(244, 192, 22, 0.18);
  border-radius: 14px;
  min-width: 320px;
  position: relative;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  text-decoration: none;
  color: inherit;
  isolation: isolate;
}
.shk-win:hover {
  transform: translateY(-3px);
  border-color: rgba(244, 192, 22, 0.5);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), transparent 50%),
    rgba(6, 36, 20, 0.88);
}
.shk-win__art {
  width: 58px;
  height: 58px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(180deg, var(--shk-brand-800), var(--shk-brand-1000));
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
}
.shk-win__art img { width: 100%; height: 100%; object-fit: cover; display: block; }
.shk-win__meta { display: flex; flex-direction: column; gap: 3px; flex: 1; min-width: 0; }
.shk-win__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
}
.shk-win__who {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 17px;
  color: var(--shk-yellow-100);
  letter-spacing: 0.06em;
  line-height: 1;
}
.shk-win__time {
  font-size: 10px;
  color: var(--shk-text-mute);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.shk-win__bot {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
}
.shk-win__game {
  font-size: 12px;
  color: var(--shk-text-soft);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 175px;
}
.shk-win__amount {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 22px;
  background: var(--shk-grad-yellow);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.03em;
  filter: drop-shadow(0 1px 0 rgba(154, 63, 25, 0.55));
  white-space: nowrap;
  line-height: 1;
}
.shk-win__amount--down {
  background: linear-gradient(180deg, #ffd1b3 0%, #ff5620 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.shk-win__pulse {
  position: absolute;
  top: 9px;
  right: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #36ff61;
  box-shadow: 0 0 0 0 rgba(54, 255, 97, 0.7);
  animation: shk-pulse 1.8s infinite;
}
@keyframes shk-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(54, 255, 97, 0.7); }
  70%  { box-shadow: 0 0 0 10px rgba(54, 255, 97, 0); }
  100% { box-shadow: 0 0 0 0 rgba(54, 255, 97, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .shk-feed__track { animation: none; }
  .shk-win__pulse { animation: none; box-shadow: 0 0 8px rgba(54, 255, 97, 0.6); }
}

/* === BONUS CARDS === */
.shk-bonus-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 22px;
  margin-bottom: 50px;
}
.shk-bonus-card {
  background: rgba(20, 103, 55, 0.55);
  border: 1px solid rgba(244, 192, 22, 0.18);
  border-radius: var(--shk-radius-lg);
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
}
.shk-bonus-card--lead {
  background: var(--shk-grad-banner);
  border-color: var(--shk-yellow-400);
  border-width: 2px;
}
.shk-bonus-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(244, 192, 22, 0.18), transparent 65%);
  border-radius: 50%;
}
.shk-bonus-card__rune {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: var(--shk-radius-sm);
  background: var(--shk-grad-yellow);
  color: var(--shk-brand-900);
  font-size: 28px;
  font-weight: 900;
  font-family: 'Bebas Neue', Impact, sans-serif;
  margin-bottom: 22px;
  box-shadow: 0 3px 0 var(--shk-red-700);
  position: relative;
}
.shk-bonus-card h3 {
  font-family: 'Manrope', sans-serif;
  text-transform: none;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--shk-text-soft);
  margin-bottom: 10px;
  font-weight: 700;
}
.shk-bonus-card__amt {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 36px;
  color: var(--shk-yellow-100);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
  line-height: 1;
  position: relative;
}
.shk-bonus-card p {
  font-size: 14px;
  color: var(--shk-text-soft);
  line-height: 1.6;
  margin: 0;
  position: relative;
}
.shk-bonus-essays {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-bottom: 40px;
}
.shk-bonus-essays h3 {
  font-size: 24px;
  margin-bottom: 14px;
  color: var(--shk-yellow-400);
}
.shk-bonus-essays p {
  color: var(--shk-text-soft);
  font-size: 15px;
  line-height: 1.7;
}
.shk-center { text-align: center; }

/* === PAYMENTS === */
.shk-pay-panel {
  background: rgba(20, 103, 55, 0.5);
  border: 1px solid rgba(244, 192, 22, 0.15);
  border-radius: var(--shk-radius-lg);
  padding: 36px;
  margin-bottom: 26px;
}
.shk-pay-panel__title {
  font-size: 28px;
  margin-bottom: 8px;
  color: var(--shk-yellow-400);
  display: flex;
  align-items: center;
  gap: 14px;
}
.shk-pay-panel__title::before {
  content: "";
  width: 7px;
  height: 30px;
  background: var(--shk-grad-yellow);
  border-radius: 3px;
}
.shk-pay-panel__lede {
  color: var(--shk-text-soft);
  font-size: 14px;
  margin-bottom: 22px;
}
.shk-pay-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1fr 1.3fr;
  border: 1px solid rgba(244, 192, 22, 0.1);
  border-radius: var(--shk-radius-sm);
  overflow: hidden;
}
.shk-pay-cell {
  padding: 13px 18px;
  font-size: 14px;
  border-bottom: 1px solid rgba(244, 192, 22, 0.08);
  color: var(--shk-yellow-100);
}
.shk-pay-cell--h {
  background: rgba(10, 59, 33, 0.6);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--shk-yellow-400);
}
.shk-pay-grid > .shk-pay-cell:nth-last-child(-n+4) { border-bottom: none; }

/* === VIP / PACT === */
.shk-tiers {
  background: rgba(20, 103, 55, 0.5);
  border: 1px solid rgba(244, 192, 22, 0.15);
  border-radius: var(--shk-radius-lg);
  overflow: hidden;
  margin-bottom: 36px;
}
.shk-tiers__row {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr 1.2fr;
  padding: 18px 24px;
  align-items: center;
  border-bottom: 1px solid rgba(244, 192, 22, 0.08);
  font-size: 14px;
  color: var(--shk-yellow-100);
}
.shk-tiers__row:last-child { border-bottom: none; }
.shk-tiers__row--head {
  background: rgba(10, 59, 33, 0.7);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--shk-yellow-400);
}
.shk-tiers__tier {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 22px;
  color: var(--shk-yellow-400);
  letter-spacing: 0.04em;
}
.shk-perks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 36px;
}
.shk-perk {
  background: rgba(20, 103, 55, 0.4);
  border: 1px solid rgba(244, 192, 22, 0.12);
  border-radius: var(--shk-radius);
  padding: 26px;
}
.shk-perk__mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: var(--shk-radius-sm);
  background: var(--shk-grad-yellow);
  color: var(--shk-brand-900);
  font-size: 22px;
  margin-bottom: 14px;
  box-shadow: 0 3px 0 var(--shk-red-700);
}
.shk-perk h3 {
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--shk-yellow-100);
}
.shk-perk p {
  color: var(--shk-text-soft);
  font-size: 14px;
  margin: 0;
}

/* === FEATURES / COMPASS === */
.shk-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.shk-feature {
  background: rgba(20, 103, 55, 0.5);
  border: 1px solid rgba(244, 192, 22, 0.12);
  border-radius: var(--shk-radius);
  padding: 28px 24px;
}
.shk-feature__ico {
  width: 52px;
  height: 52px;
  border-radius: var(--shk-radius-sm);
  background: var(--shk-grad-yellow);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  box-shadow: 0 3px 0 var(--shk-red-700);
}
.shk-feature__ico svg { width: 26px; height: 26px; color: var(--shk-brand-900); }
.shk-feature h3 {
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--shk-yellow-100);
}
.shk-feature p {
  color: var(--shk-text-soft);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

/* === REVIEW / CHRONICLE === */
.shk-review {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 36px;
  align-items: start;
}
.shk-review__body p {
  color: var(--shk-text);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 18px;
}
.shk-review__body strong { color: var(--shk-yellow-400); font-weight: 800; }
.shk-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 24px;
  background: rgba(20, 103, 55, 0.45);
  border: 1px solid rgba(244, 192, 22, 0.12);
  border-radius: var(--shk-radius);
  padding: 28px;
}
.shk-pros-cons h3 {
  font-size: 22px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(244, 192, 22, 0.15);
}
.shk-pros h3 { color: var(--shk-brand-300); }
.shk-cons h3 { color: var(--shk-yellow-450); }
.shk-pros-cons ul li {
  font-size: 14px;
  padding: 6px 0 6px 24px;
  position: relative;
  color: var(--shk-text);
  line-height: 1.5;
}
.shk-pros ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 5px;
  color: var(--shk-brand-300);
  font-weight: 900;
  font-size: 16px;
}
.shk-cons ul li::before {
  content: "!";
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  background: rgba(255, 168, 0, 0.18);
  color: var(--shk-yellow-400);
  border-radius: 50%;
  font-weight: 900;
  font-size: 11px;
  display: grid;
  place-items: center;
}
.shk-specs {
  background: rgba(20, 103, 55, 0.6);
  border: 2px solid rgba(244, 192, 22, 0.3);
  border-radius: var(--shk-radius-lg);
  padding: 28px;
  position: sticky;
  top: 180px;
}
.shk-specs h3 {
  font-size: 26px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(244, 192, 22, 0.15);
  color: var(--shk-yellow-400);
}
.shk-specs__row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 14px;
  border-bottom: 1px dashed rgba(244, 192, 22, 0.1);
}
.shk-specs__row:last-child { border-bottom: none; }
.shk-specs__row > span:first-child { color: var(--shk-text-mute); }
.shk-specs__row > span:last-child { color: var(--shk-yellow-100); font-weight: 700; }
.shk-specs__row--ok span:last-child { color: var(--shk-brand-300); }

/* === TESTIMONIALS === */
.shk-voices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.shk-voice {
  background: rgba(20, 103, 55, 0.5);
  border: 1px solid rgba(244, 192, 22, 0.12);
  border-radius: var(--shk-radius);
  padding: 24px;
  position: relative;
}
.shk-voice::before {
  content: "\201C";
  position: absolute;
  top: 8px;
  right: 22px;
  font-family: Georgia, serif;
  font-size: 60px;
  color: rgba(244, 192, 22, 0.25);
  line-height: 1;
}
.shk-voice__who { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.shk-voice__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--shk-grad-yellow);
  display: grid;
  place-items: center;
  color: var(--shk-brand-900);
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 22px;
  letter-spacing: 0.02em;
}
.shk-voice__name { font-weight: 700; color: var(--shk-yellow-100); font-size: 15px; margin: 0; }
.shk-voice__since { font-size: 12px; color: var(--shk-text-mute); }
.shk-voice__stars { color: var(--shk-yellow-400); font-size: 15px; margin-bottom: 10px; letter-spacing: 2px; }
.shk-voice__quote {
  color: var(--shk-text);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

/* === STEPS === */
.shk-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.shk-step {
  background: rgba(20, 103, 55, 0.5);
  border: 1px solid rgba(244, 192, 22, 0.12);
  border-radius: var(--shk-radius);
  padding: 28px 24px;
}
.shk-step__num {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 64px;
  background: var(--shk-grad-yellow);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 0.9;
  margin-bottom: 12px;
  display: block;
  filter: drop-shadow(0 3px 0 rgba(154, 63, 25, 0.4));
}
.shk-step p {
  color: var(--shk-text);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

/* === FINAL CTA === */
.shk-finale {
  background: var(--shk-grad-banner);
  border-radius: var(--shk-radius-lg);
  padding: 70px 40px;
  text-align: center;
  border: 2px solid rgba(244, 192, 22, 0.3);
  position: relative;
  overflow: hidden;
}
.shk-finale::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(244, 192, 22, 0.18), transparent 60%);
}
.shk-finale h2 {
  font-size: clamp(36px, 5vw, 60px);
  margin-bottom: 18px;
  position: relative;
}
.shk-finale p {
  color: var(--shk-text);
  font-size: 17px;
  max-width: 620px;
  margin: 0 auto 30px;
  position: relative;
}

/* === FAQ === */
.shk-faq__list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.shk-faq__item {
  background: rgba(20, 103, 55, 0.45);
  border: 1px solid rgba(244, 192, 22, 0.12);
  border-radius: var(--shk-radius);
  overflow: hidden;
}
.shk-faq__item summary {
  cursor: pointer;
  padding: 22px 26px;
  font-weight: 700;
  font-size: 18px;
  color: var(--shk-yellow-100);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: 'Bebas Neue', Impact, sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.shk-faq__item summary::-webkit-details-marker { display: none; }
.shk-faq__item summary::after {
  content: "+";
  font-family: 'Manrope', sans-serif;
  font-size: 28px;
  color: var(--shk-yellow-400);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.shk-faq__item[open] summary::after { transform: rotate(45deg); }
.shk-faq__body {
  padding: 0 26px 22px;
  color: var(--shk-text);
  font-size: 15px;
  line-height: 1.7;
}
.shk-faq__body strong { color: var(--shk-yellow-400); }

/* === RESPONSIBLE === */
.shk-charter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: rgba(20, 103, 55, 0.5);
  border: 1px solid rgba(244, 192, 22, 0.15);
  border-radius: var(--shk-radius-lg);
  padding: 44px;
}
.shk-charter h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  margin-bottom: 18px;
  color: var(--shk-yellow-100);
}
.shk-charter__tag {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--shk-yellow-400);
  margin-bottom: 10px;
}
.shk-charter__left p {
  color: var(--shk-text);
  font-size: 15px;
  line-height: 1.7;
}
.shk-helplines {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}
.shk-helpline {
  padding: 18px 22px;
  background: rgba(10, 59, 33, 0.7);
  border-radius: var(--shk-radius-sm);
  border-left: 4px solid var(--shk-yellow-400);
}
.shk-helpline strong {
  display: block;
  color: var(--shk-yellow-100);
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 22px;
  letter-spacing: 0.03em;
  margin-bottom: 4px;
}
.shk-helpline span {
  display: block;
  font-size: 19px;
  color: var(--shk-yellow-400);
  font-weight: 700;
  font-family: 'Bebas Neue', Impact, sans-serif;
  letter-spacing: 0.05em;
}
.shk-helpline em {
  font-style: normal;
  font-size: 12px;
  color: var(--shk-text-mute);
}
.shk-age {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: rgba(244, 192, 22, 0.08);
  border-radius: var(--shk-radius-sm);
}
.shk-age__chip {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 2px solid var(--shk-yellow-400);
  border-radius: 50%;
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 18px;
  color: var(--shk-yellow-400);
  flex-shrink: 0;
  letter-spacing: 0.05em;
}
.shk-age p {
  margin: 0;
  font-size: 13px;
  color: var(--shk-text-soft);
  line-height: 1.5;
}

/* === FOOTER === */
.shk-foot {
  background: #07291a;
  padding: 60px 0 30px;
  border-top: 2px solid rgba(244, 192, 22, 0.15);
}
.shk-foot__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 40px;
}
.shk-foot__pitch {
  color: var(--shk-text-soft);
  font-size: 14px;
  line-height: 1.6;
  margin-top: 18px;
}
.shk-foot__title {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 20px;
  color: var(--shk-yellow-400);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.shk-foot__col ul li { padding: 5px 0; }
.shk-foot__col ul a {
  color: var(--shk-text-soft);
  font-size: 14px;
  transition: color 0.15s ease;
}
.shk-foot__col ul a:hover { color: var(--shk-yellow-400); }
.shk-foot__pay {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.shk-pill {
  background: rgba(244, 192, 22, 0.08);
  border: 1px solid rgba(244, 192, 22, 0.18);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 12px;
  color: var(--shk-yellow-100);
  font-weight: 700;
}
.shk-foot__honors {
  display: flex;
  gap: 14px;
  justify-content: center;
  padding: 24px 0;
  border-top: 1px solid rgba(244, 192, 22, 0.08);
  border-bottom: 1px solid rgba(244, 192, 22, 0.08);
  flex-wrap: wrap;
}
.shk-honor {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--shk-yellow-400);
  padding: 8px 16px;
  border: 1px solid rgba(244, 192, 22, 0.25);
  border-radius: 100px;
}
.shk-foot__legal {
  padding-top: 24px;
  font-size: 12px;
  color: var(--shk-text-mute);
  line-height: 1.6;
}
.shk-foot__legal p { margin: 0 0 8px; }

/* === RESPONSIVE === */
@media (max-width: 1180px) {
  .shk-tribe { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 1024px) {
  .shk-hero { aspect-ratio: auto; min-height: 420px; max-height: none; }
  .shk-hero__inner { padding: 20px 24px; max-width: 100%; gap: 12px; justify-content: flex-end; }
  .shk-hero__art img { object-position: 60% center; }
  .shk-hero__art::after { background: linear-gradient(0deg, rgba(6, 36, 20, 0.96) 0%, rgba(6, 36, 20, 0.7) 35%, rgba(6, 36, 20, 0.15) 60%, transparent 80%); }
  .shk-bonus-grid { grid-template-columns: 1fr; }
  .shk-perks { grid-template-columns: 1fr; }
  .shk-features { grid-template-columns: repeat(2, 1fr); }
  .shk-review { grid-template-columns: 1fr; }
  .shk-specs { position: static; }
  .shk-voices { grid-template-columns: repeat(2, 1fr); }
  .shk-steps { grid-template-columns: repeat(2, 1fr); }
  .shk-charter { grid-template-columns: 1fr; padding: 32px; gap: 30px; }
  .shk-foot__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
  main, .shk-foot { padding-left: 0; }
  .shk-sidebar {
    transform: translateX(-100%);
    width: 230px;
    padding: 16px 12px 80px;
    transition: transform 0.25s ease;
  }
  .shk-sidebar--open { transform: translateX(0); box-shadow: 0 0 30px rgba(0,0,0,0.4); }
  .shk-sidebar--open ~ .shk-sidebar__overlay { display: block; }
  .shk-sidebar__list { gap: 4px; }
  .shk-sidebar__item {
    flex-direction: row;
    justify-content: flex-start;
    gap: 14px;
    padding: 12px 16px;
    font-size: 13px;
    text-align: left;
  }
  .shk-sidebar__item--active::before { left: -12px; }
  .shk-burger { display: inline-flex !important; }
}
@media (max-width: 768px) {
  .shk-search { display: none; }
  .shk-head__actions .shk-btn { display: none; }
  .shk-head--open .shk-drawer .shk-btn { display: flex; width: 100%; margin-top: 8px; }
  .shk-hero { aspect-ratio: auto; min-height: 460px; max-height: none; }
  .shk-hero__inner { padding: 18px 20px 22px; gap: 10px; }
  .shk-tile { width: 140px; }
  .shk-grid--lg .shk-tile { width: 150px; }
  .shk-tribe {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 130px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 8px;
    gap: 10px;
  }
  .shk-tribe::-webkit-scrollbar { display: none; }
  .shk-tribe__chip { height: 64px; font-size: 14px; }
  .shk-feed::before, .shk-feed::after { width: 30px; }
  .shk-feed__track { animation-duration: 40s; }
  .shk-win { min-width: 280px; padding: 8px 14px 8px 8px; }
  .shk-win__art { width: 50px; height: 50px; }
  .shk-win__amount { font-size: 20px; }
  .shk-win__who { font-size: 16px; }
  .shk-pay-grid { grid-template-columns: 1fr; }
  .shk-pay-cell--h:not(:first-child) { display: none; }
  .shk-tiers__row { grid-template-columns: 1fr 1fr; padding: 14px 16px; gap: 6px; }
  .shk-tiers__row > span:nth-child(4) { display: none; }
  .shk-tiers__row--head > span:nth-child(4) { display: none; }
  .shk-bonus-grid { grid-template-columns: 1fr !important; }
  .shk-bonus-essays { grid-template-columns: 1fr !important; gap: 24px; }
  .shk-perks { grid-template-columns: 1fr !important; }
  .shk-features { grid-template-columns: 1fr !important; }
  .shk-pros-cons { grid-template-columns: 1fr !important; }
  .shk-voices { grid-template-columns: 1fr !important; }
  .shk-steps { grid-template-columns: 1fr !important; }
  .shk-review { grid-template-columns: 1fr !important; }
  .shk-charter { grid-template-columns: 1fr !important; }
  .shk-foot__grid { grid-template-columns: 1fr !important; gap: 28px; }
  .shk-finale { padding: 50px 24px; }
  .shk-expedition__panel { padding: 40px 20px; }
  .shk-wrap { padding: 0 16px; }
}

/* ====================== PAGE BONUS ====================== */
.shk-bonus-hero {
  position: relative;
  background:
    radial-gradient(60% 100% at 50% 50%, rgba(244, 192, 22, 0.15), transparent 65%),
    radial-gradient(80% 100% at 100% 100%, rgba(238, 108, 47, 0.18), transparent 55%),
    linear-gradient(135deg, rgba(20, 103, 55, 0.75), rgba(8, 49, 27, 0.92));
  border: 2px solid rgba(244, 192, 22, 0.35);
  border-radius: 24px;
  padding: 50px 50px 44px;
  overflow: hidden;
  text-align: center;
}
.shk-bonus-hero__copy { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }
.shk-bonus-hero__tag {
  display: inline-block;
  background: rgba(244, 192, 22, 0.16);
  border: 1px solid rgba(244, 192, 22, 0.45);
  color: var(--shk-yellow-300);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.shk-bonus-hero__title {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: clamp(24px, 2.6vw, 32px);
  color: var(--shk-yellow-100);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 6px;
}
.shk-bonus-hero__main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin: 0 0 14px;
}
.shk-bonus-hero__pct {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 0.9;
  background: var(--shk-grad-yellow);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 0 rgba(154, 63, 25, 0.5));
  letter-spacing: 0.02em;
}
.shk-bonus-hero__upto {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  color: var(--shk-text-soft);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-top: 4px;
}
.shk-bonus-hero__amount {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: clamp(36px, 4.2vw, 56px);
  color: var(--shk-yellow-100);
  letter-spacing: 0.03em;
  line-height: 1;
  text-shadow: 0 3px 0 rgba(6, 36, 20, 0.6);
}
.shk-bonus-hero__extra {
  font-size: 15px;
  color: var(--shk-yellow-300);
  font-weight: 600;
  margin: 0 0 22px;
}
.shk-bonus-hero__list {
  list-style: none;
  padding: 0;
  margin: 0 auto 28px;
  max-width: 540px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  text-align: left;
}
.shk-bonus-hero__list li {
  position: relative;
  padding-left: 22px;
  font-size: 13px;
  color: var(--shk-text-soft);
}
.shk-bonus-hero__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 5px;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--shk-yellow-400);
  border-bottom: 2px solid var(--shk-yellow-400);
  transform: rotate(-45deg);
}
.shk-bonus-hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.shk-bonus-hero__coin {
  position: absolute;
  border-radius: 50%;
  background: var(--shk-grad-yellow);
  box-shadow:
    inset 0 -4px 0 rgba(154, 63, 25, 0.5),
    inset 0 3px 0 rgba(255, 255, 255, 0.65),
    0 6px 14px rgba(0, 0, 0, 0.35);
  pointer-events: none;
  z-index: 1;
  animation: shk-coin-float 5s ease-in-out infinite;
}
.shk-bonus-hero__coin--top-l { width: 56px; height: 56px; top: -18px;    left: 6%;   animation-delay: 0s;   opacity: 0.7; }
.shk-bonus-hero__coin--top-r { width: 42px; height: 42px; top: 12%;      right: 4%;  animation-delay: 1.2s; }
.shk-bonus-hero__coin--bot-l { width: 36px; height: 36px; bottom: 8%;    left: 5%;   animation-delay: 2.4s; opacity: 0.85; }
.shk-bonus-hero__coin--bot-r { width: 60px; height: 60px; bottom: -16px; right: 8%;  animation-delay: 3.2s; opacity: 0.6; }
@keyframes shk-coin-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-14px) rotate(10deg); }
}

/* ============== PROMO CARDS GRID ============== */
.shk-promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.shk-promo {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 40%),
    rgba(20, 103, 55, 0.5);
  border: 1px solid rgba(244, 192, 22, 0.18);
  border-radius: 18px;
  padding: 28px 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.shk-promo:hover {
  transform: translateY(-5px);
  border-color: rgba(244, 192, 22, 0.4);
}
.shk-promo__art {
  width: 84px;
  height: 84px;
  margin-bottom: 6px;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 4px 0 rgba(6, 36, 20, 0.4));
}
.shk-promo__art svg { width: 100%; height: 100%; }
.shk-promo__badge {
  display: inline-block;
  background: rgba(244, 192, 22, 0.18);
  border: 1px solid rgba(244, 192, 22, 0.4);
  color: var(--shk-yellow-300);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  width: max-content;
}
.shk-promo__badge--green { background: rgba(54, 255, 97, 0.12); border-color: rgba(54, 255, 97, 0.4); color: var(--shk-brand-300); }
.shk-promo__badge--fire  { background: rgba(238, 108, 47, 0.15); border-color: rgba(238, 108, 47, 0.4); color: #ff8a50; }
.shk-promo h3 {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 22px;
  color: var(--shk-yellow-100);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 4px 0 0;
}
.shk-promo__claim {
  font-size: 16px;
  color: var(--shk-yellow-300);
  font-weight: 600;
  margin: 0;
}
.shk-promo__claim strong {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 28px;
  font-weight: 400;
  background: var(--shk-grad-yellow);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.03em;
}
.shk-promo__desc {
  font-size: 13px;
  color: var(--shk-text-soft);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}
.shk-promo__cta {
  margin-top: 6px;
  color: var(--shk-yellow-400);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
}

/* ============== STUDIOS PAGE ============== */
.shk-studios-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.shk-studio {
  background: rgba(20, 103, 55, 0.5);
  border: 1px solid rgba(244, 192, 22, 0.15);
  border-radius: 18px;
  padding: 28px;
  transition: border-color 0.25s ease;
}
.shk-studio:hover { border-color: rgba(244, 192, 22, 0.4); }
.shk-studio__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.shk-studio__name {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 26px;
  color: var(--shk-yellow-400);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0;
}
.shk-studio__tag {
  background: rgba(244, 192, 22, 0.1);
  border: 1px solid rgba(244, 192, 22, 0.25);
  color: var(--shk-yellow-300);
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.shk-studio__desc {
  color: var(--shk-text-soft);
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 18px;
}
.shk-studio__games {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.shk-studio__game {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
}
.shk-studio__game:hover { transform: translateY(-3px); }
.shk-studio__game img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--shk-brand-800), var(--shk-brand-1000));
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.shk-studio__game span {
  font-size: 11px;
  color: var(--shk-text-soft);
  text-align: center;
  line-height: 1.3;
}

/* ============== SUPPORT PAGE ============== */
.shk-help-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.shk-help-card {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 35%),
    rgba(20, 103, 55, 0.5);
  border: 1px solid rgba(244, 192, 22, 0.18);
  border-radius: 18px;
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.25s ease;
}
.shk-help-card:hover { border-color: rgba(244, 192, 22, 0.4); }
.shk-help-card--primary {
  background:
    linear-gradient(180deg, rgba(244, 192, 22, 0.1), transparent 40%),
    rgba(20, 103, 55, 0.6);
  border-color: rgba(244, 192, 22, 0.4);
  border-width: 2px;
}
.shk-help-card__ico {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--shk-grad-yellow);
  color: var(--shk-brand-900);
  display: grid;
  place-items: center;
  margin-bottom: 8px;
  box-shadow: 0 4px 0 var(--shk-red-700);
}
.shk-help-card__ico svg { width: 28px; height: 28px; }
.shk-help-card__dot {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 14px;
  height: 14px;
  background: var(--shk-brand-300);
  border: 2px solid #08311b;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(54, 255, 97, 0.6);
  animation: shk-pulse 1.8s infinite;
}
.shk-help-card__tag {
  display: inline-block;
  background: rgba(244, 192, 22, 0.16);
  border: 1px solid rgba(244, 192, 22, 0.4);
  color: var(--shk-yellow-300);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  width: max-content;
}
.shk-help-card h3 {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 26px;
  color: var(--shk-yellow-100);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 4px 0 0;
}
.shk-help-card__delay {
  font-size: 13px;
  color: var(--shk-text-soft);
  margin: 0;
}
.shk-help-card__delay strong { color: var(--shk-yellow-300); }
.shk-help-card p:not(.shk-help-card__delay) {
  font-size: 14px;
  color: var(--shk-text-soft);
  line-height: 1.6;
  margin: 4px 0 16px;
  flex: 1;
}
.shk-help-card .shk-btn { align-self: flex-start; }

/* ============== RESPONSIVE OVERRIDES ============== */
@media (max-width: 1024px) {
  .shk-promo-grid { grid-template-columns: repeat(2, 1fr); }
  .shk-studios-grid { grid-template-columns: 1fr; }
  .shk-help-grid { grid-template-columns: 1fr; }
  .shk-bonus-hero { padding: 38px 28px; }
  .shk-bonus-hero__coin--top-l, .shk-bonus-hero__coin--bot-r { width: 44px; height: 44px; }
}
@media (max-width: 768px) {
  .shk-promo-grid { grid-template-columns: 1fr; }
  .shk-bonus-hero__list { grid-template-columns: 1fr; }
  .shk-studio__games { grid-template-columns: repeat(3, 1fr); }
}
