/* NanoMove — Danube Steel */
@font-face {
  font-family: 'Chivo';
  font-style: normal;
  font-weight: 100 900;
  font-display: optional;
  src: url('/assets/fonts/chivo-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Chivo';
  font-style: normal;
  font-weight: 100 900;
  font-display: optional;
  src: url('/assets/fonts/chivo-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Space Mono';
  font-style: normal;
  font-weight: 400;
  font-display: optional;
  src: url('/assets/fonts/space-mono-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Space Mono';
  font-style: normal;
  font-weight: 400;
  font-display: optional;
  src: url('/assets/fonts/space-mono-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Space Mono';
  font-style: normal;
  font-weight: 700;
  font-display: optional;
  src: url('/assets/fonts/space-mono-700-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Space Mono';
  font-style: normal;
  font-weight: 700;
  font-display: optional;
  src: url('/assets/fonts/space-mono-700-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --c-bg: #0E1620;
  --c-bg2: #121D2A;
  --c-panel: #16232F;
  --c-line: rgba(210, 228, 244, .1);
  --c-line2: rgba(210, 228, 244, .18);
  --c-amber: #FFB520;
  --c-amber2: #FF8A00;
  --c-grad: linear-gradient(120deg, #FFB520, #FF8A00);
  --c-text: #EAF2F8;
  --c-muted: #9FB2C2;
  --c-dim: #6E8296;
  --c-good: #4ADE80;
  --font-body: 'Chivo', 'Segoe UI', Arial, sans-serif;
  --font-mono: 'Space Mono', 'Courier New', monospace;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-snap: cubic-bezier(.34, 1.56, .64, 1);
  --r: 16px;
  --r-sm: 10px;
  --shadow: 0 18px 44px rgba(3, 8, 14, .45);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: clip; scroll-behavior: smooth; }
body {
  overflow-x: clip;
  width: 100%; max-width: 100%;
  min-height: 100vh;
  display: flex; flex-direction: column;
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
main { flex: 1; }
img, video { max-width: 100%; display: block; }
svg { max-width: 100%; }
a {
  color: var(--c-text); text-decoration: none;
  overflow-wrap: break-word; word-break: break-word;
  transition: color .25s var(--ease);
}
a:hover { color: var(--c-amber); }
h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word; word-break: break-word;
  line-height: 1.15; font-weight: 800; letter-spacing: -.01em;
}
ul, ol { list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
button, .btn, .nav a, .brand {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}
textarea { resize: none; }
[hidden] { display: none !important; }
.cselect__list, .chat-panel__log, .hm-sports__row, .ar-gallery__strip, .hd-city-list, .ar-prices__wrap, .bg-modal__scroll {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 181, 32, .55) #101B27;
}
.cselect__list::-webkit-scrollbar, .chat-panel__log::-webkit-scrollbar, .hm-sports__row::-webkit-scrollbar, .ar-gallery__strip::-webkit-scrollbar, .hd-city-list::-webkit-scrollbar, .ar-prices__wrap::-webkit-scrollbar, .bg-modal__scroll::-webkit-scrollbar { width: 8px; height: 8px; }
.cselect__list::-webkit-scrollbar-track, .chat-panel__log::-webkit-scrollbar-track, .hm-sports__row::-webkit-scrollbar-track, .ar-gallery__strip::-webkit-scrollbar-track, .hd-city-list::-webkit-scrollbar-track, .ar-prices__wrap::-webkit-scrollbar-track, .bg-modal__scroll::-webkit-scrollbar-track { background: #101B27; border-radius: 8px; }
.cselect__list::-webkit-scrollbar-thumb, .chat-panel__log::-webkit-scrollbar-thumb, .hm-sports__row::-webkit-scrollbar-thumb, .ar-gallery__strip::-webkit-scrollbar-thumb, .hd-city-list::-webkit-scrollbar-thumb, .ar-prices__wrap::-webkit-scrollbar-thumb, .bg-modal__scroll::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #FFB520, #FF8A00);
  border-radius: 8px;
  border: 2px solid #101B27;
}
.container { max-width: 1240px; margin: 0 auto; padding-inline: 24px; }
@media (max-width: 520px) { .container { padding-inline: 16px; } }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.num { font-family: var(--font-mono); font-weight: 700; letter-spacing: -.02em; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700; font-size: 16px;
  border: 1px solid transparent;
  transition: transform .3s var(--ease-snap), box-shadow .3s var(--ease), background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
  text-align: center;
}
.btn svg { width: 20px; height: 20px; flex: 0 0 auto; }
.btn--primary {
  background: var(--c-grad);
  color: #1A1104;
  box-shadow: 0 8px 26px rgba(255, 154, 16, .28);
}
.btn--primary:hover {
  color: #1A1104;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 34px rgba(255, 154, 16, .42);
}
.btn--ghost {
  background: rgba(234, 242, 248, .05);
  border-color: var(--c-line2);
  color: var(--c-text);
}
.btn--ghost:hover { border-color: var(--c-amber); color: var(--c-amber); background: rgba(255, 181, 32, .06); }
.btn:disabled { opacity: .45; cursor: not-allowed; transform: none; box-shadow: none; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 60;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(14, 22, 32, .78);
  border-bottom: 1px solid var(--c-line);
  overflow: visible;
}
.site-header__row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  padding-block: 12px;
}
.brand { display: flex; align-items: center; gap: 6px; font-weight: 900; font-size: 21px; letter-spacing: -.02em; flex-shrink: 0; }
.brand svg { width: 40px; height: 40px; }
.brand em { font-style: normal; color: var(--c-amber); }
.brand:hover { color: var(--c-text); }

.nav { display: flex; align-items: center; gap: 26px; }
.nav a {
  font-weight: 600; font-size: 15px; color: var(--c-muted);
  transition: color .25s var(--ease), text-shadow .25s var(--ease), transform .25s var(--ease);
}
.nav a:hover {
  color: var(--c-amber);
  text-shadow: 0 0 18px rgba(255, 181, 32, .65);
  transform: translateY(-1px);
}
.nav a.is-active { color: var(--c-text); text-shadow: 0 0 14px rgba(255, 181, 32, .5); }

.hd-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; position: relative; }

.hd-city {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid var(--c-line2);
  background: rgba(234, 242, 248, .04);
  font-size: 14px; font-weight: 600;
  transition: border-color .25s var(--ease), color .25s var(--ease);
  position: relative;
}
.hd-city:hover { border-color: var(--c-amber); color: var(--c-amber); }
.hd-city svg { width: 16px; height: 16px; }
.hd-city .hd-city__chev { width: 12px; height: 12px; transition: transform .25s var(--ease); }
.hd-city[aria-expanded="true"] .hd-city__chev { transform: rotate(180deg); }

.hd-city-list {
  position: absolute; top: calc(100% + 10px); right: 0;
  min-width: 190px;
  background: var(--c-panel);
  border: 1px solid var(--c-line2);
  border-radius: var(--r-sm);
  box-shadow: var(--shadow);
  padding: 8px;
  z-index: 90;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility 0s linear .25s;
}
.hd-city-list[data-open="true"] {
  opacity: 1; visibility: visible; transform: translateY(0);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility 0s linear 0s;
}
.hd-city-list button {
  display: block; width: 100%; text-align: left;
  padding: 9px 12px; border-radius: 8px;
  font-size: 14px; font-weight: 600; color: var(--c-muted);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.hd-city-list button:hover, .hd-city-list button.is-current { background: rgba(255, 181, 32, .1); color: var(--c-amber); }

.hd-search-btn {
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--c-line2);
  background: rgba(234, 242, 248, .04);
  color: var(--c-muted);
  transition: border-color .25s var(--ease), color .25s var(--ease), transform .3s var(--ease-snap);
}
.hd-search-btn:hover { border-color: var(--c-amber); color: var(--c-amber); transform: scale(1.06); }
.hd-search-btn svg { width: 19px; height: 19px; }

.hd-search {
  position: absolute; top: calc(100% + 12px); right: 0;
  width: min(430px, calc(100vw - 32px));
  background: var(--c-panel);
  border: 1px solid var(--c-line2);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  padding: 14px;
  z-index: 90;
  opacity: 0; visibility: hidden; transform: translateY(-8px) scale(.98);
  transition: opacity .28s var(--ease), transform .28s var(--ease), visibility 0s linear .28s;
}
.hd-search[data-open="true"] {
  opacity: 1; visibility: visible; transform: translateY(0) scale(1);
  transition: opacity .28s var(--ease), transform .28s var(--ease), visibility 0s linear 0s;
}
.hd-search__field {
  display: flex; align-items: center; gap: 10px;
  border: 1px solid var(--c-line2);
  border-radius: 999px;
  padding: 11px 16px;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.hd-search__field:focus-within { border-color: var(--c-amber); box-shadow: 0 0 0 3px rgba(255, 181, 32, .15); }
.hd-search__field svg { width: 18px; height: 18px; color: var(--c-dim); flex: 0 0 auto; }
.hd-search__field input {
  flex: 1; min-width: 0;
  background: none; border: none; outline: none;
  font-size: 15px; color: var(--c-text);
}
.hd-search__field input::placeholder { color: var(--c-dim); }
.hd-search__hint { padding: 12px 6px 2px; font-size: 13px; color: var(--c-dim); }
.hd-search__list { margin-top: 8px; }
.hd-search__list a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: var(--r-sm);
  font-size: 14px; font-weight: 600; color: var(--c-muted);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.hd-search__list a:hover { background: rgba(255, 181, 32, .09); color: var(--c-amber); }
.hd-search__list svg { width: 16px; height: 16px; flex: 0 0 auto; color: var(--c-dim); }
.hd-search__list mark { background: none; color: var(--c-amber); }

/* Burger */
.burger {
  display: none;
  width: 44px; height: 44px;
  position: relative;
  z-index: 110;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(234, 242, 248, .05);
  border: 1px solid var(--c-line);
}
.burger span {
  position: absolute;
  left: 12px; right: 12px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease), top .3s var(--ease);
}
.burger span:nth-child(1) { top: 15px; }
.burger span:nth-child(2) { top: 21px; }
.burger span:nth-child(3) { top: 27px; }
.burger[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

@media (max-width: 1220px) {
  .burger { display: block; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    width: 100%; max-width: 100vw;
    max-height: calc(100dvh - var(--header-offset, 64px));
    z-index: 100;
    display: flex; flex-direction: column; align-items: stretch; gap: 0;
    padding: 18px 24px 30px;
    background: linear-gradient(165deg, #101B27 0%, #0C141D 100%);
    border-top: 1px solid var(--c-line);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .4);
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateY(-12px);
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: transform .3s var(--ease), opacity .25s var(--ease), visibility 0s linear .3s;
  }
  .nav[data-open="true"] {
    transform: translateY(0);
    opacity: 1; visibility: visible; pointer-events: auto;
    transition: transform .3s var(--ease), opacity .25s var(--ease), visibility 0s linear 0s;
  }
  .nav a { width: 100%; padding: 15px 0; font-size: 21px; border-bottom: 1px solid var(--c-line); }
  .nav a:hover { transform: none; }
}

/* Section heading kit */
.sec-head { margin-bottom: 44px; }
.sec-head__idx {
  font-family: var(--font-mono); font-size: 14px; font-weight: 700;
  color: var(--c-amber);
  display: block; margin-bottom: 12px;
}
.sec-head h2 { font-size: clamp(28px, 4.4vw, 46px); }
.sec-head p { margin-top: 14px; color: var(--c-muted); font-size: 17px; }

/* Reveal */
.reveal { opacity: 0; translate: 0 26px; transition: opacity .8s var(--ease), translate .8s var(--ease); }
.reveal.is-in { opacity: 1; translate: 0 0; }
.reveal[data-d="1"] { transition-delay: .1s; }
.reveal[data-d="2"] { transition-delay: .2s; }
.reveal[data-d="3"] { transition-delay: .3s; }
.reveal[data-d="4"] { transition-delay: .4s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; translate: 0 0; transition: none; }
  html { scroll-behavior: auto; }
}

/* Forms */
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 13px; font-weight: 700; color: var(--c-muted); text-transform: uppercase; letter-spacing: .06em; }
.field input, .field textarea {
  width: 100%; min-width: 0;
  background: rgba(234, 242, 248, .04);
  border: 1px solid var(--c-line2);
  border-radius: var(--r-sm);
  padding: 13px 16px;
  font-size: 15px; color: var(--c-text);
  outline: none;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.field input:focus, .field textarea:focus { border-color: var(--c-amber); box-shadow: 0 0 0 3px rgba(255, 181, 32, .14); }
.field input::placeholder, .field textarea::placeholder { color: var(--c-dim); }

/* Custom select */
.cselect { position: relative; }
.cselect__btn {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  width: 100%;
  background: rgba(234, 242, 248, .04);
  border: 1px solid var(--c-line2);
  border-radius: var(--r-sm);
  padding: 13px 16px;
  font-size: 15px; font-weight: 600; color: var(--c-text);
  text-align: left;
  transition: border-color .25s var(--ease);
}
.cselect__btn:hover { border-color: var(--c-amber); }
.cselect__btn svg { width: 14px; height: 14px; flex: 0 0 auto; transition: transform .25s var(--ease); color: var(--c-dim); }
.cselect__btn[aria-expanded="true"] svg { transform: rotate(180deg); }
.cselect__list {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0;
  background: var(--c-panel);
  border: 1px solid var(--c-line2);
  border-radius: var(--r-sm);
  box-shadow: var(--shadow);
  padding: 6px;
  z-index: 40;
  max-height: 260px; overflow-y: auto;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility 0s linear .22s;
}
.cselect__list[data-open="true"] {
  opacity: 1; visibility: visible; transform: translateY(0);
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility 0s linear 0s;
}
.cselect__list button {
  display: block; width: 100%; text-align: left;
  padding: 10px 12px; border-radius: 8px;
  font-size: 14px; font-weight: 600; color: var(--c-muted);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.cselect__list button:hover, .cselect__list button.is-sel { background: rgba(255, 181, 32, .1); color: var(--c-amber); }

/* Stars */
.stars { position: relative; display: inline-block; width: max-content; line-height: 0; }
.stars__row { display: flex; gap: 2px; width: max-content; }
.stars__row svg { width: 15px; height: 15px; flex: 0 0 auto; color: rgba(234, 242, 248, .18); }
.stars__fill { position: absolute; top: 0; left: 0; height: 100%; overflow: hidden; }
.stars__fill svg { color: var(--c-amber); }

/* Footer — Scoreboard */
.sb-footer { margin-top: auto; background: #0A111A; border-top: 1px solid var(--c-line); }
.sb-footer__led {
  overflow: hidden;
  border-bottom: 1px solid var(--c-line);
  background: repeating-linear-gradient(90deg, rgba(255, 181, 32, .045) 0 3px, transparent 3px 6px), #0C141D;
  padding-block: 13px;
}
.sb-footer__track {
  display: flex; gap: 56px; width: max-content;
  animation: sbLed 34s linear infinite;
}
.sb-footer__track span {
  font-family: var(--font-mono); font-size: 14px; font-weight: 700;
  color: var(--c-amber);
  white-space: nowrap;
  text-shadow: 0 0 12px rgba(255, 181, 32, .5);
  display: inline-flex; align-items: center; gap: 56px;
}
.sb-footer__track span::after { content: '●'; font-size: 8px; color: rgba(255, 181, 32, .45); }
@keyframes sbLed { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .sb-footer__track { animation: none; } }

.sb-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-block: 52px;
}
.sb-footer__cell h3 {
  font-family: var(--font-mono); font-size: 13px; font-weight: 700;
  color: var(--c-dim); text-transform: uppercase; letter-spacing: .14em;
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 10px;
}
.sb-footer__cell h3::before { content: ''; width: 8px; height: 8px; border-radius: 2px; background: var(--c-grad); box-shadow: 0 0 10px rgba(255, 181, 32, .55); }
.sb-footer__brand .brand { margin-bottom: 16px; }
.sb-footer__brand p { color: var(--c-muted); font-size: 14px; max-width: 320px; }
.sb-footer__nav a, .sb-footer__legal a {
  display: block; padding: 6px 0;
  color: var(--c-muted); font-size: 15px; font-weight: 500;
}
.sb-footer__nav a:hover, .sb-footer__legal a:hover { color: var(--c-amber); }
.sb-footer__contact address { font-style: normal; color: var(--c-muted); font-size: 14px; line-height: 1.75; }
.sb-footer__contact a { color: var(--c-text); font-weight: 600; }
.sb-footer__contact a:hover { color: var(--c-amber); }
.sb-soc { display: flex; gap: 10px; margin-top: 18px; }
.sb-soc a {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px;
  border: 1px solid var(--c-line2);
  color: var(--c-muted);
  transition: border-color .25s var(--ease), color .25s var(--ease), transform .3s var(--ease-snap), box-shadow .3s var(--ease);
}
.sb-soc a:hover { border-color: var(--c-amber); color: var(--c-amber); transform: translateY(-3px); box-shadow: 0 8px 18px rgba(255, 181, 32, .18); }
.sb-soc svg { width: 18px; height: 18px; }

.sb-footer__base {
  border-top: 1px solid var(--c-line);
  padding-block: 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.sb-pay { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.sb-pay span {
  display: inline-flex; align-items: center; justify-content: center;
  height: 30px; padding-inline: 10px;
  border: 1px solid var(--c-line2); border-radius: 6px;
  background: rgba(234, 242, 248, .04);
}
.sb-pay svg { height: 14px; width: auto; }
.sb-footer__copy { color: var(--c-dim); font-size: 13px; }
.sb-footer__copy .num { color: var(--c-muted); }

@media (max-width: 1220px) {
  .sb-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .sb-footer__grid { grid-template-columns: 1fr; gap: 32px; padding-block: 40px; }
  .sb-footer__base { flex-direction: column; align-items: flex-start; }
}

/* Cookie */
.cookie {
  position: fixed; z-index: 120;
  left: 16px; right: 16px; bottom: 16px;
  margin-inline: auto;
  max-width: 560px;
  background: var(--c-panel);
  border: 1px solid var(--c-line2);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  padding: 20px 22px;
  transform: translateY(0);
  animation: cookieUp .6s var(--ease) both;
}
@keyframes cookieUp { from { transform: translateY(120%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.cookie h3 { font-size: 16px; margin-bottom: 6px; }
.cookie p { font-size: 13.5px; color: var(--c-muted); }
.cookie p a { color: var(--c-amber); }
.cookie__row { display: flex; gap: 10px; justify-content: flex-end; margin-top: 14px; flex-wrap: wrap; }
.cookie__row .btn { padding: 10px 20px; font-size: 14px; }

/* Toast */
.toast-wrap {
  position: fixed; inset: 0; z-index: 160;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  background: rgba(6, 10, 15, .6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0; visibility: hidden;
  transition: opacity .3s var(--ease), visibility 0s linear .3s;
}
.toast-wrap[data-open="true"] { opacity: 1; visibility: visible; transition: opacity .3s var(--ease), visibility 0s linear 0s; }
.toast {
  background: var(--c-panel);
  border: 1px solid var(--c-line2);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  padding: 30px 34px;
  text-align: center;
  max-width: 420px;
  transform: translateY(14px) scale(.96);
  transition: transform .35s var(--ease-snap);
}
.toast-wrap[data-open="true"] .toast { transform: none; }
.toast__icon {
  width: 56px; height: 56px; margin: 0 auto 14px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(74, 222, 128, .12);
  color: var(--c-good);
}
.toast__icon svg { width: 28px; height: 28px; }
.toast--err .toast__icon { background: rgba(248, 113, 113, .12); color: #F87171; }
.toast h3 { font-size: 19px; margin-bottom: 6px; }
.toast p { font-size: 14px; color: var(--c-muted); }

/* Chat */
.chat-toggle {
  position: fixed; z-index: 130;
  right: 20px; bottom: 20px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--c-grad);
  color: #1A1104;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(255, 154, 16, .4);
  transition: transform .35s var(--ease-snap), box-shadow .3s var(--ease);
}
.chat-toggle:hover { transform: scale(1.06); box-shadow: 0 14px 38px rgba(255, 154, 16, .55); }
.chat-toggle svg { width: 30px; height: 30px; }
.chat-toggle__dot {
  position: absolute; top: 3px; right: 3px;
  width: 13px; height: 13px; border-radius: 50%;
  background: var(--c-good);
  border: 2px solid #0E1620;
  animation: chatPulse 2.2s var(--ease) infinite;
}
@keyframes chatPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.25); } }
.chat-panel {
  position: fixed; z-index: 130;
  right: 20px; bottom: 92px;
  width: 360px; max-width: calc(100vw - 32px);
  height: 460px; max-height: calc(100dvh - 120px);
  background: var(--c-panel);
  border: 1px solid var(--c-line2);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  display: flex; flex-direction: column;
  overflow: hidden;
  opacity: 0; visibility: hidden; transform: translateY(16px) scale(.97);
  transition: opacity .3s var(--ease), transform .35s var(--ease-snap), visibility 0s linear .35s;
}
.chat-panel[data-open="true"] {
  opacity: 1; visibility: visible; transform: none;
  transition: opacity .3s var(--ease), transform .35s var(--ease-snap), visibility 0s linear 0s;
}
.chat-panel__head {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  background: rgba(255, 181, 32, .07);
  border-bottom: 1px solid var(--c-line);
}
.chat-panel__head img { width: 42px; height: 42px; border-radius: 50%; }
.chat-panel__who strong { display: block; font-size: 15px; }
.chat-panel__who span { font-size: 12.5px; color: var(--c-good); display: flex; align-items: center; gap: 5px; }
.chat-panel__who span::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--c-good); }
.chat-panel__close { margin-left: auto; color: var(--c-dim); width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; border-radius: 8px; transition: color .2s var(--ease), background .2s var(--ease); }
.chat-panel__close:hover { color: var(--c-text); background: rgba(234, 242, 248, .06); }
.chat-panel__close svg { width: 18px; height: 18px; }
.chat-panel__log { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.chat-msg { max-width: 82%; padding: 10px 14px; border-radius: 14px; font-size: 14px; line-height: 1.5; animation: msgIn .35s var(--ease) both; }
@keyframes msgIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.chat-msg--bot { align-self: flex-start; background: rgba(234, 242, 248, .06); border-bottom-left-radius: 4px; }
.chat-msg--user { align-self: flex-end; background: rgba(255, 181, 32, .16); color: var(--c-text); border-bottom-right-radius: 4px; }
.chat-msg--typing { display: flex; gap: 4px; align-items: center; padding-block: 14px; }
.chat-msg--typing i { width: 6px; height: 6px; border-radius: 50%; background: var(--c-dim); animation: typDot 1.1s infinite; }
.chat-msg--typing i:nth-child(2) { animation-delay: .18s; }
.chat-msg--typing i:nth-child(3) { animation-delay: .36s; }
@keyframes typDot { 0%, 60%, 100% { transform: translateY(0); opacity: .5; } 30% { transform: translateY(-5px); opacity: 1; } }
.chat-panel__form {
  display: flex; gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--c-line);
}
.chat-panel__form input {
  flex: 1; min-width: 0;
  background: rgba(234, 242, 248, .05);
  border: 1px solid var(--c-line2);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 14px; color: var(--c-text);
  outline: none;
  transition: border-color .25s var(--ease);
}
.chat-panel__form input:focus { border-color: var(--c-amber); }
.chat-panel__form button {
  width: 42px; height: 42px; flex: 0 0 auto;
  border-radius: 50%;
  background: var(--c-grad);
  color: #1A1104;
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s var(--ease-snap);
}
.chat-panel__form button:hover { transform: scale(1.08); }
.chat-panel__form button svg { width: 18px; height: 18px; }

/* ============ HOME ============ */
.hm-hero {
  position: relative; isolation: isolate;
  z-index: 5;
  padding-block: 104px 72px;
}
.hm-hero__media {
  position: absolute; inset: 0; z-index: -2;
  overflow: hidden;
  background: #0A0F16 url('/assets/img/hero/poster.avif') center/cover no-repeat;
}
.hm-hero__media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,22,32,.5) 0%, rgba(14,22,32,.25) 40%, rgba(14,22,32,.88) 88%, #0E1620 100%);
}
.hm-hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) { .hm-hero__video { display: none; } }
.hm-hero__inner { width: 100%; }
.hm-hero h1 {
  font-size: clamp(34px, 6vw, 68px);
  font-weight: 900;
  max-width: 20ch;
  animation: hmRise .9s var(--ease) both;
}
.hm-hero h1 span { color: var(--c-amber); text-shadow: 0 0 30px rgba(255, 181, 32, .4); }
.hm-hero__lead {
  margin-top: 18px;
  font-size: clamp(16px, 2vw, 19px);
  color: var(--c-muted);
  animation: hmRise .9s var(--ease) .12s both;
}
@keyframes hmRise {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: none; }
}
.hm-dock {
  position: relative; z-index: 20;
  margin-top: 34px;
  display: flex; gap: 12px;
  background: rgba(16, 26, 37, .82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--c-line2);
  border-radius: 20px;
  padding: 12px;
  box-shadow: var(--shadow);
  animation: hmRise .9s var(--ease) .24s both;
}
.hm-dock__field {
  flex: 1.6; min-width: 0;
  display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--c-line2);
  border-radius: 14px;
  padding: 0 16px;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.hm-dock__field:focus-within { border-color: var(--c-amber); box-shadow: 0 0 0 3px rgba(255, 181, 32, .14); }
.hm-dock__field svg { width: 19px; height: 19px; color: var(--c-dim); flex: 0 0 auto; }
.hm-dock__field input {
  flex: 1; min-width: 0;
  background: none; border: none; outline: none;
  font-size: 16px; color: var(--c-text);
  padding-block: 15px;
}
.hm-dock__field input::placeholder { color: var(--c-dim); }
.hm-dock__sport { flex: 1; min-width: 0; }
.hm-dock__sport .cselect__btn { border-radius: 14px; height: 100%; }
.hm-dock__go { flex: 0 0 auto; border-radius: 14px; }
.hm-hero__sports {
  margin-top: 22px;
  display: flex; flex-wrap: wrap; gap: 10px 22px;
  animation: hmRise .9s var(--ease) .36s both;
}
.hm-hero__sports a {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14.5px; font-weight: 600; color: var(--c-muted);
  padding: 6px 2px;
}
.hm-hero__sports a:hover { color: var(--c-amber); }
.hm-hero__sports svg { width: 20px; height: 20px; }

.hm-sports { padding-block: 96px 40px; }
.hm-sports__row {
  display: flex; gap: 16px;
  overflow-x: auto;
  padding-top: 10px;
  padding-bottom: 14px;
}
.hm-sports__card {
  flex: 0 0 200px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 8px;
  padding: 24px 22px;
  background: var(--c-bg2);
  border: 1px solid var(--c-line);
  border-radius: var(--r);
  transition: transform .35s var(--ease-snap), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.hm-sports__card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 181, 32, .5);
  box-shadow: 0 16px 34px rgba(3, 8, 14, .5), 0 0 0 1px rgba(255, 181, 32, .2);
  color: var(--c-text);
}
.hm-sports__card svg { width: 34px; height: 34px; color: var(--c-amber); margin-bottom: 6px; transition: transform .35s var(--ease-snap); }
.hm-sports__card:hover svg { transform: rotate(-8deg) scale(1.12); }
.hm-sports__card strong { font-size: 17px; }
.hm-sports__card .num { font-size: 13px; color: var(--c-dim); font-weight: 400; }

.hm-how { padding-block: 72px; }
.hm-how__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.hm-how__step {
  position: relative;
  padding: 28px 24px 26px;
  background: var(--c-bg2);
  border: 1px solid var(--c-line);
  border-radius: var(--r);
  overflow: hidden;
}
.hm-how__step::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--c-grad);
  transform: scaleY(0); transform-origin: top;
  transition: transform .5s var(--ease);
}
.hm-how__step:hover::before { transform: scaleY(1); }
.hm-how__num {
  position: absolute; top: 14px; right: 18px;
  font-size: 44px; color: rgba(255, 181, 32, .13);
}
.hm-how__step > svg { width: 30px; height: 30px; color: var(--c-amber); margin-bottom: 16px; }
.hm-how__step h3 { font-size: 18px; margin-bottom: 10px; }
.hm-how__step p { font-size: 14.5px; color: var(--c-muted); }

.hm-top { padding-block: 72px; }
.hm-top__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.hm-top__card {
  background: var(--c-bg2);
  border: 1px solid var(--c-line);
  border-radius: var(--r);
  overflow: hidden;
  transition: transform .35s var(--ease-snap), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.hm-top__card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 181, 32, .45);
  box-shadow: 0 20px 44px rgba(3, 8, 14, .55);
}
.hm-top__card img { width: 100%; height: auto; aspect-ratio: 800 / 520; object-fit: cover; transition: transform .6s var(--ease); }
.hm-top__card:hover img { transform: scale(1.045); }
.hm-top__body { padding: 20px 22px 22px; }
.hm-top__meta { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.hm-top__meta > svg { width: 22px; height: 22px; color: var(--c-amber); flex: 0 0 auto; }
.hm-top__meta .num { font-size: 13px; color: var(--c-muted); margin-left: auto; }
.hm-top__body h3 { font-size: 19px; margin-bottom: 4px; }
.hm-top__body > p { font-size: 14px; color: var(--c-dim); }
.hm-top__foot {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  margin-top: 18px; padding-top: 16px;
  border-top: 1px solid var(--c-line);
  flex-wrap: wrap;
}
.hm-top__foot .num { font-size: 15px; color: var(--c-amber); }
.hm-top__foot .btn { padding: 10px 20px; font-size: 14px; }
.hm-top__more { margin-top: 36px; text-align: center; }

.hm-stats { padding-block: 30px; }
.hm-stats__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--c-line2);
  border-radius: var(--r);
  background:
    radial-gradient(600px 200px at 20% 0%, rgba(255, 181, 32, .07), transparent),
    var(--c-bg2);
  overflow: hidden;
}
.hm-stats__item { padding: 44px 30px; text-align: center; }
.hm-stats__item + .hm-stats__item { border-left: 1px solid var(--c-line); }
.hm-stats__item strong {
  display: block;
  font-size: clamp(36px, 5vw, 56px);
  color: var(--c-amber);
  text-shadow: 0 0 26px rgba(255, 181, 32, .35);
}
.hm-stats__item span { color: var(--c-muted); font-size: 15px; }

.hm-reviews { padding-block: 88px 72px; }
.hm-reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.hm-reviews__card {
  background: var(--c-bg2);
  border: 1px solid var(--c-line);
  border-radius: var(--r);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .35s var(--ease-snap), border-color .3s var(--ease);
}
.hm-reviews__card:hover { transform: translateY(-5px); border-color: rgba(255, 181, 32, .4); }
.hm-reviews__card img { width: 100%; height: auto; aspect-ratio: 800 / 600; object-fit: cover; }
.hm-reviews__card blockquote { padding: 22px 24px 0; flex: 1; }
.hm-reviews__card blockquote p { font-size: 15px; color: var(--c-text); }
.hm-reviews__card figcaption { padding: 16px 24px 24px; }
.hm-reviews__card figcaption strong { display: block; font-size: 16px; color: var(--c-amber); }
.hm-reviews__card figcaption span { font-size: 13.5px; color: var(--c-dim); }

.hm-cta {
  position: relative; isolation: isolate;
  padding-block: 110px;
  background: url('/assets/img/sections/cta-bg.avif') center/cover no-repeat;
}
.hm-cta::before {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(14, 22, 32, .82), rgba(14, 22, 32, .62));
}
.hm-cta__inner { max-width: 680px; margin-inline: auto; text-align: center; }
.hm-cta h2 { font-size: clamp(30px, 4.6vw, 50px); }
.hm-cta p { margin-top: 16px; color: var(--c-muted); font-size: 17px; }
.hm-cta__row { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; justify-content: center; }

@media (max-width: 1220px) {
  .hm-how__grid { grid-template-columns: repeat(2, 1fr); }
  .hm-top__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .hm-dock { flex-wrap: wrap; }
  .hm-dock__field { flex: 1 1 100%; }
  .hm-dock__field input { padding-block: 13px; }
  .hm-dock__sport { flex: 1 1 200px; }
  .hm-dock__sport .cselect__btn { padding-block: 13px; }
  .hm-dock__go { flex: 1 1 180px; }
  .hm-reviews__grid { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .hm-hero { padding-block: 72px 48px; }
  .hm-sports { padding-block: 72px 28px; }
  .hm-how, .hm-top, .hm-reviews { padding-block: 52px; }
  .hm-cta { padding-block: 76px; }
}
@media (max-width: 640px) {
  .hm-how__grid { grid-template-columns: 1fr; }
  .hm-top__grid { grid-template-columns: 1fr; }
  .hm-stats__grid { grid-template-columns: 1fr; }
  .hm-stats__item + .hm-stats__item { border-left: none; border-top: 1px solid var(--c-line); }
  .hm-stats__item { padding: 30px 24px; }
}
/* Teams — hero */
.tm-hero {
  position: relative; isolation: isolate;
  display: flex; align-items: center;
  min-height: 66vh;
  padding-block: 130px 100px;
  background: url('/assets/img/sections/teams-hero.avif') center/cover no-repeat;
}
.tm-hero::before {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg, rgba(14, 22, 32, .93) 20%, rgba(14, 22, 32, .55));
}
.tm-hero__inner { width: 100%; }
.tm-hero h1 {
  font-size: clamp(34px, 5.6vw, 62px);
  font-weight: 900;
  max-width: 18ch;
  animation: hmRise .9s var(--ease) both;
}
.tm-hero h1 span { color: var(--c-amber); text-shadow: 0 0 30px rgba(255, 181, 32, .4); }
.tm-hero__lead {
  margin-top: 18px;
  max-width: 620px;
  font-size: clamp(16px, 2vw, 19px);
  color: var(--c-muted);
  animation: hmRise .9s var(--ease) .12s both;
}
.tm-hero__cta { margin-top: 32px; animation: hmRise .9s var(--ease) .24s both; }

/* Teams — benefits */
.tm-benefits { padding-block: 96px 44px; }
.tm-benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.tm-benefits__card {
  min-width: 0;
  background: var(--c-bg2);
  border: 1px solid var(--c-line);
  border-radius: var(--r);
  padding: 30px 28px;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.tm-benefits__card:hover {
  transform: translateY(-4px);
  border-color: var(--c-line2);
  box-shadow: var(--shadow);
}
.tm-benefits__card > svg { width: 30px; height: 30px; color: var(--c-amber); }
.tm-benefits__card h3 { margin: 16px 0 8px; font-size: 19px; }
.tm-benefits__card p { font-size: 14.5px; color: var(--c-muted); }

/* Owners — hero */
.ow-hero {
  position: relative; isolation: isolate;
  display: flex; align-items: center;
  min-height: 66vh;
  padding-block: 130px 100px;
  background: url('/assets/img/sections/owners-hero.avif') center/cover no-repeat;
}
.ow-hero::before {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg, rgba(14, 22, 32, .93) 20%, rgba(14, 22, 32, .55));
}
.ow-hero__inner { width: 100%; }
.ow-hero h1 {
  font-size: clamp(34px, 5.6vw, 62px);
  font-weight: 900;
  max-width: 18ch;
  animation: hmRise .9s var(--ease) both;
}
.ow-hero h1 span { color: var(--c-amber); text-shadow: 0 0 30px rgba(255, 181, 32, .4); }
.ow-hero__lead {
  margin-top: 18px;
  max-width: 640px;
  font-size: clamp(16px, 2vw, 19px);
  color: var(--c-muted);
  animation: hmRise .9s var(--ease) .12s both;
}
.ow-hero__cta { margin-top: 32px; animation: hmRise .9s var(--ease) .24s both; }

/* Owners — how */
.ow-how { padding-block: 96px 44px; }
.ow-how__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ow-how__step {
  position: relative;
  min-width: 0;
  background: var(--c-bg2);
  border: 1px solid var(--c-line);
  border-radius: var(--r);
  padding: 30px 26px;
  transition: transform .35s var(--ease), border-color .35s var(--ease);
}
.ow-how__step:hover { transform: translateY(-4px); border-color: var(--c-line2); }
.ow-how__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--c-grad);
  color: #12100A;
  font-size: 18px;
  box-shadow: 0 6px 18px rgba(255, 181, 32, .3);
}
.ow-how__step h3 { margin: 18px 0 8px; font-size: 18px; }
.ow-how__step p { font-size: 14.5px; color: var(--c-muted); }

/* Owners — benefits */
.ow-benefits { padding-block: 52px 44px; }
.ow-benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.ow-benefits__card {
  min-width: 0;
  background: var(--c-panel);
  border: 1px solid var(--c-line);
  border-radius: var(--r);
  padding: 38px 32px;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.ow-benefits__card:hover {
  transform: translateY(-4px);
  border-color: var(--c-line2);
  box-shadow: var(--shadow);
}
.ow-benefits__card > svg { width: 36px; height: 36px; color: var(--c-amber); }
.ow-benefits__card h3 { margin: 18px 0 10px; font-size: 21px; }
.ow-benefits__card p { font-size: 15px; color: var(--c-muted); }

/* Shared form sections */
.tm-form, .ow-form { padding-block: 52px 100px; }
.tm-form__panel, .ow-form__panel {
  background: var(--c-panel);
  border: 1px solid var(--c-line);
  border-radius: var(--r);
  padding: 40px;
  box-shadow: var(--shadow);
}
.tm-form__grid, .ow-form__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 24px;
}
.tm-form__grid .field, .ow-form__grid .field { min-width: 0; }
.tm-form__wide, .ow-form__wide { grid-column: 1 / -1; }
.tm-form__actions, .ow-form__actions {
  margin-top: 28px;
  display: flex; align-items: center; gap: 20px;
  flex-wrap: wrap;
}
.tm-form__hint, .ow-form__hint { min-width: 0; flex: 1 1 260px; font-size: 13px; color: var(--c-dim); }
.tm-form__hint a, .ow-form__hint a { color: var(--c-muted); text-decoration: underline; }
.tm-form__hint a:hover, .ow-form__hint a:hover { color: var(--c-amber); }

@media (max-width: 1220px) {
  .tm-benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .ow-how__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .ow-benefits__grid { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .tm-hero, .ow-hero { min-height: 0; padding-block: 88px 64px; }
  .tm-benefits, .ow-how { padding-block: 64px 28px; }
  .ow-benefits { padding-block: 40px 28px; }
  .tm-form, .ow-form { padding-block: 40px 72px; }
  .tm-form__panel, .ow-form__panel { padding: 30px 26px; }
}
@media (max-width: 640px) {
  .tm-benefits__grid { grid-template-columns: 1fr; }
  .ow-how__grid { grid-template-columns: 1fr; }
  .tm-form__grid, .ow-form__grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .tm-form__panel, .ow-form__panel { padding: 24px 18px; }
  .tm-hero__cta .btn, .ow-hero__cta .btn { width: 100%; }
  .tm-form__actions .btn, .ow-form__actions .btn { width: 100%; }
}
/* Blog (bg-) */
.bg-hero {
  position: relative;
  padding-block: 96px 56px;
  background:
    radial-gradient(720px 340px at 18% -10%, rgba(255, 181, 32, .16), transparent 70%),
    radial-gradient(560px 300px at 88% 8%, rgba(255, 138, 0, .1), transparent 72%),
    linear-gradient(180deg, var(--c-bg2), var(--c-bg));
  border-bottom: 1px solid var(--c-line);
  overflow: hidden;
}
.bg-hero__inner { position: relative; }
.bg-hero h1 {
  font-size: clamp(30px, 5vw, 54px);
  line-height: 1.08;
  animation: hmRise .9s var(--ease) both;
}
.bg-hero h1 span { color: var(--c-amber); }
.bg-hero__lead {
  margin-top: 16px;
  max-width: 640px;
  color: var(--c-muted);
  font-size: 17px;
  animation: hmRise .9s var(--ease) .12s both;
}
.bg-hero__search {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 520px;
  padding: 0 18px;
  background: var(--c-panel);
  border: 1px solid var(--c-line2);
  border-radius: 14px;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
  animation: hmRise .9s var(--ease) .24s both;
}
.bg-hero__search:focus-within { border-color: var(--c-amber); box-shadow: 0 0 0 3px rgba(255, 181, 32, .15); }
.bg-hero__search svg { width: 18px; height: 18px; color: var(--c-dim); flex: 0 0 auto; }
.bg-hero__search input {
  flex: 1;
  min-width: 0;
  background: none;
  border: 0;
  outline: none;
  padding-block: 15px;
  font-size: 15px;
  color: var(--c-text);
}
.bg-hero__search input::placeholder { color: var(--c-dim); }

.bg-topics { padding-block: 28px 4px; }
.bg-topics__row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  animation: hmRise .9s var(--ease) .36s both;
}
.bg-topics__chip {
  padding: 9px 16px;
  border: 1px solid var(--c-line2);
  border-radius: 999px;
  background: none;
  color: var(--c-muted);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color .25s var(--ease), color .25s var(--ease), background .25s var(--ease);
}
.bg-topics__chip:hover { border-color: var(--c-amber); color: var(--c-amber); }
.bg-topics__chip.is-on { border-color: var(--c-amber); background: rgba(255, 181, 32, .12); color: var(--c-amber); }

.bg-list { padding-block: 36px 88px; }
.bg-list__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.bg-card {
  display: flex;
  flex-direction: column;
  background: var(--c-panel);
  border: 1px solid var(--c-line);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .3s var(--ease-snap), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.bg-card:hover { transform: translateY(-4px); border-color: var(--c-line2); box-shadow: 0 18px 38px rgba(0, 0, 0, .32); }
.bg-card img { width: 100%; height: auto; display: block; }
.bg-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  gap: 10px;
  padding: 18px 18px 20px;
}
.bg-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.bg-card__topic {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--c-amber);
}
.bg-card__meta .num { font-size: 12px; color: var(--c-dim); }
.bg-card h2 { font-size: 17px; line-height: 1.35; }
.bg-card__body > p { font-size: 14px; line-height: 1.55; color: var(--c-muted); }
.bg-card__more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding-top: 4px;
  font-size: 14px;
  font-weight: 700;
  color: var(--c-amber);
}
.bg-card__more svg { width: 15px; height: 15px; flex: 0 0 auto; transition: transform .25s var(--ease); }
.bg-card__more:hover svg { transform: translateX(4px); }
.bg-card.is-hidden { display: none; }

/* About (ab-) */
.ab-hero {
  position: relative;
  padding-block: 96px 64px;
  background:
    radial-gradient(700px 340px at 82% -12%, rgba(255, 181, 32, .15), transparent 70%),
    radial-gradient(520px 280px at 8% 16%, rgba(255, 138, 0, .09), transparent 72%),
    linear-gradient(180deg, var(--c-bg2), var(--c-bg));
  border-bottom: 1px solid var(--c-line);
  overflow: hidden;
}
.ab-hero h1 {
  font-size: clamp(30px, 5vw, 54px);
  line-height: 1.08;
  animation: hmRise .9s var(--ease) both;
}
.ab-hero h1 span { color: var(--c-amber); }
.ab-hero__lead {
  margin-top: 16px;
  max-width: 640px;
  color: var(--c-muted);
  font-size: 17px;
  animation: hmRise .9s var(--ease) .12s both;
}

.ab-story { padding-block: 88px 48px; }
.ab-story__split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 44px;
  align-items: center;
}
.ab-story__text { min-width: 0; }
.ab-story__text p { color: var(--c-muted); font-size: 16px; line-height: 1.7; }
.ab-story__text p + p { margin-top: 18px; }
.ab-story__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  border: 1px solid var(--c-line2);
}

.ab-values { padding-block: 48px; }
.ab-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.ab-values__card {
  min-width: 0;
  padding: 28px 26px;
  background: var(--c-panel);
  border: 1px solid var(--c-line);
  border-radius: 16px;
  transition: transform .3s var(--ease-snap), border-color .3s var(--ease);
}
.ab-values__card:hover { transform: translateY(-4px); border-color: var(--c-line2); }
.ab-values__card svg {
  width: 30px;
  height: 30px;
  color: var(--c-amber);
  margin-bottom: 16px;
}
.ab-values__card h3 { font-size: 20px; margin-bottom: 10px; }
.ab-values__card p { font-size: 15px; line-height: 1.6; color: var(--c-muted); }

.ab-contact { padding-block: 48px; }
.ab-contact__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.ab-contact__tile {
  min-width: 0;
  padding: 26px 24px;
  background: var(--c-bg2);
  border: 1px solid var(--c-line);
  border-radius: 16px;
  transition: border-color .3s var(--ease);
}
.ab-contact__tile:hover { border-color: var(--c-line2); }
.ab-contact__tile svg {
  width: 26px;
  height: 26px;
  color: var(--c-amber);
  margin-bottom: 14px;
}
.ab-contact__tile h3 { font-size: 17px; margin-bottom: 8px; }
.ab-contact__tile p,
.ab-contact__tile address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-muted);
}
.ab-contact__tile > a {
  display: inline-block;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--c-amber);
}
.ab-contact__soc { display: flex; gap: 10px; margin-top: 14px; justify-content: center; }
.ab-contact__soc a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border: 1px solid var(--c-line2);
  border-radius: 10px;
  color: var(--c-muted);
  transition: border-color .25s var(--ease), color .25s var(--ease), transform .3s var(--ease-snap);
}
.ab-contact__soc a:hover { border-color: var(--c-amber); color: var(--c-amber); transform: translateY(-3px); }
.ab-contact__soc svg { width: 17px; height: 17px; }

.ab-partner { padding-block: 48px 96px; }
.ab-partner__split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 44px;
  align-items: start;
}
.ab-partner__text { min-width: 0; }
.ab-partner__text .sec-head { margin-bottom: 26px; }
.ab-partner__text p { color: var(--c-muted); font-size: 16px; line-height: 1.7; }
.ab-partner__text p + p { margin-top: 18px; }
.ab-partner__form {
  display: flex;
  flex-direction: column;
  min-width: 0;
  gap: 18px;
  padding: 30px 28px;
  background: var(--c-panel);
  border: 1px solid var(--c-line2);
  border-radius: 18px;
}
.ab-partner__form .btn { align-self: flex-start; }
.ab-partner__form .btn svg { width: 16px; height: 16px; }

/* Responsive */
@media (max-width: 1220px) {
  .bg-list__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .ab-story__split { grid-template-columns: 1fr; gap: 28px; }
  .ab-partner__split { grid-template-columns: 1fr; gap: 32px; }
  .ab-contact__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 820px) {
  .bg-hero, .ab-hero { padding-block: 72px 48px; }
  .bg-list { padding-block: 28px 72px; }
  .ab-story { padding-block: 72px 40px; }
  .ab-values { padding-block: 40px; }
  .ab-values__grid { grid-template-columns: 1fr; gap: 16px; }
  .ab-contact { padding-block: 40px; }
  .ab-partner { padding-block: 40px 80px; }
}
@media (max-width: 640px) {
  .bg-list__grid { grid-template-columns: 1fr; }
  .bg-card h2 { font-size: 18px; }
}
@media (max-width: 520px) {
  .bg-hero, .ab-hero { padding-block: 60px 40px; }
  .bg-hero__search { padding: 0 14px; }
  .bg-hero__search input { padding-block: 13px; }
  .bg-topics__chip { padding: 8px 13px; font-size: 13px; }
  .ab-contact__grid { grid-template-columns: 1fr; }
  .ab-partner__form { padding: 24px 18px; }
  .ab-partner__form .btn { align-self: stretch; justify-content: center; }
}
/* Legal pages: privacy / terms / cookies */

.legal-hero {
  position: relative;
  padding-block: 90px 56px;
  border-bottom: 1px solid var(--c-line);
  background-color: var(--c-bg2);
  overflow: hidden;
}
.legal-hero .container { position: relative; z-index: 1; }
.legal-hero h1 {
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.08;
  margin: 0 0 14px;
}
.legal-hero__date {
  display: inline-block;
  margin: 0 0 18px;
  padding: 6px 14px;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--c-amber);
  border: 1px solid var(--c-line);
  border-radius: 999px;
  background: rgba(255, 181, 32, .07);
}
.legal-hero__lead {
  margin: 0;
  color: var(--c-muted);
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.65;
}

.pv-hero { background-image: radial-gradient(760px 340px at 18% -10%, rgba(255, 181, 32, .14), transparent 70%); }
.te-hero { background-image: radial-gradient(760px 340px at 82% -10%, rgba(255, 181, 32, .12), transparent 70%); }
.ck-hero { background-image: radial-gradient(760px 340px at 50% -14%, rgba(255, 181, 32, .13), transparent 70%); }

.pv-body,
.te-body,
.ck-body { padding-block: 56px 88px; }

.legal-content h2 {
  margin: 46px 0 16px;
  font-size: clamp(21px, 2.6vw, 27px);
  line-height: 1.2;
  padding-top: 26px;
  border-top: 1px solid var(--c-line);
}
.legal-content h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.legal-content p {
  margin: 0 0 15px;
  line-height: 1.72;
}
.legal-content p:last-child { margin-bottom: 0; }
.legal-content a { color: var(--c-amber); text-decoration: underline; text-underline-offset: 3px; }
.legal-content ul {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
}
.legal-content ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  line-height: 1.65;
}
.legal-content ul li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: .58em;
  width: 8px;
  height: 8px;
  background: var(--c-amber);
}

.ck-table-wrap {
  overflow-x: auto;
  margin: 22px 0;
  border: 1px solid var(--c-line);
  border-radius: 14px;
  background: var(--c-bg2);
}
.ck-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 15px;
}
.ck-table th,
.ck-table td {
  padding: 13px 18px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--c-line);
  line-height: 1.5;
}
.ck-table thead th {
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--c-muted);
}
.ck-table tbody tr:last-child th,
.ck-table tbody tr:last-child td { border-bottom: 0; }
.ck-table td.num { color: var(--c-amber); white-space: nowrap; }

@media (max-width: 820px) {
  .legal-hero { padding-block: 64px 42px; }
  .pv-body,
  .te-body,
  .ck-body { padding-block: 42px 64px; }
  .legal-content h2 { margin-top: 36px; padding-top: 22px; }
}

@media (max-width: 520px) {
  .legal-hero { padding-block: 48px 34px; }
  .legal-hero h1 { margin-bottom: 12px; }
  .legal-hero__date { font-size: 12px; padding: 5px 12px; }
  .pv-body,
  .te-body,
  .ck-body { padding-block: 34px 52px; }
  .legal-content h2 { margin-top: 30px; padding-top: 18px; }
  .ck-table { font-size: 14px; }
  .ck-table th,
  .ck-table td { padding: 11px 14px; }
}

/* ============ CATALOG ============ */
.ct-head {
  padding-block: 72px 34px;
  background: radial-gradient(700px 260px at 15% 0%, rgba(255, 181, 32, .08), transparent);
}
.ct-head h1 { font-size: clamp(32px, 5vw, 54px); animation: hmRise .8s var(--ease) both; }
.ct-head__lead { margin-top: 14px; color: var(--c-muted); font-size: 17px; animation: hmRise .8s var(--ease) .1s both; }
.ct-head__lead strong { color: var(--c-amber); }

.ct-browse { padding-block: 10px 90px; }
.ct-browse__layout {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}
.ct-filters {
  background: var(--c-bg2);
  border: 1px solid var(--c-line);
  border-radius: var(--r);
  padding: 20px;
  position: sticky; top: calc(var(--header-offset, 64px) + 16px);
}
.ct-filters__top { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.ct-filters__top svg { width: 20px; height: 20px; color: var(--c-amber); }
.ct-filters__top h2 { font-size: 18px; }
.ct-filters__reset {
  margin-left: auto;
  font-size: 13px; font-weight: 700; color: var(--c-dim);
  transition: color .2s var(--ease);
}
.ct-filters__reset:hover { color: var(--c-amber); }

.ct-fgroup { border-top: 1px solid var(--c-line); }
.ct-fgroup summary {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 14px 2px;
  font-weight: 700; font-size: 14.5px;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}
.ct-fgroup summary::-webkit-details-marker { display: none; }
.ct-fgroup summary svg { width: 14px; height: 14px; color: var(--c-dim); transition: transform .3s var(--ease); flex: 0 0 auto; }
.ct-fgroup.is-open summary svg { transform: rotate(180deg); }
.ct-fgroup__body { padding: 2px 2px 16px; }

.ct-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.ct-chips button {
  padding: 8px 13px;
  border-radius: 999px;
  border: 1px solid var(--c-line2);
  background: rgba(234, 242, 248, .03);
  font-size: 13px; font-weight: 600; color: var(--c-muted);
  transition: border-color .22s var(--ease), color .22s var(--ease), background .22s var(--ease), transform .25s var(--ease-snap);
}
.ct-chips button:hover { border-color: var(--c-amber); color: var(--c-amber); }
.ct-chips button.is-on {
  background: rgba(255, 181, 32, .15);
  border-color: var(--c-amber);
  color: var(--c-amber);
  transform: scale(1.03);
}

.ct-fgroup input[type="range"] {
  width: 100%;
  appearance: none; -webkit-appearance: none;
  height: 5px; border-radius: 3px;
  background: linear-gradient(90deg, var(--c-amber) var(--fill, 100%), rgba(234, 242, 248, .14) var(--fill, 100%));
  outline: none;
  cursor: pointer;
  touch-action: manipulation;
}
.ct-fgroup input[type="range"]::-webkit-slider-thumb {
  appearance: none; -webkit-appearance: none;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--c-grad);
  border: 3px solid #0E1620;
  box-shadow: 0 0 0 1px var(--c-amber), 0 4px 10px rgba(255, 154, 16, .4);
}
.ct-fgroup input[type="range"]::-moz-range-thumb {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--c-grad);
  border: 3px solid #0E1620;
  box-shadow: 0 0 0 1px var(--c-amber);
}
.ct-fgroup__price { margin-top: 10px; font-size: 13.5px; color: var(--c-muted); }
.ct-fgroup__price strong { color: var(--c-amber); }

.ct-results { min-width: 0; }
.ct-results__bar {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  margin-bottom: 18px;
}
.ct-results__bar p { font-size: 15px; color: var(--c-muted); }
.ct-results__bar strong { color: var(--c-amber); font-size: 17px; }
.ct-view {
  display: flex; gap: 4px;
  background: var(--c-bg2);
  border: 1px solid var(--c-line2);
  border-radius: 999px;
  padding: 4px;
}
.ct-view button {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13.5px; font-weight: 700; color: var(--c-muted);
  transition: background .25s var(--ease), color .25s var(--ease);
}
.ct-view button svg { width: 15px; height: 15px; }
.ct-view button.is-on { background: var(--c-grad); color: #1A1104; }

.ct-map {
  border: 1px solid var(--c-line2);
  border-radius: var(--r);
  overflow: hidden;
  margin-bottom: 22px;
  animation: hmRise .5s var(--ease) both;
}
.ct-map__canvas {
  position: relative;
  height: 440px;
  overflow: hidden;
  background: #0F1926;
}
.ct-map__svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
}
.ct-map__pin {
  position: absolute;
  transform: translate(-50%, -100%);
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 12px;
  background: var(--c-panel);
  border: 1px solid var(--c-line2);
  border-radius: 999px;
  font-size: 12.5px; font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(3, 8, 14, .5);
  animation: ctPinDrop .6s var(--ease-snap) both;
}
.ct-map__pin:nth-child(2) { animation-delay: .06s; }
.ct-map__pin:nth-child(3) { animation-delay: .12s; }
.ct-map__pin:nth-child(4) { animation-delay: .18s; }
.ct-map__pin:nth-child(5) { animation-delay: .24s; }
.ct-map__pin:nth-child(6) { animation-delay: .3s; }
.ct-map__pin:nth-child(7) { animation-delay: .36s; }
.ct-map__pin:nth-child(8) { animation-delay: .42s; }
.ct-map__pin:nth-child(9) { animation-delay: .48s; }
@keyframes ctPinDrop {
  from { opacity: 0; transform: translate(-50%, -160%); }
  to { opacity: 1; transform: translate(-50%, -100%); }
}
.ct-map__pin svg { width: 14px; height: 14px; color: var(--c-amber); flex: 0 0 auto; }
.ct-map__note {
  padding: 12px 18px;
  font-size: 13px; color: var(--c-dim);
  border-top: 1px solid var(--c-line);
  background: var(--c-bg2);
}

.ct-list { display: flex; flex-direction: column; gap: 20px; }
.ct-card {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 0;
  background: var(--c-bg2);
  border: 1px solid var(--c-line);
  border-radius: var(--r);
  overflow: hidden;
  transition: transform .3s var(--ease-snap), border-color .3s var(--ease), box-shadow .3s var(--ease);
  animation: hmRise .45s var(--ease) both;
}
.ct-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 181, 32, .45);
  box-shadow: 0 18px 40px rgba(3, 8, 14, .5);
}
.ct-card__gallery { display: flex; flex-direction: column; min-width: 0; }
.ct-card__gallery > img { width: 100%; height: auto; aspect-ratio: 800 / 460; object-fit: cover; flex: 1; }
.ct-card__thumbs { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 2px; }
.ct-card__thumbs img { width: 100%; height: auto; aspect-ratio: 16 / 6.5; object-fit: cover; }
.ct-card__info { padding: 22px 26px; min-width: 0; display: flex; flex-direction: column; }
.ct-card__sports { display: flex; gap: 8px; margin-bottom: 10px; }
.ct-card__sports svg { width: 22px; height: 22px; color: var(--c-amber); }
.ct-card__info h3 { font-size: 21px; }
.ct-card__addr {
  display: flex; align-items: center; gap: 7px;
  margin-top: 6px;
  font-size: 14px; color: var(--c-dim);
}
.ct-card__addr svg { width: 15px; height: 15px; flex: 0 0 auto; }
.ct-card__rate { display: flex; align-items: center; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.ct-card__rate .num { font-size: 13px; color: var(--c-muted); }
.ct-card__foot {
  margin-top: auto; padding-top: 18px;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  flex-wrap: wrap;
}
.ct-card__price { font-size: 17px; color: var(--c-amber); }
.ct-card__cta { display: flex; gap: 10px; flex-wrap: wrap; }
.ct-card__cta .btn { padding: 10px 20px; font-size: 14px; }
.ct-card.is-hidden { display: none; }

.ct-empty {
  padding: 44px 20px;
  text-align: center;
  color: var(--c-muted);
  border: 1px dashed var(--c-line2);
  border-radius: var(--r);
}
.ct-empty__reset { color: var(--c-amber); font-weight: 700; text-decoration: underline; }

@media (max-width: 1100px) {
  .ct-browse__layout { grid-template-columns: minmax(0, 1fr); }
  .ct-filters { position: static; }
}
@media (max-width: 900px) {
  .ct-card { grid-template-columns: 1fr; }
  .ct-card__gallery > img { aspect-ratio: 800 / 380; }
}
@media (max-width: 820px) {
  .ct-head { padding-block: 52px 24px; }
  .ct-browse { padding-block: 6px 60px; }
  .ct-map__canvas { height: 340px; }
  .ct-map__pin { font-size: 11px; padding: 5px 9px; }
}
@media (max-width: 520px) {
  .ct-results__bar { flex-direction: column; align-items: flex-start; }
  .ct-card__info { padding: 18px; }
  .ct-card__cta { width: 100%; }
  .ct-card__cta .btn { flex: 1; }
}

/* ============ ARENA ============ */
.ar-head { padding-block: 44px 26px; }
.ar-head__back {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: var(--c-dim);
  margin-bottom: 20px;
}
.ar-head__back svg { width: 16px; height: 16px; transform: rotate(180deg); }
.ar-head__back:hover { color: var(--c-amber); }
.ar-head__row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.ar-head h1 { font-size: clamp(30px, 4.6vw, 50px); animation: hmRise .8s var(--ease) both; }
.ar-head__addr {
  display: flex; align-items: center; gap: 9px; flex-wrap: wrap;
  margin-top: 12px;
  color: var(--c-muted); font-size: 15px;
  animation: hmRise .8s var(--ease) .1s both;
}
.ar-head__addr > svg { width: 17px; height: 17px; color: var(--c-amber); flex: 0 0 auto; }
.ar-head__map { padding: 8px 16px; font-size: 13px; margin-left: 6px; }
.ar-head__rate { display: flex; align-items: center; gap: 10px; animation: hmRise .8s var(--ease) .15s both; }
.ar-head__rate .num { font-size: 14px; color: var(--c-muted); }

.ar-gallery { padding-block: 8px 30px; }
.ar-gallery__stage {
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--c-line2);
}
.ar-gallery__stage img {
  width: 100%; height: auto;
  aspect-ratio: 1200 / 620;
  object-fit: cover;
  animation: arFade .45s var(--ease);
}
@keyframes arFade { from { opacity: .35; transform: scale(1.015); } to { opacity: 1; transform: none; } }
.ar-gallery__strip {
  display: grid;
  grid-template-columns: repeat(11, minmax(86px, 1fr));
  gap: 10px;
  margin-top: 12px;
  overflow-x: auto;
  padding-bottom: 6px;
}
.ar-gallery__strip button {
  border-radius: var(--r-sm);
  overflow: hidden;
  border: 2px solid transparent;
  opacity: .65;
  transition: opacity .25s var(--ease), border-color .25s var(--ease), transform .3s var(--ease-snap);
  padding: 0;
}
.ar-gallery__strip button:hover { opacity: 1; transform: translateY(-2px); }
.ar-gallery__strip button.is-on { opacity: 1; border-color: var(--c-amber); }
.ar-gallery__strip img { width: 100%; height: auto; aspect-ratio: 4 / 2.7; object-fit: cover; display: block; }

.ar-about { padding-block: 56px 30px; }
.ar-about__short { font-size: 19px; font-weight: 500; color: var(--c-text); }
.ar-about__long { margin-top: 18px; display: grid; gap: 14px; }
.ar-about__long p { color: var(--c-muted); font-size: 15.5px; }

.ar-specs { padding-block: 56px 30px; }
.ar-specs__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.ar-specs__grid li {
  background: var(--c-bg2);
  border: 1px solid var(--c-line);
  border-radius: var(--r);
  padding: 24px;
  transition: border-color .3s var(--ease), transform .3s var(--ease-snap);
}
.ar-specs__grid li:hover { border-color: rgba(255, 181, 32, .4); transform: translateY(-4px); }
.ar-specs__grid svg { width: 26px; height: 26px; color: var(--c-amber); margin-bottom: 14px; }
.ar-specs__grid h3 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--c-dim); margin-bottom: 8px; }
.ar-specs__grid p { font-size: 19px; font-weight: 700; }
.ar-specs__grid span { display: block; margin-top: 4px; font-size: 13.5px; color: var(--c-muted); }

.ar-prices { padding-block: 56px 30px; }
.ar-prices__wrap {
  overflow-x: auto;
  border: 1px solid var(--c-line2);
  border-radius: var(--r);
}
.ar-prices__table { width: 100%; border-collapse: collapse; min-width: 480px; }
.ar-prices__table th, .ar-prices__table td {
  padding: 15px 20px;
  text-align: left;
  font-size: 15px;
  border-bottom: 1px solid var(--c-line);
}
.ar-prices__table thead th {
  background: rgba(255, 181, 32, .08);
  font-family: var(--font-mono);
  font-size: 12.5px; text-transform: uppercase; letter-spacing: .1em;
  color: var(--c-amber);
}
.ar-prices__table tbody tr:last-child td { border-bottom: none; }
.ar-prices__table tbody tr { transition: background .2s var(--ease); }
.ar-prices__table tbody tr:hover { background: rgba(234, 242, 248, .03); }
.ar-prices__table td.num { color: var(--c-text); }

.ar-rules { margin-top: 26px; display: grid; gap: 12px; }
.ar-rules li {
  display: flex; align-items: flex-start; gap: 12px;
  color: var(--c-muted); font-size: 15px;
}
.ar-rules svg { width: 18px; height: 18px; color: var(--c-good); flex: 0 0 auto; margin-top: 3px; }

.ar-booking { padding-block: 56px 96px; }
.ar-booking__panel {
  display: grid;
  grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
  gap: 26px;
  background: var(--c-bg2);
  border: 1px solid var(--c-line2);
  border-radius: var(--r);
  padding: 26px;
}
.ar-cal { min-width: 0; }
.ar-cal__head {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  margin-bottom: 16px;
}
.ar-cal__head strong { font-size: 17px; text-transform: capitalize; }
.ar-cal__head button {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  border: 1px solid var(--c-line2);
  color: var(--c-muted);
  transition: border-color .2s var(--ease), color .2s var(--ease);
}
.ar-cal__head button:hover:not(:disabled) { border-color: var(--c-amber); color: var(--c-amber); }
.ar-cal__head button:disabled { opacity: .3; cursor: not-allowed; }
.ar-cal__head button svg { width: 16px; height: 16px; }
.ar-cal__dow, .ar-cal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; }
.ar-cal__dow span {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px; color: var(--c-dim);
  padding-block: 6px;
}
.ar-cal__grid button {
  aspect-ratio: 1;
  border-radius: 10px;
  font-family: var(--font-mono);
  font-size: 14px; color: var(--c-text);
  border: 1px solid transparent;
  transition: background .2s var(--ease), border-color .2s var(--ease), transform .25s var(--ease-snap);
}
.ar-cal__grid button:hover:not(:disabled) { border-color: var(--c-amber); transform: scale(1.06); }
.ar-cal__grid button:disabled { color: rgba(159, 178, 194, .28); cursor: not-allowed; }
.ar-cal__grid button.is-sel {
  background: var(--c-grad); color: #1A1104; font-weight: 700;
  box-shadow: 0 6px 16px rgba(255, 154, 16, .35);
}
.ar-cal__grid .ar-cal__pad { visibility: hidden; }

.ar-slots { min-width: 0; display: flex; flex-direction: column; }
.ar-slots h3 { font-size: 16px; margin-bottom: 16px; }
.ar-slots h3 .num { color: var(--c-amber); }
.ar-slots__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.ar-slots__grid button {
  padding: 12px 6px;
  border-radius: 10px;
  border: 1px solid rgba(74, 222, 128, .35);
  background: rgba(74, 222, 128, .07);
  font-family: var(--font-mono);
  font-size: 13.5px; font-weight: 700; color: var(--c-good);
  transition: background .2s var(--ease), transform .25s var(--ease-snap), border-color .2s var(--ease), color .2s var(--ease);
}
.ar-slots__grid button:hover:not(:disabled) { transform: translateY(-2px); border-color: var(--c-good); }
.ar-slots__grid button:disabled {
  border-color: var(--c-line);
  background: rgba(234, 242, 248, .02);
  color: var(--c-dim);
  text-decoration: line-through;
  cursor: not-allowed;
}
.ar-slots__grid button.is-sel {
  background: var(--c-grad);
  border-color: transparent;
  color: #1A1104;
  box-shadow: 0 6px 16px rgba(255, 154, 16, .35);
}
.ar-slots__empty { grid-column: 1 / -1; color: var(--c-dim); font-size: 14px; padding-block: 20px; text-align: center; }
.ar-slots__go { margin-top: 20px; }

@media (max-width: 1100px) {
  .ar-booking__panel { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 900px) {
  .ar-specs__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  .ar-about, .ar-specs, .ar-prices { padding-block: 40px 20px; }
  .ar-booking { padding-block: 40px 64px; }
  .ar-gallery__strip { grid-template-columns: repeat(11, 86px); }
}
@media (max-width: 640px) {
  .ar-slots__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 520px) {
  .ar-specs__grid { grid-template-columns: 1fr; }
  .ar-booking__panel { padding: 16px; }
  .ar-slots__grid { grid-template-columns: repeat(2, 1fr); }
  .ar-head__map { margin-left: 0; }
}

/* ============ TOURNAMENTS ============ */
.tr-hero {
  position: relative; isolation: isolate;
  padding-block: 130px 110px;
  background: url('/assets/img/tournament/tour-4.avif') center/cover no-repeat;
}
.tr-hero::before {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(105deg, rgba(14, 22, 32, .95) 30%, rgba(14, 22, 32, .6));
}
.tr-hero h1 {
  font-size: clamp(32px, 5.4vw, 60px);
  font-weight: 900;
  animation: hmRise .9s var(--ease) both;
}
.tr-hero h1 span { color: var(--c-amber); text-shadow: 0 0 28px rgba(255, 181, 32, .4); }
.tr-hero__lead {
  margin-top: 18px;
  max-width: 620px;
  font-size: clamp(16px, 2vw, 19px);
  color: var(--c-muted);
  animation: hmRise .9s var(--ease) .12s both;
}
.tr-hero .btn { margin-top: 28px; animation: hmRise .9s var(--ease) .24s both; }

.tr-info { padding-block: 88px 40px; }
.tr-info__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.tr-info__grid li {
  position: relative;
  background: var(--c-bg2);
  border: 1px solid var(--c-line);
  border-radius: var(--r);
  padding: 26px 24px;
  overflow: hidden;
}
.tr-info__grid li > .num {
  position: absolute; top: 10px; right: 16px;
  font-size: 46px; color: rgba(255, 181, 32, .12);
}
.tr-info__grid h3 { font-size: 17.5px; margin-bottom: 10px; }
.tr-info__grid p { font-size: 14.5px; color: var(--c-muted); }

.tr-zone { padding-block: 56px 40px; }
.tr-zone__layout {
  display: grid;
  grid-template-columns: minmax(0, 440px) minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}
.tr-pitch-wrap {
  background: var(--c-bg2);
  border: 1px solid var(--c-line2);
  border-radius: var(--r);
  padding: 20px;
  position: sticky; top: calc(var(--header-offset, 64px) + 16px);
}
.tr-budget { margin-bottom: 16px; }
.tr-budget__row {
  display: flex; align-items: baseline; justify-content: space-between; gap: 10px;
  font-size: 13px; color: var(--c-dim); text-transform: uppercase; letter-spacing: .08em;
}
.tr-budget__row strong { font-size: 17px; color: var(--c-amber); letter-spacing: 0; text-transform: none; }
.tr-budget__bar {
  margin-top: 8px;
  height: 7px; border-radius: 4px;
  background: rgba(234, 242, 248, .08);
  overflow: hidden;
}
.tr-budget__bar span {
  display: block; height: 100%;
  background: var(--c-grad);
  border-radius: 4px;
  transition: width .5s var(--ease), background .3s var(--ease);
}
.tr-budget__bar span.is-hot { background: linear-gradient(90deg, #FF8A00, #F87171); }
.tr-budget__slots { margin-top: 8px; font-size: 13px; color: var(--c-muted); }

.tr-pitch {
  position: relative;
  border-radius: 14px;
  padding: 26px 14px 20px;
  display: flex; flex-direction: column; gap: 20px;
  background:
    radial-gradient(140px 70px at 50% 0%, rgba(234, 242, 248, .06), transparent),
    repeating-linear-gradient(0deg, rgba(234, 242, 248, .028) 0 44px, transparent 44px 88px),
    linear-gradient(180deg, #14432B, #0E3320);
  border: 1px solid rgba(74, 222, 128, .25);
  overflow: hidden;
}
.tr-pitch::before {
  content: '';
  position: absolute; inset: 12px;
  border: 1.5px solid rgba(234, 242, 248, .16);
  border-radius: 8px;
  pointer-events: none;
}
.tr-pitch::after {
  content: '';
  position: absolute; left: 50%; top: -46px;
  width: 130px; height: 92px;
  transform: translateX(-50%);
  border: 1.5px solid rgba(234, 242, 248, .16);
  border-radius: 50%;
  pointer-events: none;
}
.tr-pitch__line { display: flex; justify-content: center; gap: 10px; position: relative; z-index: 1; }
.tr-slot {
  flex: 1 1 0;
  min-width: 0;
  max-width: 86px;
  min-height: 96px;
  border-radius: 12px;
  border: 1.5px dashed rgba(234, 242, 248, .3);
  background: rgba(10, 20, 14, .35);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  color: rgba(234, 242, 248, .75);
  font-size: 11px; font-weight: 600;
  padding: 8px 4px;
  transition: border-color .25s var(--ease), background .25s var(--ease), transform .3s var(--ease-snap);
}
.tr-slot:hover { border-color: var(--c-amber); transform: translateY(-3px); }
.tr-slot svg { width: 20px; height: 20px; color: var(--c-amber); }
.tr-slot.is-filled {
  border-style: solid;
  border-color: rgba(255, 181, 32, .65);
  background: rgba(14, 22, 32, .55);
  animation: trPop .4s var(--ease-snap);
}
@keyframes trPop { 0% { transform: scale(.85); } 60% { transform: scale(1.06); } 100% { transform: scale(1); } }
.tr-slot.is-filled img {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--c-amber);
}
.tr-slot span { max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.tr-slot.is-filled span { color: var(--c-text); font-weight: 700; }
.tr-slot.is-filled em { font-style: normal; font-size: 10.5px; color: var(--c-amber); }
.tr-zone__submit { width: 100%; margin-top: 18px; }
.tr-zone__hint { margin-top: 10px; text-align: center; font-size: 13px; color: var(--c-dim); }

.tr-roster { min-width: 0; }
.tr-roster__tools { display: flex; flex-direction: column; gap: 12px; margin-bottom: 18px; }
.tr-roster__search {
  display: flex; align-items: center; gap: 10px;
  border: 1px solid var(--c-line2);
  border-radius: 999px;
  padding: 0 18px;
  background: var(--c-bg2);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.tr-roster__search:focus-within { border-color: var(--c-amber); box-shadow: 0 0 0 3px rgba(255, 181, 32, .14); }
.tr-roster__search svg { width: 17px; height: 17px; color: var(--c-dim); flex: 0 0 auto; }
.tr-roster__search input {
  flex: 1; min-width: 0;
  background: none; border: none; outline: none;
  font-size: 15px; color: var(--c-text);
  padding-block: 12px;
}
.tr-roster__search input::placeholder { color: var(--c-dim); }
.tr-roster__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.tr-roster__chips button {
  padding: 8px 15px;
  border-radius: 999px;
  border: 1px solid var(--c-line2);
  font-size: 13px; font-weight: 700; color: var(--c-muted);
  transition: border-color .22s var(--ease), color .22s var(--ease), background .22s var(--ease);
}
.tr-roster__chips button:hover { border-color: var(--c-amber); color: var(--c-amber); }
.tr-roster__chips button.is-on {
  background: rgba(255, 181, 32, .15);
  border-color: var(--c-amber);
  color: var(--c-amber);
}
.tr-roster__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.tr-pcard {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  background: var(--c-bg2);
  border: 1px solid var(--c-line);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color .3s var(--ease), transform .3s var(--ease-snap);
  animation: hmRise .4s var(--ease) both;
}
.tr-pcard:hover { border-color: rgba(255, 181, 32, .4); transform: translateY(-3px); }
.tr-pcard.is-taken { border-color: rgba(74, 222, 128, .4); }
.tr-pcard > img { width: 100%; height: 100%; object-fit: cover; }
.tr-pcard__body { padding: 10px 12px; min-width: 0; }
.tr-pcard__body h3 { font-size: 13.5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tr-pcard__pos { font-size: 11px; color: var(--c-dim); margin-top: 1px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tr-pcard.is-taken .tr-pcard__pos { color: var(--c-good); }
.tr-pcard__meta {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-top: 5px; font-size: 11.5px;
}
.tr-pcard__meta .num:first-child { color: var(--c-amber); }
.tr-pcard__meta .num:last-child { color: var(--c-muted); }
.tr-pcard .btn { margin-top: 8px; padding: 5px 11px; font-size: 11.5px; }

.tr-gallery { padding-block: 56px 40px; }
.tr-gallery__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.tr-gallery__grid figure {
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--c-line);
  background: var(--c-bg2);
  transition: transform .3s var(--ease-snap), border-color .3s var(--ease);
}
.tr-gallery__grid figure:hover { transform: translateY(-4px); border-color: rgba(255, 181, 32, .4); }
.tr-gallery__grid img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; }
.tr-gallery__grid figcaption { padding: 12px 16px; font-size: 13px; color: var(--c-muted); }

.tr-social { padding-block: 56px 40px; }
.tr-social__inner {
  background:
    radial-gradient(500px 200px at 85% 0%, rgba(255, 181, 32, .09), transparent),
    var(--c-bg2);
  border: 1px solid var(--c-line2);
  border-radius: var(--r);
  padding: 44px 40px;
}
.tr-social h2 { font-size: clamp(22px, 3vw, 30px); }
.tr-social p { margin-top: 12px; color: var(--c-muted); }
.tr-social__row { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }
.tr-social__row a {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 20px;
  border-radius: 999px;
  border: 1px solid var(--c-line2);
  font-size: 14px; font-weight: 700; color: var(--c-muted);
  transition: border-color .25s var(--ease), color .25s var(--ease), transform .3s var(--ease-snap);
}
.tr-social__row a:hover { border-color: var(--c-amber); color: var(--c-amber); transform: translateY(-3px); }
.tr-social__row svg { width: 18px; height: 18px; }

.tr-rg { padding-block: 40px 10px; }
.tr-rg__row {
  display: flex; flex-wrap: wrap;
  gap: 26px 48px;
  align-items: center; justify-content: space-between;
}
.tr-rg__logo {
  display: inline-flex; align-items: center; gap: 10px;
  opacity: .72;
  transition: opacity .25s var(--ease), transform .3s var(--ease-snap);
}
.tr-rg__logo:hover { opacity: 1; transform: translateY(-2px); }
.tr-rg__logo svg { width: 26px; height: 26px; color: #F1F3F5; flex: 0 0 auto; }
.tr-rg__logo span { font-size: 17px; font-weight: 800; color: #F1F3F5; letter-spacing: .01em; white-space: nowrap; }
.tr-rg__logo img { height: 27px; width: auto; display: block; }

.tr-disclaimer { padding-block: 34px 96px; }
.tr-disclaimer__inner {
  display: flex; gap: 24px; align-items: flex-start;
  background: var(--c-bg2);
  border: 1px solid var(--c-line);
  border-radius: var(--r);
  padding: 30px 32px;
}
.tr-disclaimer__age { width: 52px; height: 52px; color: var(--c-amber); flex: 0 0 auto; }
.tr-disclaimer h2 { font-size: 19px; margin-bottom: 10px; }
.tr-disclaimer p { font-size: 14px; color: var(--c-muted); }
.tr-disclaimer strong { color: var(--c-text); }

.tr-modal-wrap {
  position: fixed; inset: 0; z-index: 150;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  background: rgba(6, 10, 15, .65);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  opacity: 0; visibility: hidden;
  transition: opacity .3s var(--ease), visibility 0s linear .3s;
}
.tr-modal-wrap[data-open="true"] {
  opacity: 1; visibility: visible;
  transition: opacity .3s var(--ease), visibility 0s linear 0s;
}
.tr-modal {
  position: relative;
  width: min(440px, 100%);
  background: var(--c-panel);
  border: 1px solid var(--c-line2);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  padding: 30px;
  transform: translateY(16px) scale(.96);
  transition: transform .35s var(--ease-snap);
}
.tr-modal-wrap[data-open="true"] .tr-modal { transform: none; }
.tr-modal__close {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 9px;
  color: var(--c-dim);
  transition: color .2s var(--ease), background .2s var(--ease);
}
.tr-modal__close:hover { color: var(--c-text); background: rgba(234, 242, 248, .06); }
.tr-modal__close svg { width: 17px; height: 17px; }
.tr-modal h3 { font-size: 21px; margin-bottom: 8px; padding-right: 30px; }
.tr-modal > p { font-size: 14px; color: var(--c-muted); }
.tr-modal__form { display: grid; gap: 14px; margin-top: 20px; }

@media (max-width: 1100px) {
  .tr-zone__layout { grid-template-columns: minmax(0, 1fr); }
  .tr-pitch-wrap { position: static; max-width: 560px; margin-inline: auto; width: 100%; }
}
@media (max-width: 1220px) {
  .tr-info__grid { grid-template-columns: repeat(2, 1fr); }
  .tr-gallery__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  .tr-hero { padding-block: 90px 76px; }
  .tr-info { padding-block: 60px 28px; }
  .tr-zone, .tr-gallery, .tr-social { padding-block: 40px 28px; }
  .tr-disclaimer { padding-block: 24px 64px; }
  .tr-social__inner { padding: 30px 24px; }
}
@media (max-width: 640px) {
  .tr-info__grid { grid-template-columns: 1fr; }
  .tr-roster__grid { grid-template-columns: repeat(2, 1fr); }
  .tr-slot { max-width: 76px; min-height: 86px; }
  .tr-disclaimer__inner { flex-direction: column; padding: 24px 20px; }
}
@media (max-width: 430px) {
  .tr-roster__grid { grid-template-columns: 1fr; }
  .tr-pitch-wrap { padding: 12px; }
  .tr-slot { max-width: none; min-height: 78px; font-size: 10px; padding-inline: 2px; }
  .tr-slot.is-filled img { width: 32px; height: 32px; }
  .tr-pitch { padding-inline: 8px; }
  .tr-pitch__line { gap: 6px; }
  .tr-gallery__grid { grid-template-columns: 1fr; }
}

.bg-list__empty {
  padding: 34px 20px;
  text-align: center;
  color: var(--c-muted);
  border: 1px dashed var(--c-line2);
  border-radius: var(--r);
  margin-bottom: 60px;
}

@media (max-width: 430px) {
  .site-header__row { gap: 12px; }
  .hd-actions { gap: 8px; }
  .hd-city { padding: 9px 11px; }
  .hd-city__name { display: none; }
}
@media (max-width: 360px) {
  .brand { font-size: 17px; }
  .brand svg { width: 32px; height: 32px; }
  .hd-search-btn { width: 40px; height: 40px; }
}

/* Blog modal */
.bg-modal-wrap {
  position: fixed; inset: 0; z-index: 150;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  background: rgba(6, 10, 15, .65);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  opacity: 0; visibility: hidden;
  transition: opacity .3s var(--ease), visibility 0s linear .3s;
}
.bg-modal-wrap[data-open="true"] {
  opacity: 1; visibility: visible;
  transition: opacity .3s var(--ease), visibility 0s linear 0s;
}
.bg-modal {
  position: relative;
  width: min(760px, 100%);
  max-height: min(86dvh, 900px);
  display: flex; flex-direction: column;
  background: var(--c-panel);
  border: 1px solid var(--c-line2);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: translateY(16px) scale(.97);
  transition: transform .35s var(--ease-snap);
}
.bg-modal-wrap[data-open="true"] .bg-modal { transform: none; }
.bg-modal__close {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: rgba(14, 22, 32, .7);
  color: var(--c-text);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.bg-modal__close:hover { background: rgba(255, 181, 32, .2); color: var(--c-amber); }
.bg-modal__close svg { width: 17px; height: 17px; }
.bg-modal__cover { width: 100%; height: auto; aspect-ratio: 800 / 300; object-fit: cover; flex: 0 0 auto; }
.bg-modal__scroll { overflow-y: auto; padding: 24px 30px 32px; }
.bg-modal__meta {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  margin-bottom: 10px;
  font-size: 13px;
}
.bg-modal__meta .bg-modal__topic {
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255, 181, 32, .13);
  color: var(--c-amber);
  font-weight: 700;
}
.bg-modal__meta .num { color: var(--c-dim); }
.bg-modal h3 { font-size: clamp(20px, 3vw, 27px); margin-bottom: 14px; }
.bg-modal__scroll p { color: var(--c-muted); font-size: 15px; }
.bg-modal__scroll p + p { margin-top: 12px; }
.bg-card__more { cursor: pointer; }
@media (max-width: 520px) {
  .bg-modal__scroll { padding: 18px 18px 24px; }
}
