.card-seti {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.seti-seti {
  position: relative;
  background: #373C44;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s ease;
}

/* --- Свечение осталось без изменений --- */
.seti-seti::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at right center, rgba(213, 218, 88, 0.45), transparent 25%);
  filter: blur(20px);
  opacity: 0.7;
  transform: scaleX(0.6);
  transform-origin: right center;
  will-change: transform, opacity;
  transition: opacity 0.4s ease, transform 0.45s ease, filter 0.4s ease;
  pointer-events: none;
}

.seti-seti:hover::before {
  opacity: 1;
  transform: scaleX(1);
  filter: blur(28px);
  background: radial-gradient(circle at right center, rgba(252, 255, 107, 0.67), transparent 25%);
}

/* --- НОВЫЙ БЛОК: Замена ::after на реальную ссылку --- */
.seti-aff-btn {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%); /* Сдвигаем назад на половину собственной высоты */
  height: 70%;
  width: 4px;
  background: #AEFF74;
  border-radius: 8px;
  transition: width 0.35s ease, background 0.35s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  overflow: hidden; /* Скрывает стрелочку, пока полоска узкая */
  z-index: 5; /* Делает её кликабельной поверх основной карточки */
}

/* Стили самой иконки */
.seti-aff-btn .material-symbols-outlined {
  font-size: 18px; 
  color: #333; /* Принудительно ставим цвет */
  font-weight: 700; /* Делаем начертание жирным */
  line-height: 1; /* Убираем возможные межстрочные отступы браузера */
  opacity: 0;
  z-index: 10; /* Гарантированно выносим поверх всех свечений */
  transition: opacity 0.3s ease;
}

/* Поведение при наведении на карточку */
.seti-seti:hover .seti-aff-btn {
  width: 26px; /* Расширяем чуть больше, чтобы влезла иконка */
  background: #FFF8CA;
 color: #333;
  font-size: 18px; 
}



.seti-seti:hover .seti-aff-btn .material-symbols-outlined {
  transition-delay: 0.1s; /* Легкая задержка появления иконки для плавности */
}

/* Дополнительно: если навести курсор именно на полоску */
.seti-aff-btn:hover {
  filter: brightness(1.1);
}
/* --- КОНЕЦ НОВОГО БЛОКА --- */


/* --- Топ сети в категориях --- */

.category-top-gridr { display:grid; grid-template-columns: repeat(6,1fr); gap:10px; }
@media (max-width:1100px) { .category-top-gridr { grid-template-columns: repeat(2,1fr); } }
@media (max-width:520px)  { .category-top-gridr { grid-template-columns: repeat(2,1fr); } }

.category-top-gridr-glav { display:grid; grid-template-columns: repeat(3,1fr); gap:10px; }
@media (max-width:1100px) { .category-top-gridr-glav { grid-template-columns: repeat(2,1fr); } }
@media (max-width:520px)  { .category-top-gridr-glav { grid-template-columns: repeat(2,1fr); } }


.top-seti-seti {
  position: relative;
  background: rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  overflow: hidden;
  padding: 12px 12px 16px 12px;
  transition: 0.3s ease;
}

.10 .top-seti-seti {
  background: rgba(255, 255, 255, 0.19);
}

/* ХОВЕР */
.top-seti-seti:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.04);
}

.category-top-gridr-glav .top-seti-seti {
  height: 136px;
  background: rgba(255, 255, 255, 0.09);
}

.category-top-gridr-glav .top-seti-seti:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.04);
}

/* Кликабельная вся карточка */
.top-seti-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* По умолчанию — активна ссылка на карточку */
.link-site {
  pointer-events: none;
}
.link-entry {
  pointer-events: auto;
}

/* В категории — наоборот */
.category-top-gridr .link-site {
  pointer-events: auto;
}
.category-top-gridr .link-entry {
  pointer-events: none;
}

/* На главной — ссылка на карточку */
.category-top-gridr-glav .link-site {
  pointer-events: none;
}
.category-top-gridr-glav .link-entry {
  pointer-events: auto;
}





/* HEADER */
.top-seti-header {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

/* ЛОГО */
.top-seti-img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.top-seti-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ПРАВАЯ ЧАСТЬ */
.top-seti-info {
  flex: 1;
}

/* НАЗВАНИЕ */
.top-seti-title {
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  margin-bottom: 6px;
}

/* РЕЙТИНГ */
.top-seti-rating {
  position: relative;
  width: max-content;
  line-height: 1;
}

/* Общие стили звёзд */
.stars {
  font-size: 11px;
  letter-spacing: 1px;
  font-family: Arial, sans-serif;
}

/* Серые (фон) */
.stars-bg {
  color: rgba(255,255,255,0.2);
}

/* Жёлтые (заполнение) */
.stars-fill {
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap;
  overflow: hidden;
  color: #E4FF00;
}


.top-seti-rating-bar {
  height: 100%;
  background: linear-gradient(90deg, #FFFC67, #F7BA00);
  border-radius: 10px;
}

/* ОПИСАНИЕ */
.top-seti-desc {
  margin-top: 10px;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}

/* КНОПКА */
.top-seti-aff-btn {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  color: #fff;
}




/* --- НОВЫЙ БЛОК: Замена ::after на реальную ссылку --- */
.top-seti-aff-btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  height: 25px;
  width: 25px;
  background: rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  z-index: 5; /* Делает её кликабельной поверх основной карточки */
  color: #AEFF74; /* Принудительно ставим цвет */
  font-size: 14px; 
}

.top-seti-aff-btn:hover {
  color: #333;
  background: #AEFF74;
}

.category-top-gridr-glav .top-seti-crown {
display: none;
}

.category-top-gridr .top-seti-aff-btn {
display: none;
}

/* Стили самой иконки */
.top-seti-aff-btn .material-symbols-outlined {
  font-size: 14px; 
  color: #333; /* Принудительно ставим цвет */
  font-weight: 700; /* Делаем начертание жирным */
  line-height: 1; /* Убираем возможные межстрочные отступы браузера */
  opacity: 0;
  z-index: 10; /* Гарантированно выносим поверх всех свечений */
  transition: opacity 0.3s ease;
}

/* Поведение при наведении на карточку */
.top-seti-seti:hover .seti-aff-btn {
  width: 26px; /* Расширяем чуть больше, чтобы влезла иконка */
  background: #FFF8CA;
 color: #333;
  font-size: 18px; 
}



.top-seti-seti:hover .seti-aff-btn .material-symbols-outlined {
  transition-delay: 0.1s; /* Легкая задержка появления иконки для плавности */
}

/* Дополнительно: если навести курсор именно на полоску */
.top-seti-aff-btn:hover {
  filter: brightness(1.1);
}




.top-seti-crown span {
  position: absolute;
  bottom: 12px;
  right: 12px;
  color: #E4FF00; /* Принудительно ставим цвет */
  font-size: 16px; 

}






/* --- Остальные стили (без изменений) --- */
.seti-link {
  display: grid;
  grid-template-columns: 45px 1fr;
  align-items: center;
  gap: 12px;
  padding: 10px 40px 10px 10px;
  text-decoration: none;
  color: inherit;
  position: relative;
  z-index: 2;
}

.seti-img img {
  width: 45px;
  height: 45px;
  object-fit: cover;
  border-radius: 8px;
}

.seti-title {
  font-weight: 600;
  font-size: 14px;
  color: #fff;
}

.seti-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}





.top-verticals {
  margin: 40px 0;
  z-index: -10;
}

.vertical-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.vertical-card {
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  transition: 0.3s ease;
}

.vertical-card:hover {
  box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

/* Header */

.vertical-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.vertical-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
  color: #030303;
}

.vertical-icon {
  font-size: 22px;
  color: #606467;
}

.vertical-all {
  font-size: 14px;
  color: #606467;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: 0.2s ease;
}

.vertical-all:hover {
  color: #030303;
}

/* Список карточек */

.vertical-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* Footer */

.vertical-footer {
  margin-top: 25px;
}

.vertical-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background: #f4f4f4;
  color: #030303;
  text-decoration: none;
  padding: 12px;
  border-radius: 12px;
  font-weight: 500;
  transition: 0.25s ease;
}

.vertical-btn:hover {
  background: #030303;
  color: #ffffff;
}







/* Общий контейнер */
.top-wrapper-ww {
  position: relative;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

/* --- GLOW СЛОИ (вынесены выше, как ты и сделал) --- */

.glow-blur-left-ww,
.glow-blur-right-ww {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(70px) saturate(100%) brightness(70%);
  transform: scale(1.2);
  opacity: 0.5;
  pointer-events: none;
}

/* Левый glow */
.glow-blur-left-ww {
  left: 0;
  top: 0;
  width: calc(66.66% - 10px);
}

/* Правый glow */
.glow-blur-right-ww {
  right: 0;
  top: 0;
  width: calc(33.33% - 10px);
}


.glow-blur-cpa {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  object-fit: cover;
  filter: blur(90px) saturate(60%) brightness(80%);
  transform: scale(1.2);
  opacity: 0.5;
  pointer-events: none;
 z-index: -1;
}

.socr .glow-blur-cpa {
  filter: blur(90px) saturate(60%) brightness(20%);
}



.glow-blur-cpa-card {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  object-fit: cover;
  filter: blur(90px) saturate(30%) brightness(160%);
  transform: scale(1.2);
  opacity: 0.5;
  pointer-events: none;
}

/* --- БЛОКИ --- */

.left-ww,
.right-ww {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  z-index: 2; /* выше glow */
  height: 368px; /* фиксированная высота */
}

.left-ww {
  flex: 2;
}

.right-ww {
  flex: 1;
}

/* --- КАРТИНКИ ВНУТРИ БЛОКОВ --- */

.glow-main-left-ww,
.glow-main-right-ww {
  width: 100%;
  height: 100%;
  display: block;
  z-index: 10;
object-fit: cover; /* обрезает, не сжимает */
}

/* --- КОНТЕНТ --- */

.content-left-ww {
  position: absolute;
  inset: 0;
  padding: 40px;
  color: #fff;
  display: flex;
  flex-direction: column;
  z-index: 3;

}

.content-right-ww {
  position: relative;
  inset: 0;
  padding: 10px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.2);
}

.content-right-ww-glav {
  position: relative;
  inset: 0;
  padding: 50px 15px 15px 15px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 10;
  background:rgba(255,255,255,0.05);
  border-radius: 12px;
}

.title-right-ww-glav {
position: absolute;
top: 15px;
left: 20px;
font-weight: 600;
 font-size: 1.2em;
}

.title-right-ww-glav span {
  color: #E4FF00;
}

.all-right-ww-glav {
position: absolute;
top: 15px;
right: 20px;
color: #C1CB51;
font-weight: 600;
}

.all-right-ww-glav span {
font-size: 12px;
}

.mintitlecat {
 position: relative;
 font-size: 0.9em;
 color: #0AF8C6;
 font-weight: bold;
 text-transform: uppercase;
}

.titlecat {
 position: relative;
 font-size: 2.2em;
 color: #fff;
 font-weight: bold;
 text-transform: uppercase;
 max-width: 50%;
 margin-bottom: 12px;
  text-shadow:
    0 0 12px rgba(0,0,0,0.35),
    0 4px 20px rgba(0,0,0,0.25);
}

.titlecat span {
 color: #0AF8C6;
}

.desccat {
 position: relative;
 font-size: 1em;
 color: #fff;
 font-weight: 400;
 text-transform: uppercase;
 max-width: 300px;
}

.topseti-badges {
  position: absolute;
  background: #D8DD5B;
  color: #1F2928;
  font-size: 12px;
  padding: 4px 16px 26px 16px;
  border-radius: 12px;
  right: 120px;
  top: -22px;
  border-right: 1px solid #BFC15E;
  border-top: 1px solid #BFC15E;
  font-weight: 600;
  z-index: -1;
}



.glow-blur-left-ww-all {
  position: absolute;
  inset: -20px;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  filter: blur(45px) saturate(50%);
  opacity: 0.9;
  z-index: -10;
}

.glow-wrap {
  position: relative;
  display: inline-block;
}

.glow-wrap img {
  display: block;
}

.glow-wrap .blur {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: blur(70px) saturate(130%) brightness(70%);
  transform: scale(1.2); /* чтобы свечение выходило за края */
  z-index: -1;
  opacity: 0.9;
}






/* --- АДАПТИВ --- */

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



/* Адаптация под мобильные */
@media (max-width: 768px) {


.titlecat {
 max-width: 100%;
 font-size: 1.8em;
}

  .left-ww {
  display: none;
  }


  .right-ww {
    flex: 100%;
  }

  .glow-blur-left-ww,
  .glow-blur-right-ww {
  display: none;
  }

  .vertical-grid {
    grid-template-columns: 1fr;
  }



  .vertical-title {
    font-size: 16px;
  }


.seti-badges {
  display: none;
}

.seti-title {
  font-size: 12px;
}

.seti-rate {
  font-size: 12px;
}


}