:root {
  --bl-bg: #edf7fc;
  --bl-bg-soft: #f6fbfe;
  --bl-bg-blue: #e4f1f9;
  --bl-white: #ffffff;
  --bl-ink: #1d3144;
  --bl-muted: #60798d;
  --bl-blue: #3390ec;
  --bl-blue-dark: #2481cc;
  --bl-blue-soft: #e4f3fd;
  --bl-green: #d8f1c8;
  --bl-green-ink: #34542c;
  --bl-line: #dce9f1;
  --bl-shadow: 0 18px 48px rgba(40, 90, 130, 0.12);
  --bl-shadow-lg: 0 28px 72px rgba(35, 77, 110, 0.18);
  --bl-radius: 24px;
  --bl-container: 1200px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body.bl-theme {
  margin: 0;
  overflow-x: hidden;
  background: var(--bl-bg-soft);
  color: var(--bl-ink);
  font-family: "Inter", Arial, sans-serif;
}

.bl-theme *,
.bl-theme *::before,
.bl-theme *::after {
  box-sizing: border-box;
}

.bl-theme .uc-bl-nav,
.bl-theme .uc-bl-hero,
.bl-theme .uc-bl-services,
.bl-theme .uc-bl-why,
.bl-theme .uc-bl-process,
.bl-theme .uc-bl-submit,
.bl-theme .uc-bl-faq,
.bl-theme .uc-bl-creators,
.bl-theme .uc-bl-contact,
.bl-theme .uc-bl-footer,
.bl-theme .uc-bl-news-heading,
.bl-theme .uc-bl-games-heading {
  margin: 0;
  padding: 0 !important;
}

.bl-theme a {
  color: inherit;
  text-decoration: none;
}

.bl-theme img {
  max-width: 100%;
}

.bl-container {
  width: min(var(--bl-container), calc(100% - 96px));
  margin-inline: auto;
}

.bl-section {
  position: relative;
  padding: 96px 0;
}

.bl-section--light { background: var(--bl-bg-soft); }
.bl-section--blue { background: var(--bl-bg-blue); }
.bl-section--soft { background: #f3f9fc; }

.bl-section__head {
  margin-bottom: 38px;
}

.bl-section__head > p,
.bl-dynamic-head p,
.bl-why__copy > p,
.bl-contact__copy > p,
.bl-creators p {
  max-width: 650px;
  margin: 12px 0 0;
  color: var(--bl-muted);
  font-size: 16px;
  line-height: 1.75;
}

.bl-section__head--center {
  text-align: center;
}

.bl-section__head--center > p {
  margin-inline: auto;
}

.bl-title {
  margin: 12px 0 0;
  color: var(--bl-ink);
  font-size: clamp(38px, 4.4vw, 58px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.bl-title--white { color: var(--bl-white); }
.bl-title--small { font-size: clamp(30px, 3.2vw, 44px); }

.bl-pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 13px;
  border-radius: 999px;
  background: var(--bl-blue-soft);
  color: var(--bl-blue-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bl-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.bl-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s cubic-bezier(0.22,1,0.36,1), background 0.25s ease;
}

.bl-button:hover {
  transform: translateY(-2px);
}

.bl-button--primary {
  background: var(--bl-blue);
  color: var(--bl-white) !important;
  box-shadow: 0 12px 28px rgba(51, 144, 236, 0.24);
}

.bl-button--primary:hover {
  background: var(--bl-blue-dark);
  box-shadow: 0 16px 36px rgba(51, 144, 236, 0.3);
}

.bl-button--ghost {
  border-color: #c5dae7;
  background: rgba(255, 255, 255, 0.72);
  color: #456176 !important;
}

.bl-button--white {
  background: var(--bl-white);
  color: var(--bl-blue-dark) !important;
}

/* Navigation */
.uc-bl-nav {
  position: relative;
  z-index: 1000;
  height: 0;
}

.bl-nav {
  position: fixed;
  z-index: 1000;
  top: 16px;
  left: 50%;
  width: min(1240px, calc(100% - 64px));
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 36px rgba(40, 90, 130, 0.1);
  backdrop-filter: blur(18px);
  transition: top 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.bl-nav.is-scrolled {
  top: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 44px rgba(40, 90, 130, 0.17);
}

.bl-nav__inner {
  display: flex;
  min-height: 70px;
  align-items: center;
  gap: 26px;
  padding: 9px 14px 9px 16px;
}

.bl-nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
  color: var(--bl-ink) !important;
  font-size: 22px;
  font-weight: 800;
}

.bl-nav__mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #66baf7, var(--bl-blue));
  color: var(--bl-white);
  box-shadow: 0 8px 20px rgba(51, 144, 236, 0.22);
}

.bl-nav__links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.bl-nav__links a {
  padding: 10px 12px;
  border-radius: 999px;
  color: #5d7488 !important;
  font-size: 14px;
  font-weight: 600;
}

.bl-nav__links a:hover {
  background: var(--bl-blue-soft);
  color: var(--bl-blue-dark) !important;
}

.bl-nav__cta { min-height: 48px; }

/* Hero */
.bl-hero {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  background: linear-gradient(145deg, #eff8fc 0%, #deedf7 52%, #eef7fb 100%);
}

.bl-hero__dots {
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background-image: radial-gradient(rgba(51, 144, 236, 0.2) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(90deg, transparent 12%, #000 100%);
}

.bl-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
}

.bl-hero__orb--blue {
  top: 110px;
  right: 18%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(51, 144, 236, 0.2), transparent 70%);
}

.bl-hero__orb--green {
  right: 1%;
  bottom: 80px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(114, 209, 163, 0.24), transparent 70%);
}

.bl-hero__layout {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 900px;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 0.92fr);
  align-items: center;
  gap: 66px;
  padding-top: 118px;
  padding-bottom: 80px;
}

.bl-hero__content { min-width: 0; }

.bl-hero__since {
  gap: 8px;
  margin-bottom: 24px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 22px rgba(40, 90, 130, 0.08);
}

.bl-hero__since span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #52c77a;
  box-shadow: 0 0 0 4px rgba(82, 199, 122, 0.15);
}

.bl-hero__title {
  max-width: 650px;
  margin: 0 0 26px;
  color: var(--bl-ink);
  font-size: clamp(58px, 6vw, 88px);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.bl-hero__lead {
  max-width: 570px;
  margin: 0 0 36px;
  color: var(--bl-muted);
  font-size: 18px;
  line-height: 1.65;
}

.bl-hero__visual {
  position: relative;
  min-width: 0;
  padding: 56px 24px 84px;
}

.bl-hero__panel {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 42px;
  background: rgba(255, 255, 255, 0.34);
  box-shadow: 0 28px 70px rgba(40, 90, 130, 0.1);
  backdrop-filter: blur(6px);
}

.bl-feature {
  position: relative;
  z-index: 2;
}

.bl-feature__image-wrap {
  position: relative;
  overflow: hidden;
  padding: 10px;
  border-radius: 28px;
  background: var(--bl-white);
  box-shadow: var(--bl-shadow-lg);
}

.bl-feature__image {
  display: block;
  width: 100%;
  height: 310px;
  border-radius: 20px;
  object-fit: cover;
}

.bl-feature__label {
  position: absolute;
  z-index: 2;
  top: 26px;
  left: 26px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(24, 40, 54, 0.78);
  color: var(--bl-white);
  font-size: 11px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.bl-feature__message {
  position: relative;
  z-index: 3;
  width: min(390px, calc(100% - 44px));
  margin: -28px 0 0 auto;
  padding: 20px 22px;
  border-radius: 24px 24px 6px 24px;
  background: var(--bl-green);
  color: var(--bl-green-ink);
  box-shadow: 0 18px 42px rgba(55, 100, 40, 0.15);
}

.bl-feature__message strong {
  display: block;
  margin-bottom: 7px;
  font-size: 16px;
  line-height: 1.3;
}

.bl-feature__message p {
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.55;
}

.bl-feature__message a {
  color: var(--bl-blue-dark) !important;
  font-size: 13px;
  font-weight: 800;
}

.bl-feature__message a::after { content: "  ->"; }

/* Dynamic headings */
.bl-dynamic-head {
  padding: 92px 0 28px;
}

.bl-dynamic-head--news { background: #f3f8fc; }
.bl-dynamic-head--games { background: var(--bl-bg-blue); }
.bl-dynamic-head__inner { display: flex; align-items: end; justify-content: space-between; }

/* FD301 */
.uc-bl-news {
  padding: 0 0 96px !important;
  background: #f3f8fc !important;
}

.uc-bl-news .t-section__container,
.uc-bl-games .t-section__container {
  display: block !important;
  width: min(var(--bl-container), calc(100% - 96px)) !important;
  max-width: none !important;
  margin: 0 auto 28px !important;
  padding: 92px 0 0 !important;
}

.uc-bl-news-heading + .uc-bl-news .t-section__container,
.uc-bl-games-heading + .uc-bl-games .t-section__container {
  display: none !important;
}

.uc-bl-news .t-section__topwrapper,
.uc-bl-games .t-section__topwrapper {
  margin: 0 !important;
  text-align: left !important;
}

.uc-bl-news .t-section__title,
.uc-bl-games .t-section__title {
  margin: 0 !important;
  color: var(--bl-ink) !important;
  font-family: "Inter", Arial, sans-serif !important;
  font-size: clamp(38px, 4.4vw, 58px) !important;
  font-weight: 800 !important;
  letter-spacing: -0.045em !important;
  line-height: 1.02 !important;
}

.uc-bl-news .t-section__descr,
.uc-bl-games .t-section__descr {
  max-width: 650px !important;
  margin: 12px 0 0 !important;
  color: var(--bl-muted) !important;
  font-family: "Inter", Arial, sans-serif !important;
  font-size: 16px !important;
  line-height: 1.75 !important;
  text-align: left !important;
}

.uc-bl-news .t-feed,
.uc-bl-news .t-feed__container,
.uc-bl-news .t-feed__grid-cont {
  width: min(var(--bl-container), calc(100% - 96px)) !important;
  max-width: none !important;
  margin: 0 auto !important;
}

/* Tilda может называть контейнер .t-feed__container ИЛИ .t-feed__grid-cont */
.uc-bl-news .t-feed__container,
.uc-bl-news .t-feed__grid-cont {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-left: 0 !important;
  list-style: none;
  float: none !important;
}

.uc-bl-news .t-feed__grid-col,
.uc-bl-news .js-feed-post {
  float: none !important;
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  text-align: left !important;
}

.uc-bl-news .t-feed__col-grid__post-wrapper {
  display: flex !important;
  height: 100% !important;
  min-height: 0 !important;
  flex-direction: column;
  overflow: hidden !important;
  clip-path: inset(0 round 22px);
  overflow: hidden;
  border-radius: 24px;
  background: var(--bl-white);
  box-shadow: var(--bl-shadow);
  transition: transform 0.45s cubic-bezier(0.22,1,0.36,1), box-shadow 0.45s cubic-bezier(0.22,1,0.36,1);
}

.uc-bl-news .t-feed__col-grid__post-wrapper:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 58px rgba(40, 90, 130, 0.18);
}

/* Обёртка изображения: position:relative + padding-bottom вместо aspect-ratio,
   потому что Tilda's .t-bgimg использует position:absolute;inset:0 */
.uc-bl-news .t-feed__post-imgwrapper {
  position: relative !important;
  margin: 9px 9px 0 !important;
  width: calc(100% - 18px) !important;
  overflow: hidden !important;
  border-radius: 17px !important;
  clip-path: inset(0 round 17px);
  isolation: isolate;
}

.uc-bl-news .t-feed__post-bgimg,
.uc-bl-news .t-bgimg {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  border-radius: 0 !important;
  background-size: cover !important;
  background-position: center !important;
  transition: transform 0.65s cubic-bezier(0.22,1,0.36,1);
  clip-path: inset(0 round 17px);
}

.uc-bl-news .t-feed__col-grid__post-wrapper:hover .t-feed__post-bgimg { transform: scale(1.07); }

.uc-bl-news .t-feed__col-grid__wrapper {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px 22px 22px !important;
}

.uc-bl-news .t-feed__textwrapper { flex: 1; }

.uc-bl-news .t-feed__post-title,
.uc-bl-news .t-feed__post-title a {
  color: var(--bl-ink) !important;
  font-family: "Inter", Arial, sans-serif !important;
  font-size: 19px !important;
  font-weight: 800 !important;
  line-height: 1.25 !important;
}

.uc-bl-news .t-feed__post-descr {
  margin-top: 10px !important;
  color: var(--bl-muted) !important;
  font-size: 14px !important;
  line-height: 1.65 !important;
}

.uc-bl-news .t-feed__post-date {
  display: block;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--bl-line);
  color: #7890a3 !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.uc-bl-news .t-feed__grid-separator { display: none !important; }

/* Кнопка "View more" / "Загрузить ещё" */
.uc-bl-news .t-feed__showmore-btn,
.uc-bl-news .js-feed-btn-show-more {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 40px auto 0 !important;
  padding: 12px 32px !important;
  border-radius: 999px !important;
  background: var(--bl-blue-soft) !important;
  color: var(--bl-blue-dark) !important;
  background-color: var(--bl-blue-soft) !important;
  font-family: "Inter", Arial, sans-serif !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  border: none !important;
  border-style: none !important;
  border-radius: 999px !important;
  box-shadow: none !important;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s !important;
}
.uc-bl-news .t-feed__showmore-btn:hover,
.uc-bl-news .js-feed-btn-show-more:hover {
  background: var(--bl-blue) !important;
  background-color: var(--bl-blue) !important;
  color: #fff !important;
  transform: translateY(-2px);
}

/* ST305N */
.uc-bl-games {
  padding: 0 0 96px !important;
  background: var(--bl-bg-blue) !important;
}

.uc-bl-games .t-store,
.uc-bl-games .t-store__grid-cont,
.uc-bl-games .t-store__cont {
  width: min(var(--bl-container), calc(100% - 96px)) !important;
  max-width: none !important;
  margin: 0 auto !important;
}

/* Tilda может называть список .t-store__card-list ИЛИ .t-store__cards-wrapper */
.uc-bl-games .t-store__card-list,
.uc-bl-games .t-store__cards-wrapper,
.uc-bl-games .t-store__grid-cont > ul,
.uc-bl-games .t-store__grid-cont > div {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  float: none !important;
}

.uc-bl-games .t-store__card {
  display: flex !important;
  float: none !important;
  width: auto !important;
  max-width: none !important;
  min-width: 0;
  height: 100%;
  margin: 0 !important;
  padding: 9px 9px 22px !important;
  flex-direction: column;
  overflow: hidden;
  border: 0 !important;
  border-radius: 24px;
  background: var(--bl-white);
  box-shadow: var(--bl-shadow);
  text-align: left !important;
  transition: transform 0.45s cubic-bezier(0.22,1,0.36,1), box-shadow 0.45s cubic-bezier(0.22,1,0.36,1);
}

.uc-bl-games .t-store__card:not(.bl-featured-product):hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 58px rgba(40, 90, 130, 0.18);
}

.uc-bl-games .t-store__card > a:first-child { display: block; }

.uc-bl-games .t-store__card__imgwrapper {
  position: relative;
  overflow: hidden !important;
  height: 0 !important;
  padding-bottom: 62.5% !important; /* 16/10 */
  border-radius: 17px;
  background: #dceaf3;
  clip-path: inset(0 round 17px);
}

.uc-bl-games .t-store__card__img {
  position: absolute !important;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.8s cubic-bezier(0.22,1,0.36,1), filter 0.5s;
}

.uc-bl-games .t-store__card:hover .t-store__card__img {
  transform: scale(1.08);
  filter: brightness(1.05) saturate(1.1);
}

/* Overlay gradient + кнопка при hover */
.uc-bl-games .t-store__card > a:first-child::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 17px;
  background: linear-gradient(to top, rgba(10,30,50,0.82) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 2;
  pointer-events: none;
}
.uc-bl-games .t-store__card:hover > a:first-child::after { opacity: 1; }

.uc-bl-games .t-store__card__wrap_txt-and-btns {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px 16px 20px !important;
}

.uc-bl-games .store__card__wrap_txt-and-opts { flex: 1; }
.uc-bl-games .t-store__card__textwrapper {
  display: flex !important;
  flex-direction: column !important;
  padding: 0 !important;
}

/* SKU → жанр-пилюля: поднимаем выше заголовка через order */
.uc-bl-games .t-store__card__sku {
  order: -1;
  display: inline-block !important;
  align-self: flex-start;
  padding: 3px 10px;
  border-radius: 999px;
  background: #eaf5fc;
  color: var(--bl-blue-dark, #2c5f7a);
  font-size: 10px;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  margin: 0 0 8px !important;
}

/* Заголовок */
.uc-bl-games .t-store__card__title {
  font-size: 1.05rem !important;
  font-weight: 800 !important;
  line-height: 1.25 !important;
  color: var(--bl-dark) !important;
  margin-bottom: 6px !important;
  transition: color 0.2s !important;
}
.uc-bl-games .t-store__card:hover .t-store__card__title {
  color: var(--bl-blue) !important;
}

/* Описание */
.uc-bl-games .t-store__card__descr {
  font-size: 0.82rem !important;
  color: var(--bl-muted, #6b8fa6) !important;
  line-height: 1.6 !important;
  flex: 1;
  margin-bottom: 14px !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/* В featured карточке — больше строк */
.uc-bl-games .bl-featured-product .t-store__card__descr {
  -webkit-line-clamp: 6 !important;
}

/* Заголовок меняет цвет на hover */
.uc-bl-games .t-store__card__title {
  transition: color 0.2s !important;
}
.uc-bl-games .t-store__card:hover .t-store__card__title {
  color: var(--bl-blue) !important;
}

/* Overlay-кнопка "View on Steam →" поверх изображения */
.uc-bl-games .bl-img-overlay-btn {
  position: absolute;
  bottom: 16px; left: 50%;
  transform: translateX(-50%) translateY(10px);
  z-index: 3;
  padding: 9px 20px;
  border-radius: 999px;
  background: #fff;
  color: var(--bl-blue-dark);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), opacity 0.35s;
  pointer-events: none;
  text-decoration: none !important;
}
.uc-bl-games .t-store__card:hover .bl-img-overlay-btn {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Плашка Steam / Coming Soon на изображении карточки */
.uc-bl-games .t-store__card > a:first-child {
  position: relative;
}
.uc-bl-games .bl-card-badge {
  position: absolute;
  top: 10px; right: 10px; /* правый верхний угол на обычных карточках */
  z-index: 4;
  padding: 5px 13px;
  border-radius: 999px;
  background: rgba(23, 44, 61, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  pointer-events: none;
  white-space: nowrap;
}
.uc-bl-games .bl-card-badge--soon {
  background: rgba(82, 199, 122, 0.82);
  color: #0d2b1a;
}

/* Кнопка View on Steam (Tilda .t-store__card__btn или наш .bl-steam-btn) */
.uc-bl-games .t-store__card__btn a,
.uc-bl-games .t-store__card__more a,
.uc-bl-games .bl-steam-btn {
  display: inline-flex !important;
  align-items: center;
  gap: 5px;
  margin-top: 14px !important;
  padding: 8px 16px !important;
  border-radius: 999px !important;
  background: var(--bl-blue-soft) !important;
  color: var(--bl-blue-dark) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  border: none !important;
  box-shadow: none !important;
  transition: background 0.2s, color 0.2s;
}
.uc-bl-games .t-store__card__btn a:hover,
.uc-bl-games .t-store__card__more a:hover,
.uc-bl-games .bl-steam-btn:hover {
  background: var(--bl-blue) !important;
  color: #fff !important;
}

/* ── FEATURED GAME CARD ── */

/* Всегда первая и занимает весь ряд */
.uc-bl-games .bl-featured-product {
  grid-column: 1 / -1;
  order: -1;
}

/* Горизонтальный layout: изображение слева, текст справа */
.uc-bl-games .bl-featured-product.t-store__card {
  flex-direction: row !important;
  align-items: stretch;
  padding: 10px !important;
  min-height: 420px;
  border-radius: 28px !important;
}
.uc-bl-games .bl-featured-product.t-store__card:hover {
  box-shadow: 0 28px 64px rgba(40, 90, 130, 0.2) !important;
}

/* Ссылка-обёртка изображения: левая панель (grid 1.35fr) */
.uc-bl-games .bl-featured-product.t-store__card > a:first-child {
  width: 57% !important;
  flex-shrink: 0;
  border-radius: 21px;
  overflow: hidden;
  display: block !important;
  position: relative;
}

/* Overlay градиент featured (мягкий, снизу вверх) — переопределяем общий ::after */
.uc-bl-games .bl-featured-product.t-store__card > a:first-child::after {
  background: linear-gradient(to top, rgba(14, 39, 58, 0.32) 0%, transparent 58%) !important;
}

/* Бейдж на featured берётся из SKU через JS (.bl-card-badge) */

/* imgwrapper: заполняет левую панель */
.uc-bl-games .bl-featured-product .t-store__card__imgwrapper {
  width: 100% !important;
  height: 100% !important;
  min-height: 400px !important;
  padding-bottom: 0 !important;
  border-radius: 21px !important;
  clip-path: inset(0 round 21px) !important;
}

/* Текстовая панель справа */
.uc-bl-games .bl-featured-product .t-store__card__wrap_txt-and-btns {
  flex: 1;
  padding: 42px !important;
  justify-content: center;
}

/* Eyebrow "Publisher's Pick" */
.uc-bl-games .bl-featured-eyebrow {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bl-blue-dark);
  margin-bottom: 10px;
}

/* Крупный заголовок */
.uc-bl-games .bl-featured-product .t-store__card__title,
.uc-bl-games .bl-featured-product .t-store__card__title * {
  font-size: 2rem !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;
  letter-spacing: -0.025em !important;
  color: var(--bl-ink) !important;
  margin-bottom: 10px !important;
}

/* SKU/жанр в featured — чуть больше отступ */
.uc-bl-games .bl-featured-product .t-store__card__sku {
  margin-bottom: 14px !important;
}

/* Описание видимо в featured */
.uc-bl-games .bl-featured-product .t-store__card__descr {
  display: block !important;
  font-size: 0.88rem !important;
  color: var(--bl-muted) !important;
  line-height: 1.75 !important;
  margin-bottom: 24px !important;
  max-width: 380px;
}

/* CTA-кнопка featured и обычные карточки: единый pill-стиль из макета */
.uc-bl-games .bl-featured-product .bl-steam-btn,
.uc-bl-games .bl-featured-product .t-store__card__btn a {
  padding: 10px 20px !important;
  font-size: 13px !important;
  gap: 8px;
  transition: background 0.2s, transform 0.2s, color 0.2s;
}
.uc-bl-games .bl-featured-product .bl-steam-btn:hover,
.uc-bl-games .bl-featured-product .t-store__card__btn a:hover {
  background: var(--bl-blue) !important;
  color: #fff !important;
  transform: translateX(3px);
}

.uc-bl-games .t-store__card__title {
  color: var(--bl-ink) !important;
  font-family: "Inter", Arial, sans-serif !important;
  font-size: 19px !important;
  font-weight: 800 !important;
  line-height: 1.3 !important;
}

.uc-bl-games .t-store__card__descr {
  margin-top: 10px !important;
  color: var(--bl-muted) !important;
  font-size: 14px !important;
  line-height: 1.62 !important;
}

.uc-bl-games .t-store__card__price-wrapper,
.uc-bl-games .t-store__card__prod-controls-wrapper {
  margin-top: 16px !important;
}

.uc-bl-games .t-store__parts-switch-wrapper,
.uc-bl-games .t-store__parts-switch-btn {
  border-radius: 999px !important;
}

.uc-bl-games .t-store__load-more-btn {
  border-radius: 999px !important;
  background: var(--bl-blue) !important;
  color: var(--bl-white) !important;
}

.uc-bl-games .t-store__grid-separator { display: none !important; }

/* Services */
.bl-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.bl-service {
  position: relative;
  min-width: 0;
  padding: 34px;
  border: 1px solid var(--bl-line);
  border-radius: var(--bl-radius);
  background: var(--bl-white);
  box-shadow: 0 12px 32px rgba(40, 90, 130, 0.08);
  overflow: hidden;
  transition: box-shadow 0.45s cubic-bezier(0.22,1,0.36,1), transform 0.45s cubic-bezier(0.22,1,0.36,1);
}
.bl-service:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(40, 90, 130, 0.14);
}

/* Зелёная точка — статус */
.bl-service::after {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #52c77a;
  content: "";
}

.bl-service:hover h3 { color: var(--bl-blue); }

.bl-service__number,
.bl-process__step > span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: var(--bl-blue-soft);
  color: var(--bl-blue-dark);
  font-size: 13px;
  font-weight: 800;
}

.bl-service h3,
.bl-process__step h3,
.bl-why__item h3 {
  margin: 22px 0 10px;
  color: var(--bl-ink);
  font-size: 21px;
  line-height: 1.2;
  transition: color 0.25s;
}
.bl-service:hover h3 { color: var(--bl-blue); }

.bl-service p,
.bl-process__step p,
.bl-why__item p {
  margin: 0;
  color: var(--bl-muted);
  font-size: 14px;
  line-height: 1.7;
}

/* Why */
.bl-why {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 58px;
}

.bl-why__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.bl-why__item {
  position: relative;
  min-width: 0;
  padding: 28px 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 28px rgba(40, 90, 130, 0.08);
  overflow: hidden;
  transition: background 0.3s;
}
.bl-why__item:hover { background: #fff; }

/* Синяя полоска по левой стороне, поднимается снизу вверх — как в макете */
.bl-why__item::after {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 4px;
  background: var(--bl-blue);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.45s cubic-bezier(0.16,1,0.3,1);
}
.bl-why__item:hover::after { transform: scaleY(1); }

.bl-why__item h3 {
  margin-top: 0;
  color: var(--bl-blue-dark);
}

/* Process */
.bl-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.bl-process__step {
  position: relative;
  min-width: 0;
  padding: 30px 25px;
  border: 1px solid var(--bl-line);
  border-radius: 22px;
  background: var(--bl-white);
  box-shadow: 0 12px 32px rgba(40, 90, 130, 0.08);
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.bl-process__step:hover { box-shadow: 0 18px 44px rgba(40, 90, 130, 0.14); }

.bl-process__step > span {
  background: var(--bl-blue);
  color: var(--bl-white);
  box-shadow: 0 8px 18px rgba(51, 144, 236, 0.23);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s;
}
.bl-process__step:hover > span {
  transform: scale(1.12) rotate(-4deg);
  box-shadow: 0 8px 24px rgba(51, 144, 236, 0.38);
}

.bl-process__note {
  margin: 28px 0 0;
  padding: 16px 20px;
  border-radius: 16px;
  background: var(--bl-blue-soft);
  color: #557488;
  font-size: 14px;
  text-align: center;
}

/* Submit */
.bl-submit { padding-top: 64px; padding-bottom: 64px; }

@keyframes bl-ctaSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.bl-submit__card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.75fr);
  align-items: center;
  gap: 60px;
  padding: 58px;
  border-radius: 32px;
  background: linear-gradient(145deg, #48a2ee, var(--bl-blue-dark));
  box-shadow: 0 24px 65px rgba(36, 129, 204, 0.25);
  overflow: hidden;
}

/* Spinning radial orb — декоративный элемент из макета */
.bl-submit__card::before {
  content: '';
  position: absolute;
  top: -60%; right: -15%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 70%);
  animation: bl-ctaSpin 14s linear infinite;
  pointer-events: none;
  z-index: 0;
}
.bl-submit__card > * { position: relative; z-index: 1; }

.bl-submit__card p {
  max-width: 550px;
  margin: 14px 0 28px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.7;
}

.bl-submit__list {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  color: var(--bl-white);
  list-style: none;
}

.bl-submit__list li {
  position: relative;
  padding-left: 34px;
  font-size: 15px;
  transition: transform 0.25s cubic-bezier(0.16,1,0.3,1), color 0.2s;
}
.bl-submit__list li:hover {
  transform: translateX(8px);
  color: #fff;
}

.bl-submit__list li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  content: "\2713";
  font-size: 12px;
}

/* FAQ */
.bl-faq {
  display: grid;
  max-width: 850px;
  gap: 10px;
  margin-inline: auto;
}

.bl-faq__item {
  overflow: hidden;
  border: 1px solid var(--bl-line);
  border-radius: 19px;
  background: var(--bl-white);
  box-shadow: 0 8px 24px rgba(40, 90, 130, 0.06);
}

.bl-faq__question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 21px 23px;
  border: 0;
  background: transparent;
  color: var(--bl-ink);
  font: inherit;
  font-size: 15px;
  font-weight: 750;
  text-align: left;
  cursor: pointer;
}

.bl-faq__question:hover,
.bl-faq__question[aria-expanded="true"] {
  background: #f4faff;
  color: var(--bl-blue-dark);
}

.bl-faq__question span {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--bl-blue-soft);
  color: var(--bl-blue-dark);
  font-size: 20px;
  transition: transform 0.25s ease;
}

.bl-faq__question[aria-expanded="true"] span { transform: rotate(45deg); }

.bl-faq__answer p {
  margin: 0;
  padding: 4px 23px 22px;
  color: var(--bl-muted);
  font-size: 14px;
  line-height: 1.75;
}

/* Creators and contact */
.bl-creators {
  position: relative;
  display: flex;
  max-width: 980px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-inline: auto;
  padding: 44px;
  border-radius: 28px;
  background: var(--bl-white);
  box-shadow: 0 18px 45px rgba(40, 90, 130, 0.12);
  overflow: hidden;
  transition: box-shadow 0.45s cubic-bezier(0.22,1,0.36,1), transform 0.45s cubic-bezier(0.22,1,0.36,1);
}

.bl-contact {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 52px;
}

.bl-contact__details {
  overflow: hidden;
  margin: 0;
  border-radius: 24px;
  background: var(--bl-white);
  box-shadow: var(--bl-shadow);
}

.bl-contact__details > div {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 24px;
  padding: 17px 22px;
  border-bottom: 1px solid #e8f0f5;
  transition: background 0.2s;
}
.bl-contact__details > div:hover { background: #f3f9fd; }
.bl-contact__details > div:last-child { border-bottom: 0; }

.bl-contact__details dt {
  color: #7890a3;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.bl-contact__details dd {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
  color: var(--bl-ink);
  font-size: 14px;
}

.bl-contact__details a { color: var(--bl-blue-dark) !important; }

/* Footer — фон и верхняя линия на .t-rec враппере */
.uc-bl-footer {
  position: relative !important;
  background: #172c3d !important;
  color: var(--bl-white) !important;
}
/* Верхняя градиентная линия через ::before — как в макете */
.uc-bl-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #52c77a, var(--bl-blue), #8fd0f8);
  z-index: 1;
}
/* Все ссылки в футере — белёсые, без оранжевого от Tilda */
.uc-bl-footer a,
.uc-bl-footer a:link,
.uc-bl-footer a:visited {
  color: rgba(255, 255, 255, 0.48) !important;
  text-decoration: none !important;
}
.uc-bl-footer a:hover {
  color: #8fd0f8 !important;
}

/* Снимаем ограничения Tilda-контейнеров внутри footer */
.uc-bl-footer .t-container,
.uc-bl-footer .t-col,
.uc-bl-footer > div {
  max-width: 100% !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  background: transparent !important;
  text-align: left !important;
}

/* Footer */
.bl-footer {
  padding: 66px 0 30px;
  background: none;
  color: inherit;
}

.bl-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 42px;
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.bl-footer__brand {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 800;
}

.bl-footer p {
  max-width: 300px;
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 14px;
  line-height: 1.65;
}

.bl-footer h2 {
  margin: 0 0 17px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bl-footer__grid > div > a:not(.bl-footer__brand) {
  display: block;
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.56) !important;
  font-size: 14px;
  transition: color 0.2s, transform 0.2s;
}

.bl-footer__grid > div > a:hover {
  color: #8fd0f8 !important;
  transform: translateX(4px);
}

.bl-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 28px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
}

/* Scroll progress bar */
.bl-scroll-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--bl-blue), #52c77a);
  transform: scaleX(0);
  transform-origin: left;
  z-index: 9999;
  pointer-events: none;
}

/* ── KEYFRAMES ── */
@keyframes bl-fadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: none; }
}
@keyframes bl-fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Hero-элементы анимируются через CSS (не IntersectionObserver) */
.bl-hero__since {
  opacity: 0;
  animation: bl-fadeUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.2s forwards;
}
.bl-hero__title {
  opacity: 0;
  animation: bl-fadeIn 0.65s cubic-bezier(0.16,1,0.3,1) 0.1s forwards;
}
.bl-hero__lead {
  opacity: 0;
  animation: bl-fadeUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.85s forwards;
}
.bl-hero__content .bl-actions {
  opacity: 0;
  animation: bl-fadeUp 0.8s cubic-bezier(0.16,1,0.3,1) 1s forwards;
}
.bl-hero__visual {
  opacity: 0;
  animation: bl-fadeUp 1s cubic-bezier(0.16,1,0.3,1) 0.4s forwards;
}

/* Hero-обёртки: сразу видимы, анимируются только дочерние элементы */
.bl-hero .bl-reveal {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
  transition: none !important;
}
/* Visual-панель слайдится вверх самостоятельно, поверх .bl-hero .bl-reveal */
.bl-hero .bl-hero__visual {
  opacity: 0 !important;
  animation: bl-fadeUp 1s cubic-bezier(0.16,1,0.3,1) 0.4s forwards !important;
}

/* Scroll-reveal для остальных секций */
.bl-reveal {
  opacity: 0 !important;
  transform: translateY(28px) !important;
  transition: opacity 0.75s cubic-bezier(0.22,1,0.36,1), transform 0.75s cubic-bezier(0.22,1,0.36,1) !important;
}
.bl-reveal.is-visible {
  opacity: 1 !important;
  transform: none !important;
}

/* Вариант: появление справа (contact details) */
.bl-reveal--right {
  opacity: 0 !important;
  transform: translateX(40px) !important;
  transition: opacity 0.75s cubic-bezier(0.22,1,0.36,1) 0.15s, transform 0.75s cubic-bezier(0.22,1,0.36,1) 0.15s !important;
}
.bl-reveal--right.is-visible {
  opacity: 1 !important;
  transform: none !important;
}

/* 3D-тилт: will-change без preserve-3d — иначе overflow:hidden на карточке не клипирует детей */
.t-feed__col-grid__post-wrapper,
.t-store__card {
  will-change: transform;
  transition: transform 0.45s cubic-bezier(0.22,1,0.36,1), box-shadow 0.45s cubic-bezier(0.22,1,0.36,1) !important;
}

@media (max-width: 1000px) {
  .bl-container,
  .uc-bl-news .t-feed,
  .uc-bl-news .t-feed__container,
  .uc-bl-games .t-store,
  .uc-bl-games .t-store__grid-cont {
    width: min(100% - 64px, var(--bl-container)) !important;
  }

  .bl-nav { width: calc(100% - 40px); }
  .bl-nav__links { display: none; }

  .bl-hero { min-height: 0; }
  .bl-hero__layout {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 138px;
    padding-bottom: 70px;
  }

  .bl-hero__title { max-width: 720px; font-size: clamp(58px, 9vw, 82px); }
  .bl-hero__visual { padding: 20px 24px 78px; }
  .bl-hero__panel { display: none; }
  .bl-feature { max-width: 820px; margin-inline: auto; }
  .bl-feature__image { height: auto; aspect-ratio: 16 / 9; }

  .uc-bl-news .t-feed__container,
  .uc-bl-games .t-store__card-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  /* Featured на планшете: вертикально */
  .uc-bl-games .bl-featured-product.t-store__card {
    flex-direction: column !important;
    min-height: 0;
  }
  .uc-bl-games .bl-featured-product.t-store__card > a:first-child {
    width: 100% !important;
  }
  .uc-bl-games .bl-featured-product .t-store__card__imgwrapper {
    min-height: 260px !important;
    height: 260px !important;
  }
  .uc-bl-games .bl-featured-product .t-store__card__wrap_txt-and-btns {
    padding: 24px 28px 28px !important;
  }

  .bl-services { grid-template-columns: 1fr; }
  .bl-why { grid-template-columns: 1fr; }
  .bl-process { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bl-submit__card { grid-template-columns: 1fr; gap: 38px; }
  .bl-contact { grid-template-columns: 1fr; }
  .bl-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 78px; }

  .bl-container,
  .uc-bl-news .t-feed,
  .uc-bl-news .t-feed__container,
  .uc-bl-games .t-store,
  .uc-bl-games .t-store__grid-cont {
    width: calc(100% - 40px) !important;
  }

  .bl-section { padding: 72px 0; }
  .bl-title { font-size: clamp(34px, 11vw, 48px); }
  .bl-section__head { margin-bottom: 28px; }

  .bl-nav {
    top: 10px;
    width: calc(100% - 24px);
    border-radius: 24px;
  }

  .bl-nav__inner { min-height: 56px; gap: 10px; padding: 7px 8px 7px 10px; }
  .bl-nav__mark { width: 38px; height: 38px; }
  .bl-nav__brand { gap: 9px; font-size: 18px; }
  .bl-nav__cta { min-height: 40px; padding: 10px 14px; font-size: 11px; }

  .bl-hero__layout { padding-top: 120px; padding-bottom: 54px; }
  .bl-hero__title { max-width: 100%; font-size: clamp(50px, 15vw, 68px); line-height: 0.98; }
  .bl-hero__lead { font-size: 16px; }
  .bl-actions { align-items: flex-start; flex-direction: column; }
  .bl-button { max-width: 100%; }
  .bl-hero__visual { padding: 0 0 18px; }
  .bl-feature__image-wrap { padding: 7px; border-radius: 23px; }
  .bl-feature__image { border-radius: 17px; }
  .bl-feature__label { top: 18px; left: 18px; font-size: 9px; }
  .bl-feature__message { width: calc(100% - 16px); margin: -18px 8px 0; padding: 16px; border-radius: 20px 20px 6px 20px; }

  .bl-dynamic-head { padding: 72px 0 24px; }
  .uc-bl-news,
  .uc-bl-games { padding-bottom: 72px !important; }

  .uc-bl-news .t-feed__container,
  .uc-bl-games .t-store__card-list,
  .bl-process,
  .bl-why__grid { grid-template-columns: 1fr; }

  .bl-service,
  .bl-process__step { padding: 26px 22px; }
  .bl-submit { padding-top: 48px; padding-bottom: 48px; }
  .bl-submit__card { padding: 36px 24px; border-radius: 26px; }
  .bl-creators { align-items: flex-start; flex-direction: column; padding: 30px 24px; }

  .bl-contact__details > div { grid-template-columns: 1fr; gap: 6px; padding: 16px 18px; }
  .bl-footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .bl-footer__bottom { align-items: flex-start; flex-direction: column; }
}

@media (hover: none), (pointer: coarse) {
  .bl-button:hover,
  .uc-bl-news .t-feed__col-grid__post-wrapper:hover,
  .uc-bl-games .t-store__card:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .bl-theme *,
  .bl-theme *::before,
  .bl-theme *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .bl-reveal { opacity: 1; transform: none; }
}
