/* ============================================================
   SHOP NEW PRODUCTS BLOCK (.sn-*)
   Namespace: .sn- (shop new)
   ============================================================ */

.sn-block {
  margin: 24px 0 8px;
  background: linear-gradient(120deg, #0b1b2b 0%, #163453 60%, #1a7fff 100%);
  border-radius: 16px;
  border: 1px solid rgba(0, 178, 255, 0.45);
  overflow: hidden;
}

/* Заголовок секции */
.sn-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border-radius: 0;
  padding: 16px 20px 14px;
  border: none;
  border-bottom: 1px solid rgba(0, 178, 255, 0.2);
}

.sn-header--link-only {
  justify-content: flex-end;
}

.sn-header__title {
  font-family: 'Tektur', 'PT Sans', Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

.sn-header__link {
  font-family: 'PT Sans', Arial, sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.75;
  text-decoration: none;
  transition: opacity 0.2s;
}

.sn-header__link:hover {
  opacity: 1;
  color: #fff;
}

/* Сетка карточек */
.sn-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 20px;
}

.left-column .sn-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Карточка товара */
.sn-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e8edf2;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none !important;
  color: inherit;
  transition: box-shadow 0.22s, transform 0.22s, border-color 0.22s;
}

.sn-card:hover {
  box-shadow: 0 8px 28px rgba(1, 17, 43, 0.14);
  transform: translateY(-3px);
  border-color: rgba(0, 178, 255, 0.4);
  color: inherit;
}

/* Медиа-зона карточки */
.sn-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #f5f7fa;
  overflow: hidden;
}

.sn-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.sn-card:hover .sn-card__img {
  transform: scale(1.04);
}

/* Placeholder если нет картинки */
.sn-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f4f8;
}

.sn-card__placeholder svg {
  width: 56px;
  height: 56px;
  opacity: 0.5;
}

/* Иконка избранного */
.sn-card__fav {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: #b9bec5;
  padding: 0;
  transition: color 0.2s, background 0.2s;
  z-index: 2;
}

.sn-card__fav:hover {
  color: #00B2FF;
  background: #fff;
}

.sn-card__fav svg {
  width: 16px;
  height: 16px;
}

/* Тело карточки */
.sn-card__body {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.sn-card__name {
  font-family: 'PT Sans', Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #1a2736;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sn-card__color {
  font-family: 'PT Sans', Arial, sans-serif;
  font-size: 11px;
  color: #8d9daa;
  line-height: 1.3;
}

.sn-card__pricing {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  padding-top: 8px;
}

.sn-card__price {
  font-family: 'Tektur', 'PT Sans', Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #00B2FF;
  line-height: 1;
}

.sn-card__price--new {
  color: #00B2FF;
}

.sn-card__price--old {
  font-size: 12px;
  font-weight: 400;
  color: #b9bec5;
  text-decoration: line-through;
}

/* Адаптив */
@media (max-width: 1199px) {
  .sn-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 900px) {
  .sn-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .left-column .sn-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .sn-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 12px;
  }

  .sn-card__body {
    padding: 8px 10px 10px;
  }

  .sn-card__name {
    font-size: 12px;
  }

  .sn-card__price {
    font-size: 13px;
  }

  .left-column .sn-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ============================================================
   SHOP NEW PRODUCTS BLOCK (.sn-*)
   Namespace: .sn- (shop new)
   ============================================================ */

.sn-block {
  margin: 24px 0 8px;
  background: linear-gradient(120deg, #0b1b2b 0%, #163453 60%, #1a7fff 100%);
  border-radius: 16px;
  border: 1px solid rgba(0, 178, 255, 0.45);
  overflow: hidden;
}

/* Заголовок секции */
.sn-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border-radius: 0;
  padding: 16px 20px 14px;
  border: none;
  border-bottom: 1px solid rgba(0, 178, 255, 0.2);
}

.sn-header--link-only {
  justify-content: flex-end;
}

.sn-header__title {
  font-family: 'Tektur', 'PT Sans', Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

.sn-header__link {
  font-family: 'PT Sans', Arial, sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.75;
  text-decoration: none;
  transition: opacity 0.2s;
}

.sn-header__link:hover {
  opacity: 1;
  color: #fff;
}

/* Сетка карточек */
.sn-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 20px;
}

.left-column .sn-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Карточка товара */
.sn-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e8edf2;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none !important;
  color: inherit;
  transition: box-shadow 0.22s, transform 0.22s, border-color 0.22s;
}

.sn-card:hover {
  box-shadow: 0 8px 28px rgba(1, 17, 43, 0.14);
  transform: translateY(-3px);
  border-color: rgba(0, 178, 255, 0.4);
  color: inherit;
}

/* Медиа-зона карточки */
.sn-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #f5f7fa;
  overflow: hidden;
}

.sn-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.sn-card:hover .sn-card__img {
  transform: scale(1.04);
}

/* Placeholder если нет картинки */
.sn-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f4f8;
}

.sn-card__placeholder svg {
  width: 56px;
  height: 56px;
  opacity: 0.5;
}

/* Иконка избранного */
.sn-card__fav {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: #b9bec5;
  padding: 0;
  transition: color 0.2s, background 0.2s;
  z-index: 2;
}

.sn-card__fav:hover {
  color: #00B2FF;
  background: #fff;
}

.sn-card__fav svg {
  width: 16px;
  height: 16px;
}

/* Тело карточки */
.sn-card__body {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.sn-card__name {
  font-family: 'PT Sans', Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #1a2736;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sn-card__color {
  font-family: 'PT Sans', Arial, sans-serif;
  font-size: 11px;
  color: #8d9daa;
  line-height: 1.3;
}

.sn-card__pricing {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  padding-top: 8px;
}

.sn-card__price {
  font-family: 'Tektur', 'PT Sans', Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #00B2FF;
  line-height: 1;
}

.sn-card__price--new {
  color: #00B2FF;
}

.sn-card__price--old {
  font-size: 12px;
  font-weight: 400;
  color: #b9bec5;
  text-decoration: line-through;
}

/* Адаптив */
@media (max-width: 1199px) {
  .sn-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 900px) {
  .sn-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .left-column .sn-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .sn-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 12px;
  }

  .sn-card__body {
    padding: 8px 10px 10px;
  }

  .sn-card__name {
    font-size: 12px;
  }

  .sn-card__price {
    font-size: 13px;
  }

  .left-column .sn-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   ДИНАМО УФА — THEME 2025
   Navy / Cyan / Premium-Tech Visual System
   ============================================================ */

/* ------------------------------------------------------------
   1. DESIGN TOKENS
   ------------------------------------------------------------ */
:root {
  /* Palette */
  --navy:        #01112B;
  --navy-mid:    #163453;
  --navy-deep:   #0b1b2b;
  --cyan:        #00B2FF;
  --cyan-blue:   #1a7fff;
  --silver:      #B9BEC5;
  --silver-light:#dce3ea;
  --white:       #FFFFFF;
  --text-main:   #1a2736;
  --text-muted:  #8d9daa;

  /* Gradients */
  --grad-brand:  linear-gradient(120deg, #0b1b2b 0%, #163453 60%, #1a7fff 100%);
  --grad-hero:   linear-gradient(160deg, #01112B 0%, #163453 55%, #00B2FF 120%);
  --grad-card-overlay: linear-gradient(to top, rgba(1,17,43,0.92) 0%, rgba(1,17,43,0.4) 60%, transparent 100%);
  --menu-overlay: rgba(1, 17, 43, 0.72);
  --menu-panel-bg: radial-gradient(420px 320px at 110% 0%, rgba(76, 199, 255, 0.16), transparent 58%), linear-gradient(180deg, #081728 0%, #0F2942 100%);
  --menu-panel-shadow: -24px 0 48px rgba(1, 17, 43, 0.34);
  --menu-divider: rgba(246, 248, 251, 0.14);
  --menu-muted: rgba(140, 176, 202, 0.72);
  --menu-highlight: #4CC7FF;

  /* Shadows */
  --shadow-sm:   0 4px 12px rgba(1, 17, 43, 0.12);
  --shadow-md:   0 8px 24px rgba(1, 17, 43, 0.16);
  --shadow-lg:   0 16px 40px rgba(1, 17, 43, 0.22);
  --shadow-cyan: 0 4px 20px rgba(0, 178, 255, 0.28);

  /* Border radius */
  --r-sm:   8px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-pill: 999px;

  /* Spacing */
  --sp-1: 8px;
  --sp-2: 16px;
  --sp-3: 24px;
  --sp-4: 32px;
  --sp-5: 48px;

  /* Typography */
  --font-display: 'Tektur', 'PT Sans', Arial, sans-serif;
  --font-body:    'PT Sans', Arial, sans-serif;
}

/* ------------------------------------------------------------
   2. BASE
   ------------------------------------------------------------ */
body {
  background: #f7f9fc;
  color: var(--text-main);
  font-family: var(--font-body);
}

a {
  color: var(--navy-mid);
}
a:hover {
  color: var(--cyan);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--navy);
  letter-spacing: 0.02em;
}

/* ------------------------------------------------------------
   3. PREHEADER
   ------------------------------------------------------------ */
.preheader {
  background: rgba(1, 17, 43, 0.96);
  height: 38px;
  border-bottom: 1px solid rgba(0, 178, 255, 0.2);
}

.preheader__social-title {
  color: var(--silver);
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 38px;
}

.preheader__social-league {
  color: var(--silver);
  font-family: var(--font-body);
  font-size: 11px;
  opacity: 0.7;
  letter-spacing: 0.04em;
}

.preheader__social-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.75;
  position: relative;
  background: none !important;
  background-image: none !important;
  color: var(--white);
  text-indent: 0;
  transition: opacity 0.2s;
}
.preheader__social-item:hover {
  opacity: 1;
}

.preheader__social-icon {
  display: block;
  width: 16px;
  height: 16px;
  color: inherit;
}

.preheader__social-vk .preheader__social-icon {
  width: 18px;
  height: 18px;
}

.preheader__social-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.header__menu-overlay,
.mobile-menu-panel__header,
.mobile-menu-panel__section-label,
.mobile-menu-panel__footer,
.mobile-menu-panel__socials {
  display: none;
}

/* ------------------------------------------------------------
   4. HEADER & NAVIGATION
   ------------------------------------------------------------ */
.header {
  height: auto;
}

.menu-fix {
  display: none !important;
}

.top {
  background: var(--navy);
  height: 76px;
  box-shadow: 0 4px 24px rgba(1, 17, 43, 0.5);
}

.header .logo {
  width: 240px;
  height: 38px;
  background-size: contain;
  background-position: left center;
  flex-shrink: 0;
}

/* Nav links */
.topmenu > .root-lvl > a {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 76px;
  padding: 0 18px;
  color: #000;
  transition: background 0.2s, color 0.2s;
}

.topmenu > .root-lvl > a:hover,
.topmenu > .root-lvl > a.selected,
.topmenu > .root-lvl:hover > a,
.topmenu > .show-sublvl > a {
  background: var(--cyan);
  color: var(--navy);
}

/* Dropdown */
.topmenu-sub > .sub-lvl > a {
  background: var(--navy-mid);
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--silver);
  line-height: 44px;
  padding: 0 24px;
  border-left: 3px solid transparent;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
}

.topmenu-sub > .sub-lvl > a:hover,
.topmenu-sub > .sub-lvl > a.selected {
  background: var(--navy);
  color: var(--cyan);
  border-left-color: var(--cyan);
}

.topmenu-sublvl-block-wrap {
  box-shadow: var(--shadow-lg);
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  overflow: hidden;
  border: 1px solid rgba(0, 178, 255, 0.18);
  border-top: none;
}

.topmenu-sublvl-block-border,
.topmenu-sublvl-block-border-bottom {
  background: var(--cyan);
  height: 2px;
}

/* ------------------------------------------------------------
   5. FIXED MENU
   ------------------------------------------------------------ */
.menu-fix {
  background: rgba(1, 17, 43, 0.97);
  box-shadow: 0 2px 20px rgba(0, 178, 255, 0.15);
  border-bottom: 1px solid rgba(0, 178, 255, 0.3);
  height: 54px;
}

.menu-fix-list > li > a {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--silver);
  line-height: 54px;
  transition: color 0.2s, background 0.2s;
}

.menu-fix-list > li > a:hover,
.menu-fix-list > li > a.selected {
  background: var(--cyan);
  color: var(--navy);
}

/* ------------------------------------------------------------
   6. SECTION TITLES
   ------------------------------------------------------------ */
h1, .h1-title {
  background: var(--navy);
  border: 1px solid rgba(0, 178, 255, 0.45);
  border-bottom: none;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  padding: 14px 20px 13px 20px;
  border-radius: var(--r-sm) var(--r-sm) 0 0;
  position: relative;
}

.link-all-elems {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.75;
  float: right;
  line-height: 1;
  margin-top: 2px;
  transition: opacity 0.2s, color 0.2s;
}
.link-all-elems:hover {
  opacity: 1;
  color: var(--white);
}

/* ------------------------------------------------------------
   7. LAYOUT & WRAP
   ------------------------------------------------------------ */
.content {
  background: transparent;
  overflow: visible;
}


.left-column {
  background: transparent;
}

.columns {
  margin-top: 24px;
}

/* ------------------------------------------------------------
   8. SLIDER / HERO
   ------------------------------------------------------------ */

.slider-block {
  width: 100% !important;
  height: auto !important;
  background: transparent !important;
  border-radius: var(--r-lg);
  overflow: visible;
  padding: 0;
  box-shadow: none;
  margin-bottom: 24px;
}

.slider-block--fullwidth {
  border-radius: var(--r-lg);
  margin-bottom: 24px;
}

.slider-block-mobile {
  display: none;
}

.tv-block--fullwidth {
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: var(--shadow-lg);
}

/* Слайдер */
.hero-slider {
  width: 100%;
  position: relative;
}

.hero-slider.slick-loading .slick-list {
  background: transparent;
}

/* Слайд: фото на весь блок, текст поверх */
.hero-slide {
  position: relative !important;
  display: block !important;
  width: 100%;
  outline: none;
  aspect-ratio: 16 / 7;
  min-height: 440px;
  overflow: hidden;
  border-radius: var(--r-lg);
}

/* Фото на весь слайд */
.hero-slide__media {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.hero-slide__media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}

.hero-slide:hover .hero-slide__media img {
  transform: scale(1.03);
}

/* Текст с полупрозрачной подложкой снизу */
.hero-slide__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  box-sizing: border-box;
  padding: 48px 28px 24px;
  background: linear-gradient(to top, rgba(11, 27, 43, 0.88) 0%, rgba(11, 27, 43, 0.5) 60%, transparent 100%);
  text-decoration: none;
}

.hero-slide__content a {
  text-decoration: none !important;
}

.hero-slide__date {
  display: inline-flex;
  align-items: center;
  background: rgba(0, 178, 255, 0.18);
  color: #00B2FF;
  border: 1px solid rgba(0, 178, 255, 0.35);
  border-radius: 999px;
  padding: 4px 14px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  width: fit-content;
}

.hero-slide__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.02em;
  color: #ffffff;
  background: none;
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  text-transform: none;
}

.hero-slide__title a {
  color: #ffffff !important;
  text-decoration: none !important;
  transition: color 0.2s;
}

.hero-slide__title a:hover {
  color: #00B2FF !important;
}

/* Slick dots — общий сброс */
.slick-dotted.slick-slider {
  margin-bottom: 0;
}

/* hero-slider: внутренние обёртки Slick не должны ограничивать высоту */
.hero-slider .slick-slide > div {
  display: block;
  width: 100%;
  height: 100%;
}

/* Сброс полосок из all2024.css */
.slider-block .slick-dots {
  display: flex !important;
  flex-direction: row !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
  position: relative !important;
  bottom: auto !important;
  left: auto !important;
  right: auto !important;
  margin-top: 12px !important;
}

.slider-block .slick-dots > li {
  background: transparent !important;
  flex: none !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
}

.slider-block .slick-dots > li button:before {
  display: block !important;
  color: #b9bec5 !important;
  opacity: 1 !important;
  font-size: 10px !important;
}

.slider-block .slick-dots > li.slick-active button:before {
  color: var(--cyan) !important;
}

/* Dots для всех slick-слайдеров */
.slick-dots li button:before {
  color: #b9bec5 !important;
  opacity: 1 !important;
}
.slick-dots li.slick-active button:before {
  color: var(--cyan) !important;
  opacity: 1 !important;
}

/* maingames — точки через button (без ::before) */
.maingames .slick-dots li button {
  background: #b9bec5 !important;
}
.maingames .slick-dots li.slick-active button {
  background: var(--cyan) !important;
}

/* media-card-slider (видео, фото) — круглые кнопки-точки */
.media-card-slider .slick-dots li button {
  width: 10px !important;
  height: 10px !important;
  padding: 0 !important;
  border-radius: 50% !important;
  background: #b9bec5 !important;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.media-card-slider .slick-dots li button:before {
  display: none !important;
}
.media-card-slider .slick-dots li.slick-active button {
  background: var(--cyan) !important;
}

/* Slick arrows */
.hero-slider .slick-prev,
.hero-slider .slick-next {
  z-index: 2;
  width: 36px;
  height: 36px;
}
.hero-slider .slick-prev { left: 12px; }
.hero-slider .slick-next { right: 12px; }
.hero-slider .slick-prev:before,
.hero-slider .slick-next:before {
  font-size: 28px;
  color: rgba(255,255,255,0.7);
}

@media (max-width: 960px) {
  body {
    background-image: none;
  }

  .hero-slide {
    aspect-ratio: 4 / 3;
    min-height: 320px;
  }

  .hero-slide__title {
    font-size: 20px;
  }
}

@media (max-width: 600px) {
  .slider-block {
    border-radius: var(--r-md);
  }

  .hero-slide {
    aspect-ratio: 3 / 2;
    min-height: 240px;
  }

  .hero-slide__title {
    font-size: 17px;
  }

  .hero-slide__content {
    padding: 32px 16px 16px;
  }

  .news-item h3 a {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .hero-slide__title {
    font-size: 14px;
  }

  .news-item h3 a {
    font-size: 12px;
  }
}

/* Старые классы — обратная совместимость */
.red-datetime,
.slider-item-datetime {
  background: var(--cyan);
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  padding: 3px 12px;
  display: inline-block;
  margin-bottom: 10px;
}

/* ------------------------------------------------------------
   9. NEWS BLOCK
   ------------------------------------------------------------ */
.news-list {
  background: var(--white);
  border-radius: 0 0 var(--r-md) var(--r-md);
  border: 1px solid rgba(0, 178, 255, 0.45);
  border-top: none;
  padding: 4px 16px 24px 16px;
  box-shadow: var(--shadow-md);
}

.news-item {
  border-left: 4px solid var(--navy);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: 16px 16px 16px 20px;
  margin-bottom: 4px;
  position: relative;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.news-item:hover {
  border-left-color: var(--cyan);
  background: #f4f8fc;
  transform: translateX(3px);
}

.news-item h3 {
  margin-top: 6px;
}

.news-item h3 a {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s;
}

.news-item h3 a:hover {
  color: var(--cyan);
}

/* Дата — inline badge над заголовком, убираем абсолютное позиционирование */
.news-item-date,
.white-datetime {
  position: static !important;
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  padding: 3px 10px;
  line-height: 1.4;
  white-space: nowrap;
  margin-bottom: 6px;
  top: auto !important;
  left: auto !important;
}

.news-item:hover .news-item-date {
  background: var(--cyan);
  color: var(--navy);
}

.news-item-announce {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ------------------------------------------------------------
   10 & 11. MEDIA CARD SLIDER (video + photo — unified)
   ------------------------------------------------------------ */

/* Section wrappers */
.video-main-block,
.main-photo-block {
  background: transparent;
}

/* Slick track padding so cards don't clip on hover */
.media-card-slider {
  /* reset original flex layout — slick takes over */
  display: block !important;
}
.media-card-slider .slick-list {
  margin: 0 -10px;
  overflow: hidden;
}
.media-card-slider .slick-slide {
  padding: 0 10px;
  box-sizing: border-box;
}

.video-main-block .video-main-flex {
  margin-top: 16px;
}

.main-photo-block .main-photo-list {
  margin-top: 16px;
}

/* ---- Video card ---- */
.video-main-item {
  background: var(--navy);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.22s, border-color 0.22s;
  border: 1px solid rgba(0,178,255,0.15);
  width: 100% !important;
  height: auto !important;
  position: relative;
}
.video-main-item:hover {
  box-shadow: 0 0 0 2px var(--cyan), var(--shadow-lg);
  border-color: var(--cyan);
}

/* Video: 16:9 image via padding-top on the image div */
.video-main-image {
  position: relative;
  height: 0;
  padding-top: 56.25%;
  overflow: hidden;
  background: var(--navy-dark);
}
.video-main-image img {
  position: absolute !important;
  top: 0; left: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  transition: transform 0.3s;
  display: block;
}
.video-main-item:hover .video-main-image img {
  transform: scale(1.04);
}

/* ---- Photo card ---- */
.main-photo-item {
  background: var(--navy);
  overflow: hidden !important;
  position: relative !important;
  width: 100% !important;
  height: auto !important;
  display: flex;
  flex-direction: column;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.22s, border-color 0.22s;
  border: 1px solid rgba(0,178,255,0.15);
}
.main-photo-item:hover {
  box-shadow: 0 0 0 2px var(--cyan), var(--shadow-lg);
  border-color: var(--cyan);
}
.main-photo-item-image {
  position: relative !important;
  height: 0 !important;
  padding-top: 56.25% !important; /* 16:9 */
  overflow: hidden !important;
  background: var(--navy-dark);
}
.main-photo-item-image img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  transition: transform 0.3s;
  display: block;
}
.main-photo-item:hover .main-photo-item-image img {
  transform: scale(1.04);
}

/* ---- Video: play button (CSS triangle, centered in image) ---- */
.video-main-item:after {
  content: "";
  position: absolute;
  top: 28.125%; /* center of 56.25% image area */
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0,178,255,0.85);
  box-shadow: 0 0 0 4px rgba(0,178,255,0.25);
  /* triangle via clip-path */
  clip-path: none;
  z-index: 6;
  transition: background 0.2s, box-shadow 0.2s;
}
.video-main-item:before {
  content: "";
  position: absolute;
  top: 28.125%;
  left: 50%;
  transform: translate(-38%, -50%);
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 15px solid #fff;
  z-index: 7;
  pointer-events: none;
}
.video-main-item:hover:after {
  background: var(--cyan);
  box-shadow: 0 0 0 6px rgba(0,178,255,0.3);
}

/* ---- Video info bar ---- */
.video-main-info {
  background: transparent !important;
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
}
.video-main-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--white);
  line-height: 1.4;
  min-height: 2.8em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.video-main-date {
  font-size: 11px;
  color: var(--silver);
  opacity: 0.7;
  margin-top: 5px;
}
.video-main-item:hover .video-main-info,
.video-main-item:hover .video-main-title,
.video-main-item:hover .video-main-date {
  background: transparent !important;
  color: var(--white) !important;
  opacity: 1;
}

/* ---- Photo info bar ---- */
.main-photo-info {
  background: transparent !important;
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
}
.main-photo-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--white);
  line-height: 1.4;
  min-height: 2.8em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.main-photo-date {
  font-size: 11px;
  color: var(--silver);
  opacity: 0.7;
  margin-top: 5px;
}
.main-photo-item:hover .main-photo-info,
.main-photo-item:hover .main-photo-title,
.main-photo-item:hover .main-photo-date {
  background: transparent !important;
  color: var(--white) !important;
  opacity: 1;
}

/* ---- Slick arrows ---- */
.media-card-slider .slick-prev,
.media-card-slider .slick-next {
  width: 36px;
  height: 36px;
  background: var(--navy-mid);
  border: 1px solid rgba(0,178,255,0.3);
  border-radius: 50%;
  top: calc(28.125% - 18px); /* vertically centered in image */
  z-index: 10;
  transition: background 0.2s, border-color 0.2s;
}
.media-card-slider .slick-prev { left: -4px; }
.media-card-slider .slick-next { right: -4px; }
.media-card-slider .slick-prev:hover,
.media-card-slider .slick-next:hover {
  background: var(--cyan);
  border-color: var(--cyan);
}
.media-card-slider .slick-prev:before,
.media-card-slider .slick-next:before {
  color: var(--white);
  font-size: 16px;
  opacity: 1;
}

/* ------------------------------------------------------------
   12. GAMES CAROUSEL (main matches / schedule)
   ------------------------------------------------------------ */

/* Карточка игры — градиентный фон */
.maingames__item {
  background: var(--grad-brand) !important;
  border: 1px solid rgba(0, 178, 255, 0.25) !important;
  border-radius: var(--r-md) !important;
  box-shadow: var(--shadow-md);
  transition: border-color 0.2s, box-shadow 0.2s;
  overflow: hidden;
  margin: 0 6px;
}

.maingames__item:hover {
  border-color: rgba(0, 178, 255, 0.7) !important;
  box-shadow: 0 0 16px rgba(0, 178, 255, 0.25);
}

.maingames__item-result,
.maingames__item.maingames__item-result {
  border-top: 3px solid var(--cyan) !important;
}

/* Дата/время в шапке карточки */
.maingames__header {
  border-bottom: 1px solid rgba(0, 178, 255, 0.2) !important;
}

.maingames__datetime {
  background: transparent !important;
  color: var(--silver) !important;
  font-family: var(--font-display) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em !important;
}

/* Названия команд и счёт */
.maingames__team-name {
  color: var(--white) !important;
  font-family: var(--font-display) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.03em !important;
}

.maingames__team-score {
  color: var(--silver) !important;
  font-family: var(--font-display) !important;
  font-weight: 700 !important;
}

.maingames__team-score-win {
  color: var(--cyan) !important;
}

/* Пагинация (slick dots) — круглые точки */
.maingames .slick-dots {
  margin: 12px 0 6px !important;
}

.maingames .slick-dots li button {
  width: 10px !important;
  height: 10px !important;
  border-radius: 50% !important;
  transition: background 0.2s, transform 0.2s !important;
  padding: 0 !important;
}

.maingames .slick-dots li button:hover {
  background: rgba(255, 255, 255, 0.6) !important;
}

.maingames .slick-dots li.slick-active button {
  background: var(--cyan) !important;
  transform: scale(1.3) !important;
  box-shadow: 0 0 8px rgba(0, 178, 255, 0.6) !important;
}

/* ------------------------------------------------------------
   13. RIGHT COLUMN WIDGETS
   ------------------------------------------------------------ */
.main__nextgame {
  /* убираем bg2_130x.png с полоской, заменяем на чистый градиент */
  background: var(--grad-brand) !important;
  border: 1px solid rgba(0, 178, 255, 0.45) !important;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 20px;
}

.main__nextgame-title,
.main__nextgame-comp {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver);
}

.main__nextgame-teamname {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
}

.main__nextgame-versus {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--cyan);
}

.main__nextgame-datetime-value {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
}

/* Right column news */
.right-column .news-list-short {
  background: var(--white);
  border-radius: 0 0 var(--r-md) var(--r-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.right-column .news-short-item {
  border-bottom: 1px solid var(--silver-light);
  transition: background 0.18s;
}

.right-column .news-short-item:hover {
  background: #f0f6fc;
}

.right-column .news-short-item a {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--navy);
  text-decoration: none;
}
.right-column .news-short-item a:hover {
  color: var(--cyan);
}

/* Matches block */
.matches-block {
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.matches-block-list {
  background: var(--white);
  border-radius: 0 0 var(--r-md) var(--r-md);
}

.matches-block-list-item {
  border-bottom: 1px solid var(--silver-light);
  transition: background 0.18s;
}

.matches-block-list-item:hover {
  background: #e8f4fd;
}

.matches-block-middle-score {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.04em;
}

/* Tournament table */
.tmpl-ttable-block {
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* ------------------------------------------------------------
   14. PARTNERS
   ------------------------------------------------------------ */
.partners-block {
  margin-top: 24px;
}

.partners-block > .h1-title {
  margin: 0;
  padding: 14px 20px 13px;
  background: var(--navy);
  border: 1px solid rgba(0, 178, 255, 0.45);
  border-bottom: none;
  border-radius: 18px 18px 0 0;
  box-shadow: none;
  line-height: 1.2;
}

.partners-block > .partners-list {
  margin: 0 0 24px;
  padding: 14px 20px 20px;
  border: 1px solid rgba(76, 199, 255, 0.24);
  border-top: none;
  border-radius: 0 0 18px 18px;
  background: linear-gradient(120deg, #0b1b2b 0%, #163453 60%, #1a7fff 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px 28px;
  text-align: center;
}

.partners-block > .partners-list:last-child {
  margin-bottom: 8px;
}

.partners-block .partner-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 8px 12px;
}

.partners-block .partner-item:last-child {
  margin-bottom: 0;
}

.partners-block .partner-item img {
  display: block;
}

.partners-bottom {
  background: rgba(1, 17, 43, 0.04);
  border-top: 1px solid var(--silver-light);
  border-radius: var(--r-sm);
  padding: 20px;
  margin-top: 32px;
}

.partners-bottom-title {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* ------------------------------------------------------------
   15. FOOTER
   ------------------------------------------------------------ */
.footer {
  background: var(--navy);
  border-top: 2px solid var(--cyan);
  padding-top: 40px;
  padding-bottom: 0;
}

.footer-sitemap > li > a,
.footer-sitemap-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0, 178, 255, 0.2);
  display: block;
  margin-bottom: 8px;
  transition: color 0.18s, border-color 0.18s;
}

.footer-sitemap-label {
  cursor: default;
  color: rgba(255, 255, 255, 0.6);
}

.footer-sitemap > li > a:hover {
  color: var(--cyan);
  border-bottom-color: var(--cyan);
}

.footer-sitemap-sub > li > a {
  font-size: 13px;
  color: var(--silver);
  text-decoration: none;
  line-height: 2;
  transition: color 0.18s;
}

.footer-sitemap-sub > li > a:hover {
  color: var(--cyan);
}

.footer-copyrights {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(0, 178, 255, 0.15);
  padding: 16px 0;
  margin-top: 32px;
}

.footer__logo {
  width: 32px;
  height: 36px;
  background: url(/images/logo-sign-color.svg) no-repeat center / contain;
}

.copyright-ufimets {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--silver);
  opacity: 0.6;
  margin-top: 6px;
}

.copyright-stat,
.copyright-stat a {
  font-size: 12px;
  color: var(--silver);
  opacity: 0.4;
  text-decoration: none;
  transition: opacity 0.2s;
}
.copyright-stat a:hover {
  opacity: 0.8;
  color: var(--silver);
}

/* ------------------------------------------------------------
   16. BUTTONS
   ------------------------------------------------------------ */
/* Primary — cyan bg, navy text */
.btn,
.btn-primary,
a.btn,
input[type="submit"],
button[type="submit"] {
  display: inline-block;
  background: var(--cyan);
  color: var(--navy) !important;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none !important;
  border: 2px solid var(--cyan);
  border-radius: var(--r-pill);
  padding: 11px 28px;
  min-height: 44px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(0, 178, 255, 0.25);
}

.btn:hover,
.btn-primary:hover,
a.btn:hover,
input[type="submit"]:hover,
button[type="submit"]:hover {
  background: transparent;
  color: var(--cyan) !important;
  box-shadow: 0 4px 20px rgba(0, 178, 255, 0.35);
}

/* Кнопка "Купить билет" в правой колонке */
.main__tickets {
  display: flex;
  justify-content: center;
  margin: 0 0 20px;
}

.main__tickets a {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  background: var(--cyan) !important;
  color: var(--navy) !important;
  font-family: var(--font-display) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  border: 2px solid var(--cyan) !important;
  border-radius: var(--r-pill) !important;
  padding: 12px 32px !important;
  line-height: 1 !important;
  min-height: 44px !important;
  width: auto !important;
  box-shadow: var(--shadow-cyan) !important;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s !important;
}

.main__tickets a:hover {
  background: transparent !important;
  color: var(--cyan) !important;
  box-shadow: 0 4px 24px rgba(0, 178, 255, 0.45) !important;
}

/* Secondary — navy bg, cyan border */
.btn-secondary,
a.btn-secondary {
  background: var(--navy);
  color: var(--white) !important;
  border-color: var(--cyan);
  box-shadow: none;
}

.btn-secondary:hover,
a.btn-secondary:hover {
  background: var(--cyan);
  color: var(--navy) !important;
}

/* ------------------------------------------------------------
   17. FORMS & INPUTS
   ------------------------------------------------------------ */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="search"],
textarea,
select {
  border: 1px solid var(--silver-light);
  border-radius: var(--r-sm);
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-main);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="search"]:focus,
textarea:focus,
select:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0, 178, 255, 0.15);
}

/* ------------------------------------------------------------
   18. PAGINATION
   ------------------------------------------------------------ */
.paginator {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  padding: 24px 0 8px;
}

.paginator a,
.paginator span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border-radius: var(--r-sm);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: 1px solid var(--silver-light);
  color: var(--navy);
  background: var(--white);
  transition: background 0.18s, border-color 0.18s, color 0.18s;
}

.paginator a:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.paginator .active,
.paginator .current {
  background: var(--cyan);
  border-color: var(--cyan);
  color: var(--navy);
  font-weight: 700;
}

/* ------------------------------------------------------------
   19. BREADCRUMBS
   ------------------------------------------------------------ */
.breadcrumbs {
  display: block;
  background: var(--navy);
  border-left: 1px solid rgba(0, 178, 255, 0.45);
  border-right: 1px solid rgba(0, 178, 255, 0.45);
  border-bottom: 1px solid rgba(0, 178, 255, 0.18);
  margin-top: -1px;
  padding: 10px 20px;
  font-size: 12px;
  font-family: var(--font-body);
}

.breadcrumbs-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
}

.breadcrumbs-list > li {
  float: none;
  position: static;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.35;
}

.breadcrumbs-list > li:after {
  content: "\2192";
  position: static;
  display: inline-block;
  margin: 0 7px;
  color: rgba(185, 190, 197, 0.72);
}

.breadcrumbs-list > li.breadcrumbs-last-item:after {
  content: none;
}

.breadcrumbs .clear {
  display: none;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: color 0.18s;
}

.breadcrumbs a:hover {
  color: var(--cyan);
}

/* ------------------------------------------------------------
   20. BANNERS
   ------------------------------------------------------------ */
.banner-item {
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s, box-shadow 0.2s;
}

.banner-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* ------------------------------------------------------------
   21. MOBILE MENU
   ------------------------------------------------------------ */
@media screen and (max-width: 1199px) {
  .wrapper {
    width: 100%;
    padding: 0 16px;
    box-sizing: border-box;
  }

  .top {
    height: auto;
    min-height: 64px;
  }

  .header__top-logo {
    padding: 14px 0;
  }
}

@media screen and (max-width: 960px) {
  .partners-block {
    margin-top: 24px;
  }

  .partners-block > .h1-title {
    padding: 14px 14px 12px;
    font-size: 12px;
  }

  .partners-block > .partners-list {
    margin: 0 0 20px;
    padding: 12px 14px 16px;
    gap: 14px 18px;
  }

  .partners-block > .partners-list:last-child {
    margin-bottom: 8px;
  }

  .partners-block .partner-item {
    padding: 6px 8px;
  }

  .media-card-slider {
    padding-bottom: 24px;
  }

  .media-card-slider .slick-prev,
  .media-card-slider .slick-next {
    display: none !important;
  }

  .media-card-slider .slick-dots {
    position: static;
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 14px 0 0;
  }

  .media-card-slider .slick-dots li {
    width: auto;
    height: auto;
    margin: 0;
  }

  .media-card-slider .slick-dots li button {
    width: 10px !important;
    height: 10px !important;
    padding: 0 !important;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  }

  .media-card-slider .slick-dots li button:before {
    display: none;
  }

  .media-card-slider .slick-dots li.slick-active button {
    background: var(--cyan);
    transform: scale(1.25);
    box-shadow: 0 0 8px rgba(0, 178, 255, 0.45);
  }

  .slider-block-mobile {
    display: block !important;
    height: 268px;
    margin: 18px 0 20px;
    border-radius: var(--r-md);
  }

  .slider-block-mobile .slider__wrap,
  .slider-block-mobile .slider-item {
    height: 268px;
  }

  .slider-block-mobile .slider-item-text {
    padding: 18px 16px 18px;
  }

  .slider-block-mobile .slider-item-text h2 {
    font-size: 18px;
    line-height: 1.2;
  }

  .slider-block-mobile .slider-item-datetime {
    margin-bottom: 8px;
  }

  .maintickets {
    display: flex;
    justify-content: center;
    padding: 20px 0 0;
  }

  .maintickets > a,
  .main__tickets a {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 100% !important;
    max-width: 320px;
    min-height: 48px !important;
    padding: 12px 20px !important;
    border-radius: 14px !important;
    border: 1px solid rgba(0, 178, 255, 0.46) !important;
    background: linear-gradient(135deg, rgba(13, 107, 177, 0.96) 0%, rgba(0, 178, 255, 0.88) 100%) !important;
    box-shadow: 0 10px 24px rgba(0, 118, 204, 0.24) !important;
    color: var(--white) !important;
    font-family: var(--font-display) !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    line-height: 1.15 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    text-align: center;
  }

  .maintickets > a:hover,
  .main__tickets a:hover {
    background: linear-gradient(135deg, rgba(13, 107, 177, 0.98) 0%, rgba(0, 178, 255, 0.92) 100%) !important;
    box-shadow: 0 12px 28px rgba(0, 118, 204, 0.28) !important;
    color: var(--white) !important;
  }

  .maingames {
    padding-top: 18px;
  }

  .maingames .slick-list {
    margin: 0 -6px;
  }

  .maingames .slick-slide {
    box-sizing: border-box;
    height: auto;
    padding: 0 6px;
  }

  .maingames .slick-slide > div {
    display: flex;
    justify-content: center;
    height: 100%;
  }

  .maingames__item {
    width: 100% !important;
    max-width: 340px;
    margin: 0 auto;
  }

  .maingames__header {
    min-height: 34px;
  }

  .maingames__datetime {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 4px 12px;
    line-height: 1.2 !important;
    text-align: center;
  }

  .maingames__team {
    gap: 12px;
    padding: 0 16px;
  }

  .maingames__team-info {
    flex: 1 1 auto;
    min-width: 0;
  }

  .maingames__team-logo {
    margin-right: 12px;
    flex-shrink: 0;
  }

  .maingames__team-name {
    font-size: 14px !important;
    line-height: 1.25 !important;
    white-space: normal;
  }

  .maingames__team-score {
    flex: 0 0 auto;
    margin-left: 8px;
    font-size: 20px !important;
  }
}

@media screen and (max-width: 900px) {
  .preheader {
    height: auto;
  }

  .preheader .wrapper,
  .header .top .wrapper {
    padding: 0 12px;
  }

  .preheader__social {
    min-height: 38px;
    padding: 6px 0;
  }

  .preheader__social-left,
  .preheader__social-right {
    gap: 8px;
  }

  .preheader__social-league {
    font-size: 10px;
    line-height: 1;
    white-space: nowrap;
  }

  .preheader__social-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    margin: 0 !important;
    padding: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08) !important;
    background-image: none !important;
    color: var(--white);
    text-indent: 0;
  }

  .preheader__social-item:hover {
    background: rgba(255, 255, 255, 0.14) !important;
  }

  .preheader__social-icon {
    display: block;
    width: 16px;
    height: 16px;
  }

  .preheader__social-vk .preheader__social-icon {
    width: 18px;
    height: 18px;
  }

  .header__top-logo {
    gap: 14px;
    padding: 12px 2px 14px;
  }

  .header .logo {
    width: clamp(280px, 80vw, 480px);
    height: 68px;
  }

  .header__menu-mobile {
    display: flex;
    align-items: center;
    margin-left: auto;
  }

  .header__menu-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }

  .header__menu-checker {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    flex-shrink: 0;
    color: var(--white);
    transition: background 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
  }

  .header__menu-checker:after {
    content: "";
    position: absolute;
    inset: 0;
    width: 18px;
    height: 14px;
    margin: auto;
    background:
      linear-gradient(currentColor 0 0) top / 100% 2px no-repeat,
      linear-gradient(currentColor 0 0) center / 100% 2px no-repeat,
      linear-gradient(currentColor 0 0) bottom / 100% 2px no-repeat;
  }

  .header__menu-checker:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
  }

  .menu-open .header__menu-checker {
    background: linear-gradient(135deg, #4CC7FF 0%, #00B2FF 100%);
    border-color: transparent;
    box-shadow: 0 12px 24px rgba(0, 178, 255, 0.24);
    color: var(--navy);
  }

  /* Action icon buttons */
  .header__actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 8px;
  }

  .header__action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    color: var(--white);
    text-decoration: none;
    flex-shrink: 0;
    transition: background 0.24s ease, border-color 0.24s ease;
  }

  .header__action-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
  }

  .header__menu-checker:focus-visible,
  .mobile-menu-panel__close:focus-visible {
    outline: 2px solid var(--menu-highlight);
    outline-offset: 2px;
  }

  .header__menu-input:checked ~ .header__menu-overlay {
    opacity: 1;
    visibility: visible;
  }

  .header__menu-input:checked ~ nav.mobile-menu-panel {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .header__menu-input:checked ~ nav.mobile-menu-panel .topmenu {
    display: flex !important;
  }

  .header__menu-input:checked ~ .header__menu-overlay,
  .header__menu-input:checked ~ nav.mobile-menu-panel {
    transition-timing-function: ease-out;
  }

  .header__menu-input:checked ~ nav.mobile-menu-panel .click-to-show-child.show-sublvl > a:after {
    transform: translateY(-30%) rotate(-135deg);
  }

  .header__menu-input:checked ~ nav.mobile-menu-panel .topmenu-sublvl-block {
    pointer-events: auto;
  }

  body.menu-open {
    overflow: hidden;
  }

  .header__menu-overlay {
    display: block;
    position: fixed;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    background: var(--menu-overlay);
    backdrop-filter: blur(12px);
    transition: opacity 0.24s ease-out, visibility 0.24s ease-out;
    z-index: 120;
  }

  .header nav.mobile-menu-panel {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    min-width: unset;
    min-height: 100vh;
    height: 100dvh;
    background: var(--menu-panel-bg);
    z-index: 130;
    overflow: hidden;
    transform: translateX(36px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.24s ease-out, opacity 0.24s ease-out, visibility 0.24s ease-out;
    box-shadow: var(--menu-panel-shadow);
    padding-top: 0;
  }

  .mobile-menu-panel__inner {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    box-sizing: border-box;
    padding: calc(18px + env(safe-area-inset-top)) 24px calc(88px + env(safe-area-inset-bottom));
    -webkit-overflow-scrolling: touch;
  }

  .mobile-menu-panel__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
    width: 90%;
  }

  .mobile-menu-panel__eyebrow,
  .mobile-menu-panel__section-label {
    color: var(--menu-muted);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1.2;
    text-transform: uppercase;
  }

  .mobile-menu-panel__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    font-size: 30px;
    line-height: 1;
    text-decoration: none;
    transition: background 0.24s ease, border-color 0.24s ease, color 0.24s ease;
  }

  .mobile-menu-panel__close:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(76, 199, 255, 0.42);
    color: var(--menu-highlight);
  }

  .mobile-menu-panel__section-label {
    display: block;
    margin: 0 0 12px;
  }

  .topmenu {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 0;
    width: 100%;
  }

  .topmenu > .root-lvl {
    float: none;
    display: block;
    width: 100%;
    border-bottom: 1px solid var(--menu-divider);
  }

  .topmenu > .root-lvl > a {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 54px;
    padding: 16px 34px 16px 0;
    background: transparent !important;
    color: #ffffff;
    font-family: var(--font-display);
    font-size: clamp(19px, 6vw, 23px);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
  }

  .topmenu > .root-lvl > a.selected {
    color: var(--menu-highlight);
  }

  .topmenu > .root-lvl:hover > a,
  .topmenu > .show-sublvl > a,
  .topmenu > .show-sublvl > a.selected {
    background: transparent;
    color: #ffffff;
  }

  .click-to-show-child > a:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 14px;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--menu-highlight);
    border-bottom: 2px solid var(--menu-highlight);
    transform: translateY(-70%) rotate(45deg);
    transition: transform 0.24s ease;
  }

  .topmenu-sublvl-block {
    position: static;
    left: auto;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.24s ease, opacity 0.18s ease;
  }

  .show-sublvl > .topmenu-sublvl-block {
    max-height: 720px;
    opacity: 1;
  }

  .topmenu > .root-lvl:hover > .topmenu-sublvl-block,
  .topmenu > .show-sublvl > .topmenu-sublvl-block {
    left: auto;
  }

  .topmenu-sublvl-block-wrap {
    box-sizing: border-box;
    border-radius: 0;
    box-shadow: none;
    border: none;
    border-left: 2px solid rgba(76, 199, 255, 0.46);
    margin: 8px 0 14px 10px;
    padding: 2px 14px 4px 14px;
    background: rgba(255, 255, 255, 0.035);
    border-radius: 0 14px 14px 0;
  }

  .topmenu-sublvl-block-border,
  .topmenu-sublvl-block-border-bottom {
    display: none;
  }

  .topmenu-sub {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .topmenu-sub > .sub-lvl > a {
    padding: 11px 0;
    min-height: 42px;
    display: flex;
    align-items: center;
    background: transparent;
    color: rgba(246, 248, 251, 0.82);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.35;
    letter-spacing: 0.01em;
    text-transform: none;
    text-decoration: none;
    border-left: none;
    border-bottom: 1px solid rgba(246, 248, 251, 0.07);
  }

  .topmenu-sub > .sub-lvl:last-child > a {
    border-bottom: none;
  }

  .mobile-menu-panel__footer {
    display: block;
    margin-top: auto;
    padding-top: 28px;
  }

  .mobile-menu-panel__socials {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid rgba(246, 248, 251, 0.08);
  }

  .mobile-menu-panel__social {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 48px;
    padding: 12px 0;
    color: rgba(246, 248, 251, 0.88);
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.3;
    text-decoration: none;
    border-bottom: 1px solid rgba(246, 248, 251, 0.08);
  }

  .mobile-menu-panel__social:last-child {
    border-bottom: none;
  }

  .mobile-menu-panel__social-icon {
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    color: var(--white);
  }

  .mobile-menu-panel__social:first-child .mobile-menu-panel__social-icon,
  .mobile-menu-panel__social:nth-child(3) .mobile-menu-panel__social-icon {
    width: 18px;
    height: 18px;
  }
}

/* ------------------------------------------------------------
   22. CARDS — generic
   ------------------------------------------------------------ */
.content-card {
  background: var(--white);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform 0.22s, box-shadow 0.22s;
}

.content-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* News page list */
.news-page-item {
  background: var(--white);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--navy);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  margin-bottom: 12px;
}

.news-page-item:hover {
  border-left-color: var(--cyan);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

/* ------------------------------------------------------------
   23. GALLERY
   ------------------------------------------------------------ */
.albums {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.videos {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.album-item,
.photo-item {
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s, box-shadow 0.22s;
}

.video-item {
  position: relative;
  width: auto !important;
  margin: 0 !important;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
  background: var(--navy);
  border: 1px solid rgba(0, 178, 255, 0.15);
  display: flex !important;
  flex-direction: column;
}

.album-item {
  position: relative;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column;
  background: var(--navy);
  border: 1px solid rgba(0, 178, 255, 0.15);
}

.album-item:hover,
.video-item:hover,
.photo-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.video-item:hover {
  border-color: var(--cyan);
  background: var(--navy);
}

.album-item img,
.video-item img,
.photo-item img {
  transition: transform 0.3s;
}

.album-item img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  display: block;
}

.video-item-image {
  position: relative;
  overflow: hidden;
  background: var(--navy-dark);
}

.video-item-image img {
  width: 100%;
  aspect-ratio: 43 / 30;
  object-fit: cover;
  display: block;
}

.album-item:hover img,
.video-item:hover img,
.photo-item:hover img {
  transform: scale(1.05);
}

.album-item ins {
  display: none;
}

.album-item-info {
  position: static !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  padding: 12px 14px 14px !important;
  background: transparent !important;
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  min-height: 66px;
}

.album-item-info-title {
  max-width: none !important;
  flex: 1 1 auto;
  font-family: var(--font-display);
  font-size: 14px !important;
  font-weight: 600;
  line-height: 1.4 !important;
  letter-spacing: 0.02em;
  min-height: 2.8em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--white);
}

.album-item-info-count {
  flex: 0 0 auto;
  margin: 2px 0 0 !important;
  padding-left: 14px !important;
  background-position: 0 2px !important;
  line-height: 1.2 !important;
  font-size: 12px !important;
  font-weight: 700;
  color: var(--white);
  opacity: 0.8;
  white-space: nowrap;
}

.video-item-header {
  padding: 12px 14px 14px !important;
  display: flex;
  flex-direction: column;
}

.video-item h3 {
  color: var(--white) !important;
  font-family: var(--font-display);
  font-size: 14px !important;
  line-height: 1.4 !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em;
  min-height: 2.8em;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.video-item-date {
  font-size: 11px !important;
  color: var(--silver) !important;
  opacity: 0.7;
  margin-top: 5px;
}

.video-item-announce {
  display: none;
}

.video-item:hover h3,
.video-item:hover .video-item-date {
  color: var(--white) !important;
}

/* Album caption overlay */
.album-item-name {
  background: var(--grad-card-overlay);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--white);
}

@media (max-width: 900px) {
  .videos,
  .albums {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ------------------------------------------------------------
   24. PLAYERS / COACHES CARDS
   ------------------------------------------------------------ */
.player-item,
.coach-item,
.admin-item {
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform 0.22s, box-shadow 0.22s;
}

.player-item:hover,
.coach-item:hover,
.admin-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.player-item-number,
.player-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: var(--cyan);
  letter-spacing: -0.02em;
  line-height: 1;
}

.player-item-name,
.player-name,
.coach-name {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
}

.player-item-pos,
.player-position {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Player card top accent */
.player-item::before,
.coach-item::before {
  content: '';
  display: block;
  height: 4px;
  background: var(--grad-brand);
}

/* ------------------------------------------------------------
   25. SCHEDULE TABLE
   ------------------------------------------------------------ */
.schedule-table-item {
  background: var(--white);
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--navy);
  transition: border-color 0.18s, background 0.18s;
  margin-bottom: 6px;
}

.schedule-table-item:hover {
  border-left-color: var(--cyan);
  background: #f0f7ff;
}

/* Win/loss indicators */
.schedule-win {
  background: var(--cyan);
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  padding: 3px 10px;
}

.schedule-lose {
  background: rgba(1, 17, 43, 0.08);
  color: var(--text-muted);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  padding: 3px 10px;
}

/* ------------------------------------------------------------
   26. CONTENT TEXT AREAS
   ------------------------------------------------------------ */
.text {
  background: var(--white);
  border-radius: 0 0 var(--r-md) var(--r-md);
  box-shadow: var(--shadow-md);
  padding: 24px 28px;
}

.text h2, .text h3, .text h4 {
  font-family: var(--font-display);
  color: var(--navy);
  letter-spacing: 0.03em;
}

/* Normalize old editor-made blue underlined pseudo-headings in content */
.text p > [style*="#0000ff"][style*="underline"],
.text div.wall_post_text > [style*="#0000ff"][style*="underline"] {
  display: block;
  margin: 24px 0 12px;
  color: var(--navy) !important;
  text-decoration: none !important;
  font-family: var(--font-display) !important;
  font-size: 20px !important;
  line-height: 1.3 !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em;
}

.text p > [style*="#0000ff"][style*="underline"] *,
.text div.wall_post_text > [style*="#0000ff"][style*="underline"] * {
  color: inherit !important;
  text-decoration: none !important;
  font-family: inherit !important;
  font-size: inherit !important;
  line-height: inherit !important;
  font-weight: inherit !important;
}

.text table tr:nth-child(even) {
  background: #e8f4fd;
}

.text table th {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ------------------------------------------------------------
   27. MODAL
   ------------------------------------------------------------ */
.modal-overlay {
  position: fixed;
  inset: 0;
  display: none;
  background: rgba(1, 17, 43, 0.76);
  backdrop-filter: blur(8px);
  z-index: 999;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 1000;
  background: transparent !important;
}

.modal.is-visible {
  display: flex !important;
}

.modal__dialog {
  width: 100%;
  max-width: 560px;
  position: relative;
  overflow: hidden;
  padding: 32px 28px 28px;
  background: linear-gradient(160deg, #061429 0%, #0b1d3a 55%, #13345c 100%);
  color: var(--white);
  border: 1px solid rgba(0, 178, 255, 0.32);
  border-radius: var(--r-lg);
  box-shadow: 0 32px 80px rgba(1, 17, 43, 0.45);
}

.modal__dialog:before {
  content: "";
  position: absolute;
  top: -80px;
  right: -70px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(0, 178, 255, 0.2) 0%, transparent 72%);
  pointer-events: none;
}

.modal__title {
  margin: 0 44px 20px 0;
  color: var(--white) !important;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none !important;
}

.modal__links {
  display: grid;
  gap: 14px;
  margin: 0;
}

.modal__links a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 14px 18px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(0, 178, 255, 0.28);
  background: rgba(0, 178, 255, 0.14);
  color: var(--white) !important;
  text-decoration: none !important;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.04em;
  text-align: center;
  transition: transform 0.18s, border-color 0.18s, background 0.18s, box-shadow 0.18s, color 0.18s;
}

.modal__links a:visited {
  color: var(--white) !important;
}

.modal__links a:hover {
  transform: translateY(-1px);
  background: var(--cyan);
  border-color: var(--cyan);
  box-shadow: var(--shadow-cyan);
  color: var(--navy) !important;
}

.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white) !important;
  text-decoration: none !important;
  font-size: 28px;
  line-height: 1;
  transition: transform 0.18s, background 0.18s, border-color 0.18s, color 0.18s;
}

.modal__close:hover {
  transform: rotate(90deg);
  background: var(--cyan);
  border-color: var(--cyan);
  color: var(--navy) !important;
}

@media (max-width: 640px) {
  .modal {
    padding: 16px;
  }

  .modal__dialog {
    padding: 28px 18px 18px;
  }

  .modal__title {
    margin-right: 38px;
    font-size: 18px;
  }

  .modal__links a {
    min-height: 52px;
    font-size: 14px;
    padding: 12px 14px;
  }
}

/* ------------------------------------------------------------
   28. MISC UTILITIES
   ------------------------------------------------------------ */
/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  background: var(--cyan);
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  padding: 3px 10px;
  line-height: 1.4;
}

.badge-navy {
  background: var(--navy);
  color: var(--cyan);
}

/* Tag/chip */
.tag {
  display: inline-flex;
  align-items: center;
  background: rgba(1, 17, 43, 0.07);
  color: var(--navy-mid);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  padding: 4px 12px;
}

/* Accent divider */
.section-divider {
  height: 2px;
  background: var(--grad-brand);
  border-radius: var(--r-pill);
  border: none;
  margin: 32px 0;
}

/* Gradient hero overlay for section headers */
.section-hero {
  background: var(--grad-brand);
  padding: 48px 32px;
  border-radius: var(--r-lg);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.section-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 178, 255, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.section-hero h1,
.section-hero h2 {
  color: var(--white);
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: none;
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 8px;
}

.section-hero p {
  color: var(--silver);
  font-size: 15px;
}

/* ------------------------------------------------------------
   29. PROMO-BANNER (билеты)
   ------------------------------------------------------------ */
.promo-banner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  padding: 28px calc(50vw - 50%);
  padding-left: max(32px, calc(50vw - 600px));
  padding-right: max(32px, calc(50vw - 600px));
  border-radius: 0;
  text-decoration: none !important;
  color: #ffffff !important;
  background: linear-gradient(120deg, #0b1b2b 0%, #163453 60%, #1a7fff 100%);
  border: none;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  margin-top: 24px;
  margin-bottom: 24px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  transition: box-shadow 0.2s, transform 0.2s;
}

.promo-banner:hover {
  box-shadow: 0 32px 80px rgba(1, 17, 43, 0.45);
  transform: translateY(-2px);
}

.promo-banner__media {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 16 / 10;
}

.promo-banner__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.4s ease;
}

.promo-banner:hover .promo-banner__image {
  transform: scale(1.04);
}

.promo-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(11, 27, 43, 0.2), rgba(26, 127, 255, 0.4));
  pointer-events: none;
}

.promo-banner__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.promo-banner__content h3 {
  margin: 0;
  font-size: 26px;
  font-family: var(--font-display);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
  letter-spacing: 0.02em;
}

.promo-banner__content p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  margin: 0;
  font-family: var(--font-display);
}

.promo-banner__tag {
  display: inline-flex;
  align-items: center;
  background: rgba(0, 178, 255, 0.18);
  color: #00B2FF;
  border: 1px solid rgba(0, 178, 255, 0.35);
  border-radius: 999px;
  padding: 4px 14px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-display);
  font-weight: 600;
  width: fit-content;
}

.promo-banner__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: #00B2FF;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.04em;
}

@media (max-width: 960px) {
  .promo-banner {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

@media (max-width: 600px) {
  .promo-banner {
    padding-top: 16px;
    padding-bottom: 16px;
    border-radius: 0;
    margin-bottom: 16px;
  }

  .promo-banner__content h3 {
    font-size: 18px;
  }
}

/* ------------------------------------------------------------
   30. Header Style Transfer
   Keep current content, move only the look toward the new topbar.
   ------------------------------------------------------------ */
.preheader {
  background: linear-gradient(90deg, #0b1b2b 0%, #0f2942 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  height: auto;
}

.preheader .wrapper {
  padding: 8px 32px;
}

.preheader__social {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  grid-template-areas: "left title right";
  align-items: center;
  gap: 18px;
  min-height: 40px;
}

.preheader__social-left,
.preheader__social-right {
  position: static;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
}

.preheader__social-left {
  grid-area: left;
  justify-self: start;
}

.preheader__social-right {
  grid-area: right;
  justify-self: end;
}

.preheader__social-title {
  position: static;
  grid-area: title;
  justify-self: center;
  color: #ffffff;
  font-family: "Tektur", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
  white-space: nowrap;
  text-transform: uppercase;
}

.preheader__social-title-accent {
  color: #00B2FF;
}

.preheader__social-league {
  margin-right: 2px;
  color: #ffffff;
  font-family: "Tektur", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.preheader__social-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 86px;
  min-height: 46px;
  padding: 0 16px 0 14px;
  margin: 0 !important;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%) !important;
  background-image: none !important;
  color: #f6f8fb;
  font-family: "Tektur", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
  opacity: 1;
  text-decoration: none;
  text-indent: 0;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 8px 18px rgba(1, 17, 43, 0.12);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.preheader__social-item:hover {
  background: linear-gradient(180deg, rgba(76, 199, 255, 0.22) 0%, rgba(255, 255, 255, 0.08) 100%) !important;
  border-color: rgba(76, 199, 255, 0.3);
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 12px 24px rgba(1, 17, 43, 0.18);
  transform: translateY(-1px);
}

.preheader__social-icon {
  display: block;
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  color: inherit;
}

.preheader__social-vk .preheader__social-icon {
  width: 18px;
  height: 18px;
}

.preheader__social-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.preheader__social-vk::after,
.preheader__social-tg::after {
  content: none;
}

.preheader__social-item {
  min-width: 46px;
  padding: 0;
  gap: 0;
}

.preheader__social-icon {
  width: 18px;
  height: 18px;
}

.preheader__social-vk .preheader__social-icon {
  width: 22px;
  height: 22px;
}

.header {
  background: transparent;
}

.top {
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
  height: auto;
}

.header .top .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 32px 12px;
}

.header__top-logo {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0;
}

.header .logo {
  display: block;
  width: 280px;
  height: 96px;
  background:
    url(/brand/dynamo/logo_on_silver_bg_transparent.png) left center / 88px 88px no-repeat,
    url(/images/lettering_white.svg) right center / 176px auto no-repeat;
  text-indent: -9999px;
}

@media (min-width: 901px) {
  .topmenu {
    gap: 6px;
    flex-wrap: wrap;
  }

  .topmenu > .root-lvl {
    float: none;
  }

  .topmenu > .root-lvl > a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #000;
    font-family: "Tektur", system-ui, sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  }

  .topmenu > .root-lvl > a:hover,
  .topmenu > .root-lvl > a.selected,
  .topmenu > .root-lvl:hover > a,
  .topmenu > .show-sublvl > a {
    background: linear-gradient(135deg, #4cc7ff 0%, #00b2ff 100%);
    color: #0b1b2b;
    box-shadow: 0 12px 24px rgba(0, 178, 255, 0.2);
  }

  .topmenu-sublvl-block {
    top: calc(100% + 10px);
  }

  .topmenu-sublvl-block-wrap {
    min-width: 240px;
    padding: 14px 16px;
    border-radius: 16px;
    background: #0f2942;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.25);
  }

  .topmenu-sublvl-block-border,
  .topmenu-sublvl-block-border-bottom {
    display: none;
  }

  .topmenu-sub {
    display: grid;
    gap: 6px;
  }

  .topmenu-sub > .sub-lvl > a {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 4px 0;
    background: transparent;
    color: #f6f8fb;
    font-family: "Tektur", system-ui, sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.03em;
    line-height: 1.2;
    text-decoration: none;
    border-left: none;
    transition: color 0.2s ease;
  }

  .topmenu-sub > .sub-lvl > a:hover,
  .topmenu-sub > .sub-lvl > a.selected {
    background: transparent;
    color: #00b2ff;
  }
}

.menu-fix {
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
  height: 56px;
}

.menu-fix-logo {
  background: url(/brand/dynamo/logo_on_silver_bg_transparent.png) center / contain no-repeat;
  width: 40px;
  height: 40px;
  top: 8px;
  left: 18px;
}

.menu-fix-list {
  margin-left: 74px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.menu-fix-list > li {
  float: none;
  margin-right: 0;
}

.menu-fix-list > li > a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #f6f8fb;
  font-family: "Tektur", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.menu-fix-list > li > a:hover,
.menu-fix-list > li > a.selected,
.menu-fix-list > li:hover > a,
.menu-fix-list > .show-sublvl > a {
  background: linear-gradient(135deg, #4cc7ff 0%, #00b2ff 100%);
  color: #0b1b2b;
  box-shadow: 0 12px 24px rgba(0, 178, 255, 0.2);
}

@media screen and (max-width: 1200px) {
  .preheader .wrapper,
  .header .top .wrapper {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media screen and (max-width: 1100px) {
  .preheader__social-title {
    display: none;
  }

  .preheader__social {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .preheader__social-left {
    grid-column: 1;
  }

  .preheader__social-right {
    grid-column: 2;
  }
}

@media screen and (max-width: 900px) {
  .preheader .wrapper {
    padding: 8px 12px;
  }

  .preheader__social {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 40px;
    padding: 0;
  }

  .preheader__social-league,
  .preheader__social-title {
    display: none;
  }

  .preheader__social-left,
  .preheader__social-right {
    gap: 8px;
  }

  .preheader__social-item {
    width: 40px;
    min-width: 40px;
    height: 40px;
    min-height: 40px;
    padding: 0;
    gap: 0;
    transform: none;
  }

  .preheader__social-text {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }

  .preheader__social-item::after {
    display: none;
  }

  .header .top .wrapper {
    padding: 10px 12px 12px;
  }

  .header__top-logo {
    gap: 14px;
  }

  .header .logo {
    width: 48px;
    height: 48px;
    background: url(/brand/dynamo/logo_on_silver_bg_transparent.png) center / contain no-repeat;
  }
}

/* ------------------------------------------------------------
   31. Shop-style Header Nav
   ------------------------------------------------------------ */
.header .top .wrapper {
  display: block;
  padding: 0;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  padding: 16px 32px 18px 0;
  background: transparent;
  border-bottom: 1px solid rgba(11, 27, 43, 0.08);
}

.main-nav__top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 16px;
}

.main-nav__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex: 1 1 auto;
  min-width: 0;
}

.main-nav__heading-copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.main-nav .logo {
  display: block;
  width: 248px;
  max-width: 100%;
  height: 36px;
  background: url(/brand/dynamo/lettering_navy_on_white.png) left center / contain no-repeat;
  text-indent: -9999px;
}

.main-nav__subtitle {
  color: #0b1b2b;
  font-family: "Tektur", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.main-nav__official {
  display: none;
}

.header__actions {
  display: none;
}

.header-search.main-nav__search {
  flex: 0 0 auto;
  min-width: 280px;
  width: min(100%, 320px);
}

.header-search__input-wrap {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
}

.header-search__submit {
  position: absolute;
  top: 50%;
  left: 14px;
  width: 18px;
  height: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #0b1b2b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transform: translateY(-50%);
}

.header-search__submit svg {
  display: block;
  width: 18px;
  height: 18px;
}

.header-search__input-wrap input {
  width: 100%;
  height: 40px;
  padding: 0 16px 0 44px;
  border-radius: 999px;
  border: 1px solid rgba(1, 17, 43, 0.15);
  background: #f2f5f8;
  color: #0b1b2b !important;
  font-family: "Tektur", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 500;
}

.header-search__input-wrap input::placeholder {
  color: rgba(11, 27, 43, 0.55) !important;
}

.mobile-menu-panel {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.main-nav__links {
  display: flex;
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  overflow: visible;
  white-space: nowrap;
  justify-content: flex-end;
}

.main-nav__track {
  display: flex;
  width: max-content;
  min-width: 100%;
}

.main-nav__group {
  display: flex;
}

@media (min-width: 901px) {
  .main-nav .mobile-menu-panel__inner {
    padding: 0;
  }

  .main-nav .topmenu {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    width: auto;
    margin: 0 0 0 auto;
    padding: 0;
    list-style: none;
  }

  .main-nav .topmenu > .root-lvl {
    float: none;
    width: auto;
    border: 0;
  }

  .main-nav .topmenu > .root-lvl > a {
    display: block;
    min-height: 0;
    padding: 0 0 4px;
    border: 0;
    border-bottom: 2px solid transparent;
    border-radius: 0;
    background: transparent !important;
    box-shadow: none;
    color: #0b1b2b;
    font-family: "Tektur", system-ui, sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    line-height: 1.2;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .main-nav .topmenu > .root-lvl > a:hover,
  .main-nav .topmenu > .root-lvl > a.selected,
  .main-nav .topmenu > .root-lvl:hover > a,
  .main-nav .topmenu > .show-sublvl > a {
    background: transparent !important;
    box-shadow: none;
    color: #0b1b2b;
    border-bottom-color: #1a7fff;
  }

  .main-nav .topmenu > .root-lvl.topmenu46 > a {
    background: transparent !important;
    color: #0b1b2b !important;
  }

  .main-nav .topmenu-sublvl-block {
    top: 100%;
    padding-top: 10px;
  }

  .main-nav .topmenu-sublvl-block-wrap {
    min-width: 220px;
    padding: 12px 14px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(11, 27, 43, 0.08);
    box-shadow: 0 16px 32px rgba(1, 17, 43, 0.12);
  }

  .main-nav .topmenu-sublvl-block-border,
  .main-nav .topmenu-sublvl-block-border-bottom {
    display: none;
  }

  .main-nav .topmenu-sub {
    display: grid;
    gap: 6px;
    margin: 0;
    padding: 0;
  }

  .main-nav .topmenu-sub > .sub-lvl > a {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 4px 0;
    background: transparent;
    border: 0;
    color: #0b1b2b;
    font-family: "Tektur", system-ui, sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.03em;
    line-height: 1.2;
    text-decoration: none;
  }

  .main-nav .topmenu-sub > .sub-lvl > a:hover,
  .main-nav .topmenu-sub > .sub-lvl > a.selected {
    background: transparent;
    color: #1a7fff;
  }
}

.menu-fix {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(11, 27, 43, 0.08);
  box-shadow: 0 12px 24px rgba(1, 17, 43, 0.08);
}

.menu-fix-logo {
  width: 162px;
  height: 28px;
  top: 14px;
  left: 0;
  background: url(/brand/dynamo/lettering_navy_on_white.png) left center / contain no-repeat;
}

.menu-fix-list {
  margin-left: 194px;
  gap: 16px;
}

.menu-fix-list > li > a {
  min-height: 0;
  padding: 0 0 4px;
  border: 0;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none;
  color: #0b1b2b;
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.menu-fix-list > li > a:hover,
.menu-fix-list > li > a.selected,
.menu-fix-list > li:hover > a,
.menu-fix-list > .show-sublvl > a {
  background: transparent !important;
  box-shadow: none;
  color: #0b1b2b;
  border-bottom-color: #1a7fff;
}

.menu-fix-list > li.topmenu46 > a {
  background: transparent !important;
  color: #0b1b2b !important;
}

.menu-fix .topmenu-sublvl-block-wrap {
  background: #fff;
  border: 1px solid rgba(11, 27, 43, 0.08);
  box-shadow: 0 16px 32px rgba(1, 17, 43, 0.12);
}

.menu-fix .topmenu-sub > .sub-lvl > a {
  background: transparent;
  color: #0b1b2b;
}

.menu-fix .topmenu-sub > .sub-lvl > a:hover,
.menu-fix .topmenu-sub > .sub-lvl > a.selected {
  background: transparent;
  color: #1a7fff;
}

@media screen and (max-width: 1200px) {
  .main-nav {
    padding-left: 20px;
    padding-right: 20px;
  }

  .main-nav__subtitle {
    letter-spacing: 0.14em;
  }
}

@media screen and (max-width: 900px) {
  .header nav:not(.mobile-menu-panel) {
    width: auto;
  }

  .main-nav {
    padding: 14px 16px 16px;
  }

  .main-nav__top {
    margin-bottom: 0;
    gap: 12px;
  }

  .main-nav__heading {
    gap: 12px;
  }

  .main-nav__heading-copy {
    gap: 0;
  }

  .main-nav .logo {
    width: 176px;
    height: 30px;
  }

  .main-nav__subtitle,
  .header-search.main-nav__search {
    display: none;
  }

  .preheader {
    display: none;
  }

  /* Mobile header: burger | circle-logo | "Официальный сайт" */
  .main-nav {
    background: linear-gradient(120deg, #0b1b2b 0%, #163453 100%);
    border-bottom: none;
    padding-left: 12px;
    padding-right: 12px;
  }

  .promo-banner {
    margin-top: 0;
  }

  .main-nav__heading {
    flex-direction: row;
    align-items: center;
  }

  /* Бургер + логотип слева, actions справа */
  .main-nav__heading {
    justify-content: flex-start;
    gap: 12px;
  }

  .header__menu-mobile {
    order: -1;
    flex: 0 0 auto;
    margin: 0;
  }

  .main-nav__heading-copy {
    order: 0;
    flex: 0 0 auto;
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }

  /* Actions прижаты вправо */
  .header__actions {
    margin-left: auto;
  }

  /* Логотип — круглая эмблема */
  .main-nav .logo {
    width: 52px;
    height: 52px;
    background: url(/brand/dynamo/logo_on_silver_bg_transparent.png) center / contain no-repeat;
  }

  /* Текст "Официальный сайт" */
  .main-nav__official {
    display: block;
    color: #ffffff;
    font-family: "Tektur", system-ui, sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1.3;
    white-space: nowrap;
  }

  .main-nav__links,
  .main-nav__track,
  .main-nav__group {
    display: block;
    width: 100%;
    overflow: visible;
    white-space: normal;
  }

  .menu-fix {
    display: none;
  }
}

/* Shop cards: keep a single row and hide overflow items by breakpoint */
.left-column .sn-grid > .sn-card:nth-child(n+4) {
  display: none;
}

@media (max-width: 1199px) {
  .sn-grid > .sn-card:nth-child(n+5) {
    display: none;
  }
}

@media (max-width: 900px) {
  .sn-grid > .sn-card:nth-child(n+4) {
    display: none;
  }

  .left-column .sn-grid > .sn-card:nth-child(n+3) {
    display: none;
  }
}

@media (max-width: 600px) {
  .sn-grid > .sn-card:nth-child(n+3) {
    display: none;
  }
}

/* ------------------------------------------------------------
   32. FIXES 2026-06: players/coaches cards contrast & alignment
   ------------------------------------------------------------ */
.players-item-info,
.coaches-item-info {
  display: flex;
  flex-direction: column;
  background: #01112b;
}

.text .players-item-info h3,
.text .coaches-item-info h3 {
  color: #ffffff;
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.players-item-rank,
.coaches-item-rank {
  margin-top: auto;
  padding-top: 6px;
  color: #9fc6e8;
}

.players-item:hover .players-item-info h3,
.coaches-item:hover .coaches-item-info h3,
.players-item:hover .players-item-rank,
.coaches-item:hover .coaches-item-rank {
  color: #01112b;
}

/* Partners page: dark background needs light headings */
.text h2.partners-title,
.partners-text-bg h2.partners-title {
  color: #ffffff;
}

.text .partner-list-item h3,
.text .partner-list-item h3 > a {
  color: #ffffff;
}

/* VK group widget: keep inside column on narrow screens */
#vk_groups {
  width: 100% !important;
  max-width: 100%;
  overflow: hidden;
}

#vk_groups iframe {
  width: 100% !important;
  max-width: 100%;
}

/* News previews: hi-res source scaled down without distortion */
.news-item-image {
  height: auto;
}

.news-item-image img,
.right-news-item-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
}

/* News photos everywhere: never overflow or distort */
.text img,
.news-detail-photo img,
.news-detail-photo > img {
  max-width: 100%;
  height: auto;
}

.news-detail-photo img {
  width: 100%;
}

/* Cheerleading: keep member photos reasonably sized */
.cheerleading-all-photo img,
.cheerleading-detail-photo img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.cheerleading-detail-photo {
  max-width: 480px;
  margin: 0 auto 20px;
}

.cheerleading-pic-list img {
  display: block;
  margin: 0 auto 20px;
  border-radius: 8px;
}

/* Narrow desktop windows (e.g. Safari split view): allow horizontal
   scrolling instead of clipping the fixed-width layout.
   On mobile the layout is fully responsive so we keep overflow hidden. */
@media (min-width: 1201px) {
  body {
    overflow-x: auto;
  }
}
