.home_categories_wrap {
  margin-bottom: 1.5rem;
}

.home_modes_hidden {
  display: none !important;
}

#servers-section.servers_section_hidden {
  display: none !important;
}

#home-servers-wrap.servers_section_hidden {
  display: none !important;
}

.home_categories_list .home_category_card {
  will-change: transform, opacity, filter;
}

#home-modes-section.home_cards_intro .home_category_card {
  opacity: 0;
  transform: translateY(22px) scale(0.98);
  filter: blur(4px);
}

#home-modes-section.home_cards_intro.home_cards_intro_active .home_category_card {
  animation: home_card_intro 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

#home-modes-section.home_cards_intro.home_cards_intro_active .home_category_card:nth-child(1) { animation-delay: 0.02s; }
#home-modes-section.home_cards_intro.home_cards_intro_active .home_category_card:nth-child(2) { animation-delay: 0.06s; }
#home-modes-section.home_cards_intro.home_cards_intro_active .home_category_card:nth-child(3) { animation-delay: 0.1s; }
#home-modes-section.home_cards_intro.home_cards_intro_active .home_category_card:nth-child(4) { animation-delay: 0.14s; }
#home-modes-section.home_cards_intro.home_cards_intro_active .home_category_card:nth-child(5) { animation-delay: 0.18s; }
#home-modes-section.home_cards_intro.home_cards_intro_active .home_category_card:nth-child(6) { animation-delay: 0.22s; }
#home-modes-section.home_cards_intro.home_cards_intro_active .home_category_card:nth-child(7) { animation-delay: 0.26s; }
#home-modes-section.home_cards_intro.home_cards_intro_active .home_category_card:nth-child(8) { animation-delay: 0.3s; }

#home-modes-section.home_cards_leaving {
  pointer-events: none;
}

#home-modes-section.home_cards_leaving .home_category_card {
  animation: home_card_out 0.28s ease-in forwards;
}

#home-servers-wrap.servers_switch_in,
#servers-section.servers_switch_in {
  animation: home_servers_in 0.32s cubic-bezier(0.22, 1, 0.36, 1) both;
}

#home-servers-wrap.servers_switch_out,
#servers-section.servers_switch_out {
  animation: home_servers_out 0.28s ease-in both;
}

@keyframes home_card_intro {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.98);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes home_card_out {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
  to {
    opacity: 0;
    transform: translateY(14px) scale(0.985);
    filter: blur(2px);
  }
}

@keyframes home_servers_in {
  from {
    opacity: 0;
    transform: translateY(14px);
    filter: blur(2px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes home_servers_out {
  from {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
  to {
    opacity: 0;
    transform: translateY(10px);
    filter: blur(2px);
  }
}

.home_categories_title {
  display: block;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1.25rem;
  padding: 0.75rem 1.25rem;
  letter-spacing: 0.02em;
  position: relative;
}

.home_badges_admin_btn {
  position: absolute;
  right: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.25);
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.home_badges_admin_btn svg {
  width: 1.15rem;
  height: 1.15rem;
}

.home_badges_admin_btn:hover {
  transform: translateY(-50%) rotate(18deg);
  background: rgba(0, 0, 0, 0.35);
  border-color: rgba(255, 255, 255, 0.2);
}

.home_categories_title::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--accent, rgba(255, 255, 255, 0.4)), transparent);
}

.home_categories_wrap.row {
  margin-inline: 0;
  width: 100%;
}

.home_categories_wrap.row > .col-md-12 {
  padding-inline: 0;
}

.home_categories_list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
  width: 100%;
  max-width: 100%;
  align-items: stretch;
  box-sizing: border-box;
}

.home_category_card {
  display: block;
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  background: linear-gradient(135deg, var(--card) 0%, rgba(255, 255, 255, 0.04) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.home_category_bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: rgba(30, 35, 45, 0.95);
}

.home_category_overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.4) 35%,
    transparent 70%
  );
  transition: background 0.18s cubic-bezier(0.33, 1, 0.68, 1);
}

.home_category_card_all .home_category_overlay {
  background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.4) 35%,
      transparent 70%
    ),
    rgba(0, 0, 0, 0.35);
}

.home_category_card_all:hover .home_category_overlay {
  background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.4) 35%,
      transparent 70%
    ),
    rgba(0, 0, 0, 0.35);
}

.home_category_card_all .home_category_agent {
  display: none !important;
}

.home_category_card_all {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* «Все режимы» + «Магазин»: прозрачный фон карточки */
.home_category_stack .home_category_card_glass {
  background: transparent !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.home_category_stack .home_category_card_glass:hover {
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
}

.home_category_stack .home_category_card_all.home_category_card_glass .home_category_overlay {
  background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.32) 0%,
      rgba(0, 0, 0, 0.06) 48%,
      transparent 82%
    ),
    rgba(0, 0, 0, 0.04);
}

.home_category_stack .home_category_card_clans.home_category_card_store_visual.home_category_card_glass,
.home_category_stack .home_category_card_store.home_category_card_glass {
  border-color: var(--transparent-10-w, rgba(255, 255, 255, 0.14));
  box-shadow: none;
}

.home_category_stack .home_category_card_clans.home_category_card_store_visual.home_category_card_glass:hover,
.home_category_stack .home_category_card_store.home_category_card_glass:hover {
  border-color: var(--transparent-10-w, rgba(255, 255, 255, 0.14));
  box-shadow: none;
}

.home_category_stack .home_category_card_store.home_category_card_glass .home_category_overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.48) 0%,
    rgba(0, 0, 0, 0.14) 46%,
    transparent 82%
  );
}

.home_category_stack .home_category_card_store.home_category_card_glass:hover .home_category_overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.42) 0%,
    rgba(0, 0, 0, 0.1) 46%,
    transparent 82%
  );
}

.home_category_stack .home_category_card_clans.home_category_card_store_visual.home_category_card_glass .home_category_overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.46) 0%,
    rgba(0, 0, 0, 0.16) 46%,
    transparent 82%
  );
  transition: background 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

.home_category_stack .home_category_card_clans.home_category_card_store_visual.home_category_card_glass .home_category_overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.22);
  opacity: 1;
  transition: opacity 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

.home_category_stack .home_category_card_clans.home_category_card_store_visual.home_category_card_glass:hover .home_category_overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.38) 0%,
    rgba(0, 0, 0, 0.1) 46%,
    transparent 82%
  );
}

.home_category_stack .home_category_card_clans.home_category_card_store_visual.home_category_card_glass:hover .home_category_overlay::after {
  opacity: 0;
}

.home_category_card_all_modes {
  grid-column: span 2;
  aspect-ratio: unset;
  align-self: stretch;
  min-height: 0;
  isolation: isolate;
}

.home_category_card_all_modes::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -28%;
  width: min(92%, 32rem);
  height: 68%;
  transform: translateX(-50%) scale(0.95);
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  background: radial-gradient(
    ellipse at center,
    color-mix(in srgb, var(--span, #818cf8) 14%, transparent) 0%,
    color-mix(in srgb, var(--span, #6366f1) 6%, transparent) 48%,
    transparent 78%
  );
  filter: blur(18px);
  transition: opacity 0.75s cubic-bezier(0.33, 1, 0.68, 1), transform 0.75s cubic-bezier(0.33, 1, 0.68, 1);
}

.home_category_card_all_modes:hover::after {
  opacity: 0.18;
  transform: translateX(-50%) scale(1);
}

.home_category_stack,
.home_category_card_placeholder {
  align-self: start;
}

.home_category_stack .home_category_card_clans .home_category_clans_caption,
.home_category_stack .home_category_card_clans .home_category_hover_play_cta {
  display: none;
}

.home_category_stack .home_category_card_all.home_category_card_glass:hover .home_category_overlay {
  background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.38) 0%,
      rgba(0, 0, 0, 0.08) 48%,
      transparent 82%
    ),
    rgba(0, 0, 0, 0.06);
}

.home_category_card_all .home_category_bg:not(.home_category_bg_has_image) {
  background-image: linear-gradient(
    135deg,
    rgba(var(--accent-rgb, 99, 102, 241), 0.055) 0%,
    rgba(30, 35, 50, 0.07) 25%,
    rgba(var(--green-rgb, 34, 197, 94), 0.035) 50%,
    rgba(30, 35, 50, 0.07) 75%,
    rgba(var(--accent-rgb, 99, 102, 241), 0.045) 100%
  ) !important;
  background-color: rgba(25, 30, 45, 0.04);
  overflow: hidden;
}

.home_category_card_all .home_category_bg.home_category_bg_has_image {
  background-size: cover;
  background-position: center;
  background-color: rgba(25, 30, 45, 0.2);
}

.home_category_card_all .home_category_bg:not(.home_category_bg_has_image)::before,
.home_category_card_all .home_category_bg:not(.home_category_bg_has_image)::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.home_category_card_all .home_category_bg:not(.home_category_bg_has_image)::before {
  background: linear-gradient(
    135deg,
    rgba(147, 51, 234, 0.05) 0%,
    rgba(30, 35, 50, 0.09) 25%,
    rgba(34, 211, 238, 0.045) 50%,
    rgba(30, 35, 50, 0.09) 75%,
    rgba(139, 92, 246, 0.05) 100%
  );
  animation: home_gradient_phase_1 12s ease-in-out infinite;
}

.home_category_card_all .home_category_bg:not(.home_category_bg_has_image)::after {
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.05) 0%,
    rgba(30, 35, 50, 0.09) 25%,
    rgba(251, 146, 60, 0.045) 50%,
    rgba(30, 35, 50, 0.09) 75%,
    rgba(168, 85, 247, 0.05) 100%
  );
  animation: home_gradient_phase_2 12s ease-in-out infinite;
}

@keyframes home_gradient_phase_1 {
  0%, 25%, 100% {
    opacity: 0;
  }
  12.5%, 37.5% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

@keyframes home_gradient_phase_2 {
  0%, 50%, 75%, 100% {
    opacity: 0;
  }
  62.5%, 87.5% {
    opacity: 1;
  }
}

.home_category_play_icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.9);
  transition: transform 0.35s ease;
  animation: home_play_icon_pulse 2s ease-in-out infinite;
}

.home_category_play_icon svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
  transition: transform 0.35s ease;
}

.home_category_card_all:hover .home_category_play_icon {
  animation: none;
}

.home_category_card_all:hover .home_category_play_icon svg {
  transform: scale(1.1);
}

@keyframes home_play_icon_pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.9;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05);
    opacity: 1;
  }
}

.home_category_card:not(.home_category_card_all):not(.home_category_card_all_modes):hover .home_category_overlay {
  background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.4) 35%,
      transparent 70%
    ),
    rgba(0, 0, 0, 0.5);
}

.home_category_agent {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 85%;
  object-fit: cover;
  object-position: left center;
  opacity: 0;
  transform: translateX(40%);
  transition: opacity 0.4s ease, transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  z-index: 1;
}

.home_category_head {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  max-width: calc(100% - 1.7rem);
  pointer-events: none;
}

.home_category_head .home_category_name {
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.65);
  margin-bottom: 0;
  text-align: left;
}

.home_category_stack .home_category_head .home_category_name {
  font-size: 1.05rem;
}

.home_category_online_top {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 4;
  pointer-events: none;
}

.home_category_head_center {
  top: 50%;
  bottom: auto;
  left: 50%;
  right: auto;
  transform: translate(-50%, -50%);
  align-items: center;
  text-align: center;
  max-width: calc(100% - 1.5rem);
}

.home_category_head_center .home_category_name {
  text-align: center;
}

.home_category_head_bottom {
  top: auto;
  bottom: 0.85rem;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  align-items: center;
  text-align: center;
  max-width: calc(100% - 1.2rem);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.home_category_head_bottom .home_category_name {
  text-align: center;
}

.home_category_card_clans:hover .home_category_head_bottom {
  opacity: 0;
  transform: translateX(-50%) translateY(8px);
  pointer-events: none;
}

.home_category_stack .home_category_head_center .home_category_name {
  font-size: 1.05rem;
}

.home_category_stack .home_category_head_bottom {
  bottom: 0.65rem;
}

.home_category_card_agent_promo .home_category_agent {
  left: 50%;
  right: auto;
  top: auto;
  bottom: 0;
  width: min(100%, 480px);
  max-height: 96%;
  height: auto;
  object-fit: contain;
  object-position: center bottom;
  opacity: 1;
  transform: translateX(-50%) scale(1);
  transform-origin: center bottom;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s ease;
}

.home_category_card_all_modes .home_category_bg {
  filter: brightness(0.74);
  transform: scale(1.06);
  transform-origin: center center;
  transition:
    filter 0.75s cubic-bezier(0.33, 1, 0.68, 1),
    -webkit-filter 0.75s cubic-bezier(0.33, 1, 0.68, 1),
    transform 0.8s cubic-bezier(0.33, 1, 0.68, 1);
}

.home_category_card_all_modes .home_category_overlay {
  z-index: 2;
  background: rgba(0, 0, 0, 0.38) !important;
  transition: background 0.75s cubic-bezier(0.33, 1, 0.68, 1) !important;
}

.home_category_card_all_modes:hover .home_category_bg {
  filter: brightness(0.82);
  transform: scale(1.02);
}

.home_category_card_all_modes:hover .home_category_overlay {
  background: rgba(0, 0, 0, 0.28) !important;
}

.home_category_card_all_modes.home_category_card_agent_promo .home_category_agent {
  left: auto;
  right: -2%;
  top: auto;
  bottom: 0;
  width: min(68%, 520px);
  max-height: 100%;
  object-fit: contain;
  object-position: right bottom;
  transform: scale(1);
  transform-origin: right bottom;
  z-index: 6;
  transition: transform 0.45s cubic-bezier(0.33, 1, 0.68, 1), filter 0.45s ease;
}

.home_category_card_all_modes.home_category_card_agent_promo:hover .home_category_agent {
  transform: scale(1.02);
  filter: drop-shadow(0 8px 28px rgba(0, 0, 0, 0.35));
}

.home_category_all_modes_center {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 5;
  transform: translate(-50%, -50%) scale(1);
  width: max-content;
  max-width: min(88%, 22rem);
  pointer-events: none;
  transition: transform 0.45s cubic-bezier(0.33, 1, 0.68, 1);
}

.home_category_card_all_modes:hover .home_category_all_modes_center {
  transform: translate(-50%, -50%) scale(1.06);
}

.home_category_all_modes_center .home_category_head_center {
  position: static;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  transform: none;
  width: 100%;
  max-width: none;
  align-items: center;
  text-align: center;
}

.home_category_card_all_modes .home_category_all_modes_info .home_category_name {
  font-size: clamp(1.15rem, 2.1vw, 1.55rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  white-space: nowrap;
  text-align: center;
}

.home_category_card_all_modes .home_category_all_modes_info .home_category_online {
  justify-content: center;
  margin-top: 0.35rem;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
}

.home_category_card_all_modes .home_category_promo_badges {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  z-index: 7;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35rem;
  max-width: calc(100% - 1rem);
  pointer-events: none;
}

.home_category_card_all_modes .home_category_promo_badges .home_category_promo_badge {
  position: static;
  top: auto;
  right: auto;
  max-width: 100%;
  font-size: 0.72rem;
  padding: 0.24rem 0.52rem;
}

.home_category_all_modes_desc {
  position: absolute;
  left: 50%;
  bottom: 0.7rem;
  z-index: 4;
  width: min(88%, 26rem);
  margin: 0;
  transform: translateX(-50%);
  text-align: center;
  font-size: clamp(0.65rem, 0.9vw, 0.76rem);
  font-weight: 500;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.7);
  pointer-events: none;
  transition: opacity 0.45s cubic-bezier(0.33, 1, 0.68, 1), transform 0.45s cubic-bezier(0.33, 1, 0.68, 1);
}

.home_category_card_all_modes:hover .home_category_all_modes_desc {
  opacity: 0.92;
  transform: translateX(-50%) translateY(-1px);
}

.home_category_card_agent_promo:not(.home_category_card_all_modes):hover .home_category_agent {
  opacity: 1;
  transform: translateX(-50%) scale(1.1);
  filter: drop-shadow(0 8px 28px rgba(0, 0, 0, 0.35));
}

.home_category_hover_play_cta {
  position: absolute;
  z-index: 5;
  opacity: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.35s cubic-bezier(0.33, 1, 0.68, 1), transform 0.35s cubic-bezier(0.33, 1, 0.68, 1);
}

.home_category_hover_play_cta_bottom {
  left: 0;
  right: 0;
  bottom: 1rem;
  top: auto;
  transform: translateY(10px);
}

.home_category_hover_play_cta_center {
  left: 50%;
  top: 50%;
  right: auto;
  bottom: auto;
  transform: translate(-50%, -50%) scale(0.96);
}

.home_category_card_agent_promo:hover .home_category_hover_play_cta_bottom {
  opacity: 1;
  transform: translateY(0);
}

.home_category_card_clans:hover .home_category_hover_play_cta_center {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.home_category_hover_play_cta_inner {
  display: block;
  padding: 0;
  border: none;
  background: none;
  box-shadow: none;
}

.home_category_hover_play_cta_text {
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: none;
  color: #fff;
  text-shadow:
    0 0 28px color-mix(in srgb, var(--span, #818cf8) 55%, transparent),
    0 0 48px color-mix(in srgb, var(--span, #22d3ee) 28%, transparent),
    0 2px 14px rgba(0, 0, 0, 0.85);
  animation: home_play_label_soft_pulse 2.4s ease-in-out infinite;
}

@keyframes home_play_label_soft_pulse {
  0%, 100% {
    opacity: 0.88;
  }
  50% {
    opacity: 1;
  }
}

@supports (background-clip: text) or (-webkit-background-clip: text) {
  .home_category_hover_play_cta_text {
    background: linear-gradient(
      118deg,
      #ffffff 0%,
      #e0e7ff 38%,
      #a5f3fc 72%,
      #f5f3ff 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.75)) drop-shadow(0 0 20px color-mix(in srgb, var(--span, #6366f1) 40%, transparent));
  }
}

.home_category_online {
  position: static;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.88);
  background: none;
  border: none;
  border-radius: 0;
  backdrop-filter: none;
  box-shadow: none;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55);
}

.home_category_online_dot {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green, #22c55e);
  box-shadow: 0 0 8px var(--green, #22c55e);
  animation: home_online_pulse 2s ease-in-out infinite;
}

.home_category_online_count {
  font-weight: 700;
  color: #fff;
}

.home_category_online_suffix {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
}

.home_category_hint {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}

.home_category_hint_icon {
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.42) 100%);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.32);
}

.home_category_hint_tooltip {
  position: absolute;
  top: 50%;
  right: calc(100% + 0.45rem);
  transform: translateY(-50%);
  min-width: 210px;
  max-width: 250px;
  padding: 0.5rem 0.65rem;
  border-radius: 10px;
  font-size: 0.75rem;
  line-height: 1.35;
  color: #fff;
  background: rgba(10, 12, 18, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.home_category_hint:hover .home_category_hint_tooltip {
  opacity: 1;
  visibility: visible;
}

@keyframes home_online_pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.home_category_footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 1rem;
  display: flex;
  flex-direction: column;
}

.home_category_name {
  font-size: 1.35rem;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  margin-bottom: 0.15rem;
}

.home_category_stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  aspect-ratio: 4/5;
  align-self: start;
  width: 100%;
  min-width: 0;
}

.home_category_stack .home_category_card_stack_item {
  flex: 1 1 0;
  height: auto;
  aspect-ratio: auto;
}

.home_category_stack .home_category_card_stack_item .home_category_bg {
  inset: 0;
}

.home_category_promo_badge {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  z-index: 4;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
  white-space: nowrap;
}

.home_category_promo_badge_left {
  left: 0.55rem;
  right: auto;
}

.home_category_promo_badge_gold {
  color: rgba(30, 20, 0, 0.95);
  background: linear-gradient(
    135deg,
    rgba(252, 211, 77, 0.95) 0%,
    rgba(245, 158, 11, 0.95) 55%,
    rgba(234, 179, 8, 0.95) 100%
  );
  border-color: rgba(255, 255, 255, 0.28);
}

.home_category_promo_badge_green {
  color: rgba(235, 255, 245, 0.95);
  background: linear-gradient(
    135deg,
    rgba(var(--green-rgb, 34, 197, 94), 0.55) 0%,
    rgba(20, 55, 35, 0.92) 60%,
    rgba(var(--green-rgb, 34, 197, 94), 0.35) 100%
  );
  border-color: rgba(255, 255, 255, 0.2);
}

.home_category_card:hover .home_category_promo_badge {
  filter: brightness(1.03);
}

/* Карточка магазина: движущаяся полоса как в module_page_store */
@keyframes home-category-ring-spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.home_category_card_store,
.home_category_card_store_visual {
  --home-card-glow-1: var(--span);
  --home-card-glow-2: var(--green, #22c55e);
  overflow: hidden;
  isolation: isolate;
  border-color: var(--transparent-10-w, rgba(255, 255, 255, 0.08));
  box-shadow: none;
}

.home_category_card_store:hover,
.home_category_card_store_visual:hover {
  border-color: var(--transparent-10-w, rgba(255, 255, 255, 0.08));
  box-shadow: none;
}

.home_category_stack .home_category_card_store.home_category_card_glass {
  border-color: var(--transparent-10-w, rgba(255, 255, 255, 0.14));
  box-shadow: none;
}

.home_category_stack .home_category_card_store.home_category_card_glass:hover {
  border-color: var(--transparent-10-w, rgba(255, 255, 255, 0.14));
  box-shadow: none;
}

.home_category_card-glow,
.home_category_card-glow-halo {
  position: absolute;
  border-radius: inherit;
  pointer-events: none;
  opacity: 1;
  visibility: visible;
}

.home_category_card-glow {
  inset: 0;
  z-index: 6;
  padding: 3px;
  overflow: hidden;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
}

.home_category_card-glow-halo {
  inset: 0;
  z-index: 0;
  filter: blur(16px);
  overflow: hidden;
  opacity: 0.5;
}

.home_category_card-glow-spin {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 220%;
  height: 220%;
  transform: translate(-50%, -50%);
  background: conic-gradient(
    from 0deg,
    transparent 0deg 140deg,
    color-mix(in srgb, var(--home-card-glow-1) 18%, transparent) 165deg,
    color-mix(in srgb, var(--home-card-glow-1) 55%, transparent) 195deg,
    var(--home-card-glow-1) 235deg,
    var(--home-card-glow-2) 285deg,
    color-mix(in srgb, var(--home-card-glow-2) 65%, transparent) 320deg,
    color-mix(in srgb, var(--home-card-glow-1) 25%, transparent) 345deg,
    transparent 360deg
  );
  animation: home-category-ring-spin 2.8s linear infinite;
}

.home_category_card-glow-halo .home_category_card-glow-spin {
  background: conic-gradient(
    from 0deg,
    transparent 0deg 140deg,
    color-mix(in srgb, var(--home-card-glow-1) 45%, transparent) 190deg,
    color-mix(in srgb, var(--home-card-glow-2) 50%, var(--home-card-glow-1)) 260deg,
    color-mix(in srgb, var(--home-card-glow-2) 35%, transparent) 330deg,
    transparent 360deg
  );
}

.home_category_card_store .home_category_bg,
.home_category_card_store_visual .home_category_bg {
  z-index: 1;
  border-radius: inherit;
  transform: scale(1.06);
  transform-origin: center center;
  transition:
    transform 0.55s cubic-bezier(0.33, 1, 0.68, 1),
    filter 0.55s cubic-bezier(0.33, 1, 0.68, 1),
    -webkit-filter 0.55s cubic-bezier(0.33, 1, 0.68, 1);
  filter: blur(7px) brightness(0.8);
  -webkit-filter: blur(7px) brightness(0.8);
}

.home_category_card_store .home_category_bg:not(.home_category_bg_has_image),
.home_category_card_store_visual .home_category_bg:not(.home_category_bg_has_image) {
  background-image: linear-gradient(
    135deg,
    rgba(var(--green-rgb, 34, 197, 94), 0.055) 0%,
    rgba(20, 40, 30, 0.07) 50%,
    rgba(var(--green-rgb, 34, 197, 94), 0.035) 100%
  );
  background-color: rgba(18, 32, 26, 0.035);
  filter: blur(4px) brightness(0.88);
  -webkit-filter: blur(4px) brightness(0.88);
}

.home_category_card_store .home_category_bg.home_category_bg_has_image,
.home_category_card_store_visual .home_category_bg.home_category_bg_has_image {
  background-size: cover;
  background-position: center;
  background-color: rgba(18, 32, 26, 0.2);
}

.home_category_card_store:hover .home_category_bg,
.home_category_card_store_visual:hover .home_category_bg {
  transform: scale(1.14);
  filter: blur(4px) brightness(0.94);
  -webkit-filter: blur(4px) brightness(0.94);
}

.home_category_card_store:hover .home_category_bg:not(.home_category_bg_has_image),
.home_category_card_store_visual:hover .home_category_bg:not(.home_category_bg_has_image) {
  transform: scale(1.1);
  filter: blur(2px) brightness(1);
  -webkit-filter: blur(2px) brightness(1);
}

.home_category_card_store .home_category_overlay,
.home_category_card_store_visual .home_category_overlay {
  z-index: 2;
  transition: background 0.45s ease;
}

.home_category_card_store .home_category_head,
.home_category_card_store .home_category_promo_badge,
.home_category_card_store_visual .home_category_head,
.home_category_card_store_visual .home_category_promo_badge {
  z-index: 4;
}

.home_category_card_store .home_category_head_center,
.home_category_card_store_visual .home_category_head_center {
  z-index: 5;
  transition: transform 0.55s cubic-bezier(0.33, 1, 0.68, 1);
  transform: translate(-50%, -50%) scale(1);
  will-change: transform;
}

.home_category_card_store:hover .home_category_head_center,
.home_category_card_store_visual:hover .home_category_head_center {
  transform: translate(-50%, -50%) scale(1.24);
}

.home_category_card_store .home_category_head_center .home_category_name,
.home_category_card_store_visual .home_category_head_center .home_category_name {
  transition: letter-spacing 0.45s ease, text-shadow 0.45s ease;
}

.home_category_card_store:hover .home_category_head_center .home_category_name,
.home_category_card_store_visual:hover .home_category_head_center .home_category_name {
  letter-spacing: 0.03em;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
}

/* Кланы: без размытия фона, плавное осветление и лёгкий зум */
.home_category_stack .home_category_card_clans.home_category_card_store_visual .home_category_bg,
.home_category_stack .home_category_card_clans.home_category_card_store_visual .home_category_bg:not(.home_category_bg_has_image),
.home_category_stack .home_category_card_clans.home_category_card_store_visual .home_category_bg.home_category_bg_has_image {
  filter: brightness(0.76);
  -webkit-filter: brightness(0.76);
  transform: scale(1);
  transform-origin: center center;
  transition:
    filter 0.6s cubic-bezier(0.33, 1, 0.68, 1),
    -webkit-filter 0.6s cubic-bezier(0.33, 1, 0.68, 1),
    transform 0.65s cubic-bezier(0.33, 1, 0.68, 1);
}

.home_category_stack .home_category_card_clans.home_category_card_store_visual:hover .home_category_bg,
.home_category_stack .home_category_card_clans.home_category_card_store_visual:hover .home_category_bg:not(.home_category_bg_has_image),
.home_category_stack .home_category_card_clans.home_category_card_store_visual:hover .home_category_bg.home_category_bg_has_image {
  filter: brightness(0.94);
  -webkit-filter: brightness(0.94);
  transform: scale(1.02);
}

/* «Скоро» и «Кланы»: подпись и иконки по центру карточки */
.home_category_center_caption {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.75rem 1rem;
  text-align: center;
  max-width: 94%;
  pointer-events: none;
}

.home_category_center_caption .home_category_name {
  margin-bottom: 0;
}

.home_category_soon_clock {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.9);
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.5));
}

.home_category_soon_clock svg {
  width: 2.75rem;
  height: 2.75rem;
}

.home_category_card_soon {
  cursor: default;
}

.home_category_card_soon .home_category_bg {
  background-color: #12131a;
  background-image: linear-gradient(180deg, #1a1b24 0%, #12131a 45%, #0e0f14 100%);
}

.home_category_card_soon:hover .home_category_bg {
  transform: none;
  filter: blur(0) brightness(1.22) saturate(1.06);
  -webkit-filter: blur(0) brightness(1.22) saturate(1.06);
}

.home_category_card_soon .home_category_overlay {
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(8, 9, 14, 0.88) 0%,
    rgba(10, 11, 16, 0.82) 42%,
    rgba(14, 15, 22, 0.72) 100%
  );
  transition: background 0.55s cubic-bezier(0.33, 1, 0.68, 1);
}

/* Поверх градиента оверлея: в покое тёмный слой без «провала» в чистый #000 */
.home_category_card_soon .home_category_overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
  background: rgba(10, 11, 16, 0.88);
  transition: background 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

.home_category_card_soon:hover .home_category_overlay::before {
  /* пятно ниже геометрического центра, тёплые тени без «серой дымки», центр прозрачнее */
  background:
    radial-gradient(
      175% 135% at 50% 46%,
      rgba(12, 10, 8, 0.04) 0%,
      rgba(10, 9, 8, 0.22) 32%,
      rgba(6, 6, 8, 0.55) 58%,
      rgba(0, 0, 0, 0.88) 82%,
      rgba(0, 0, 0, 0.95) 100%
    ),
    radial-gradient(105% 88% at 0% 10%, rgba(0, 0, 0, 0.55) 0%, transparent 58%),
    radial-gradient(105% 88% at 100% 10%, rgba(0, 0, 0, 0.55) 0%, transparent 58%);
}

/* «Скоро»: при наведении — свет сверху, яркое пятно уходит ниже центра карточки */
.home_category_card_soon::after {
  z-index: 2;
  box-shadow: none;
  opacity: 0;
  transition:
    opacity 0.55s cubic-bezier(0.33, 1, 0.68, 1),
    filter 0.55s ease;
  background:
    /* основной конус: центр смещён вниз (~46%), длиннее вниз к низу карточки */
    radial-gradient(
      175% 145% at 50% 44%,
      rgba(255, 252, 245, 0.32) 0%,
      rgba(255, 247, 232, 0.14) 36%,
      rgba(255, 242, 220, 0.05) 58%,
      transparent 82%
    ),
    /* боковые блики — тёплые, без холодного серо-голубого */
    radial-gradient(
      100% 88% at 0% 8%,
      rgba(255, 244, 228, 0.16) 0%,
      rgba(255, 248, 236, 0.05) 46%,
      transparent 68%
    ),
    radial-gradient(
      100% 88% at 100% 8%,
      rgba(255, 244, 228, 0.16) 0%,
      rgba(255, 248, 236, 0.05) 46%,
      transparent 68%
    );
  filter: saturate(1.02);
}

.home_category_card_soon:hover::after {
  opacity: 1;
}

.home_category_card_soon:hover .home_category_overlay {
  background: linear-gradient(
    to top,
    rgba(6, 6, 8, 0.9) 0%,
    rgba(5, 5, 7, 0.68) 34%,
    rgba(10, 9, 8, 0.14) 100%
  );
}

.home_category_card_soon:hover .home_category_soon_clock {
  color: rgba(255, 255, 255, 1);
  filter: drop-shadow(0 0 18px rgba(255, 248, 230, 0.65)) drop-shadow(0 2px 10px rgba(0, 0, 0, 0.45));
  transition: color 0.45s ease, filter 0.45s ease;
}

.home_category_card_soon .home_category_soon_clock {
  transition: color 0.45s ease, filter 0.45s ease;
}

.home_category_card_soon:hover .home_category_center_caption .home_category_name {
  text-shadow:
    0 0 20px rgba(255, 250, 235, 0.35),
    0 2px 10px rgba(0, 0, 0, 0.55);
  transition: text-shadow 0.45s ease;
}

.home_category_card_soon .home_category_center_caption .home_category_name {
  transition: text-shadow 0.45s ease;
}

/* Заглушки «Событие» / «Награды» — без клика */
.home_category_card_placeholder {
  cursor: default;
  pointer-events: none;
}

.home_category_card_placeholder .home_category_bg {
  background-color: #12131a;
  background-image: linear-gradient(180deg, #1a1b24 0%, #12131a 45%, #0e0f14 100%);
}

.home_category_card_placeholder .home_category_bg.home_category_bg_has_image {
  background-size: cover;
  background-position: center;
  background-color: rgba(18, 19, 26, 0.35);
  filter: blur(18px) brightness(0.68) saturate(1.05);
  -webkit-filter: blur(18px) brightness(0.68) saturate(1.05);
  transform: scale(1.14);
}

.home_category_card_placeholder .home_category_overlay {
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(8, 9, 14, 0.42) 0%,
    rgba(10, 11, 16, 0.58) 50%,
    rgba(8, 9, 14, 0.72) 100%
  );
}

.home_category_soon_center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: min(92%, 18rem);
  text-align: center;
  pointer-events: none;
}

.home_category_soon_title {
  font-size: clamp(1.1rem, 2.4vw, 1.45rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.96);
  line-height: 1.15;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

.home_category_soon_clock {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.88);
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.4));
}

.home_category_soon_clock svg {
  width: 2.65rem;
  height: 2.65rem;
}

.home_category_soon_label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.2;
}

@media (max-width: 1200px) {
  .home_categories_list {
    grid-template-columns: repeat(4, 1fr);
  }

  .home_category_card_all_modes {
    grid-column: span 2;
  }

  .home_category_card_placeholder.home_category_card_event {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .home_categories_list {
    grid-template-columns: repeat(3, 1fr);
  }

  .home_category_card_all_modes {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .home_categories_list {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .home_category_stack,
  .home_category_card_all_modes,
  .home_category_card_placeholder {
    grid-column: 1 / -1;
    align-self: stretch;
    width: 100%;
  }

  .home_category_stack {
    aspect-ratio: 4 / 5;
    max-width: 100%;
    overflow: hidden;
    isolation: isolate;
  }

  .home_category_card_all_modes {
    aspect-ratio: 16 / 10;
    align-self: auto;
    min-height: 10.5rem;
  }

  .home_category_card-glow-halo {
    display: none;
  }

  .home_category_card_all_modes.home_category_card_agent_promo .home_category_agent {
    width: min(62%, 260px);
    right: 0;
    max-height: 92%;
  }

  .home_category_all_modes_center {
    left: 50%;
    max-width: min(92%, 18rem);
  }

  .home_category_card_all_modes .home_category_all_modes_info .home_category_name {
    font-size: clamp(0.98rem, 3.6vw, 1.22rem);
    white-space: nowrap;
  }

  .home_category_card_all_modes .home_category_promo_badges {
    top: 0.45rem;
    right: 0.45rem;
    gap: 0.28rem;
  }

  .home_category_card_all_modes .home_category_promo_badges .home_category_promo_badge {
    font-size: 0.66rem;
    padding: 0.2rem 0.45rem;
  }

  .home_category_card_all_modes .home_category_all_modes_info .home_category_online {
    font-size: 0.82rem;
  }

  .home_category_all_modes_desc {
    bottom: 0.5rem;
    width: min(94%, 18rem);
    font-size: 0.62rem;
    line-height: 1.25;
    padding: 0 0.25rem;
  }

  .home_categories_wrap {
    margin-bottom: 1rem;
  }

  .home_category_head {
    top: 0.65rem;
    left: 0.65rem;
    max-width: calc(100% - 1.3rem);
  }

  .home_category_stack .home_category_head_center,
  .home_category_stack .home_category_head_bottom {
    left: 0.65rem;
    right: 0.65rem;
    transform: none;
    align-items: flex-start;
    text-align: left;
    max-width: calc(100% - 1.3rem);
  }

  .home_category_stack .home_category_head_center {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
  }

  .home_category_stack .home_category_head_center .home_category_name,
  .home_category_stack .home_category_head_bottom .home_category_name {
    text-align: left;
  }

  .home_category_online {
    font-size: 0.75rem;
  }

  .home_category_head .home_category_name,
  .home_category_name {
    font-size: 1.15rem;
  }

  .home_category_online_top {
    top: 0.65rem;
    left: 0.65rem;
  }

  .home_category_head_center {
    max-width: calc(100% - 1.3rem);
  }

  .home_category_head_bottom {
    bottom: 0.55rem;
  }

  .home_category_stack .home_category_head_center .home_category_name,
  .home_category_stack .home_category_head_bottom .home_category_name {
    font-size: 0.92rem;
    line-height: 1.2;
  }

  .home_category_hover_play_cta_bottom {
    bottom: 0.75rem;
  }

  .home_category_hover_play_cta_text {
    font-size: 1.05rem;
  }

  .home_category_center_caption {
    gap: 0.45rem;
    padding: 0.45rem 0.6rem;
    max-width: 90%;
    box-sizing: border-box;
  }

  .home_category_center_caption .home_category_name {
    font-size: 0.95rem;
    line-height: 1.25;
    max-width: 100%;
  }

  .home_category_soon_clock svg {
    width: 2.25rem;
    height: 2.25rem;
  }
}

@media (max-width: 480px) {
  .home_categories_list {
    gap: 0.5rem;
  }

  .home_category_card_all_modes {
    aspect-ratio: 16 / 11;
    min-height: 9.5rem;
  }

  .home_category_stack .home_category_head_center .home_category_name,
  .home_category_stack .home_category_head_bottom .home_category_name {
    font-size: 0.88rem;
  }

  .home_category_card_all_modes.home_category_card_agent_promo .home_category_agent {
    width: min(58%, 220px);
    right: 0;
  }

  .home_category_all_modes_center {
    left: 50%;
    max-width: min(94%, 16rem);
  }

  .home_category_card_all_modes .home_category_all_modes_info .home_category_name {
    font-size: clamp(0.92rem, 4.8vw, 1.08rem);
  }

  .home_category_soon_title {
    font-size: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  #home-modes-section.home_cards_intro .home_category_card,
  #home-modes-section.home_cards_intro.home_cards_intro_active .home_category_card,
  #home-modes-section.home_cards_leaving .home_category_card,
  #home-servers-wrap.servers_switch_in,
  #servers-section.servers_switch_in,
  #home-servers-wrap.servers_switch_out,
  #servers-section.servers_switch_out {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .home_category_card_store .home_category_card-glow-spin {
    animation: none !important;
  }

  .home_category_all_modes_center {
    transition: none !important;
  }

  .home_category_card_all_modes .home_category_bg,
  .home_category_card_all_modes.home_category_card_agent_promo .home_category_agent,
  .home_category_card_all_modes::after {
    transition: none !important;
  }
}
