.sl-landing{
  --sl-surface:#ffffff;
  --sl-surface-2:#f8f8f8;
  --sl-text:#222222;
  --sl-muted:#666666;
  --sl-line:#e7e7e7;
  --sl-accent:#7cc242;
  --sl-accent-dark:#5ea12d;
  --sl-shadow:0 12px 30px rgba(0,0,0,.08);
  --sl-shadow-2:0 20px 46px rgba(0,0,0,.16);
  --sl-radius:20px;
  --sl-radius-sm:14px;
  color:var(--sl-text);
  margin:0 0 24px;
}

.sl-landing,
.sl-landing *{
  box-sizing:border-box;
}

.sl-landing a{
  text-decoration:none;
  transition:.22s ease;
}

.sl-section{
  position:relative;
  margin:0 0 18px;
  background:var(--sl-surface);
  border:1px solid var(--sl-line);
  border-radius:var(--sl-radius);
  box-shadow:var(--sl-shadow);
  overflow:hidden;
}

.sl-section__top{
  padding:24px 26px 0;
}

.sl-section__top h2{
  margin:0;
  font-size:32px;
  line-height:1.16;
  font-weight:900;
  color:#2a2a2a;
}

.sl-section__top p{
  margin:10px 0 0;
  max-width:920px;
  color:var(--sl-muted);
  font-size:15px;
  line-height:1.75;
}

.sl-eyebrow{
  display:inline-flex;
  align-items:center;
  min-height:31px;
  margin:0 0 12px;
  padding:0 12px;
  border-radius:999px;
  background:#f2f9eb;
  border:1px solid #d9ebca;
  color:#5f9135;
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.5px;
}

.sl-hero{
  position:relative;
  overflow:hidden;
  margin:0 0 18px;
  border-radius:24px;
  background:
    linear-gradient(135deg, rgba(16,16,16,.96), rgba(27,27,27,.9)),
    #1d1d1d;
  border:1px solid #2b2b2b;
  box-shadow:var(--sl-shadow-2);
}

.sl-hero__bg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 14% 18%, rgba(124,194,66,.24), transparent 24%),
    radial-gradient(circle at 84% 16%, rgba(124,194,66,.12), transparent 18%),
    radial-gradient(circle at 70% 82%, rgba(255,255,255,.05), transparent 18%);
  pointer-events:none;
}

.sl-hero__inner{
  position:relative;
  z-index:2;
  padding:38px 32px 30px;
}

.sl-hero__badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:0 0 18px;
}

.sl-hero__badges span{
  display:inline-flex;
  align-items:center;
  min-height:35px;
  padding:0 14px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.11);
  color:#eff8e7;
  font-size:13px;
  font-weight:700;
  backdrop-filter:blur(8px);
}

.sl-hero h1{
  margin:0;
  max-width:980px;
  color:#fff;
  font-size:46px;
  line-height:1.06;
  font-weight:900;
  letter-spacing:-.5px;
}

.sl-hero__lead{
  max-width:960px;
  margin:18px 0 0;
}

.sl-hero__lead p{
  margin:0;
  color:rgba(255,255,255,.88);
  font-size:16px;
  line-height:1.85;
}

.sl-hero__actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin:26px 0 0;
}

.sl-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:49px;
  padding:0 20px;
  border-radius:14px;
  font-size:14px;
  font-weight:800;
  letter-spacing:.2px;
}

.sl-btn--primary{
  background:linear-gradient(180deg,#88cf51,#6db538);
  color:#fff;
  box-shadow:0 14px 28px rgba(124,194,66,.24);
}

.sl-btn--primary:hover{
  color:#fff;
  transform:translateY(-1px);
  background:linear-gradient(180deg,#8fd757,#629f31);
}

.sl-btn--ghost{
  color:#fff;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  backdrop-filter:blur(8px);
}

.sl-btn--ghost:hover{
  color:#fff;
  background:rgba(255,255,255,.14);
}

.sl-hero__quicklinks{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:22px 0 0;
}

.sl-hero__quicklinks a{
  display:inline-flex;
  align-items:center;
  min-height:38px;
  padding:0 14px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.1);
  color:#fff;
  font-size:13px;
  font-weight:700;
}

.sl-hero__quicklinks a:hover{
  background:rgba(124,194,66,.18);
  border-color:rgba(124,194,66,.28);
}

.sl-cats{
  display:grid;
  gap:16px;
  padding:22px 26px 26px;
}

.sl-cats--grid2{
  grid-template-columns:repeat(2, minmax(0, 1fr));
}

.sl-cat{
  position:relative;
  min-height:250px;
  padding:22px;
  border-radius:20px;
  overflow:hidden;
  color:#fff;
  box-shadow:var(--sl-shadow);
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  isolation:isolate;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
}

.sl-cat:before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,0) 30%),
    linear-gradient(180deg, rgba(10,10,10,.10), rgba(10,10,10,.72));
  z-index:0;
}

.sl-cat:hover{
  transform:translateY(-2px);
}

.sl-cat__label,
.sl-cat h3,
.sl-cat p,
.sl-cat b{
  position:relative;
  z-index:2;
}

.sl-cat__label{
  display:inline-flex;
  align-items:center;
  align-self:flex-start;
  min-height:30px;
  margin-bottom:auto;
  padding:0 12px;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.16);
  color:#fff;
  font-size:12px;
  font-weight:800;
}

.sl-cat h3{
  margin:18px 0 10px;
  font-size:31px;
  line-height:1.05;
  font-weight:900;
  color:#fff;
  text-shadow:0 2px 12px rgba(0,0,0,.24);
}

.sl-cat p{
  margin:0 0 18px;
  max-width:540px;
  color:rgba(255,255,255,.94);
  font-size:14px;
  line-height:1.75;
}

.sl-cat b{
  color:#fff;
  font-size:14px;
  font-weight:900;
}

.sl-cat--serials{
  background-image:
    linear-gradient(135deg, rgba(44,44,44,.68), rgba(82,82,82,.62)),
    url("../images/posad/serials.webp");
}

.sl-cat--films{
  background-image:
    linear-gradient(135deg, rgba(44,44,44,.68), rgba(82,82,82,.62)),
    url("../images/posad/films.webp");
}

.sl-cat--anime{
  background-image:
    linear-gradient(135deg, rgba(18,109,99,.72), rgba(24,151,140,.68)),
    url("../images/posad/anime.webp");
}

.sl-cat--doramy{
  background-image:
    linear-gradient(135deg, rgba(130,73,40,.72), rgba(202,119,70,.66)),
    url("../images/posad/doramy.webp");
}

.sl-cat--multi{
  background-image:
    linear-gradient(135deg, rgba(71,82,177,.70), rgba(103,72,194,.66)),
    url("../images/posad/mult.webp");
}

.sl-cat--top{
  background-image:
    linear-gradient(135deg, rgba(87,125,28,.72), rgba(145,184,62,.66)),
    url("../images/posad/top.webp");
}

.sl-discover{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:14px;
  padding:22px 26px 18px;
}

.sl-discover__item{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  padding:18px;
  border-radius:16px;
  border:1px solid var(--sl-line);
  background:#fff;
}

.sl-discover__item:hover{
  transform:translateY(-1px);
  border-color:#d6e8c7;
  box-shadow:var(--sl-shadow);
}

.sl-discover__item strong{
  display:block;
  margin:0 0 6px;
  color:#2b2b2b;
  font-size:18px;
  line-height:1.35;
}

.sl-discover__item span{
  display:block;
  color:var(--sl-muted);
  font-size:14px;
  line-height:1.7;
}

.sl-discover__item b{
  flex:0 0 auto;
  color:var(--sl-accent-dark);
  font-size:22px;
  line-height:1;
  margin-top:2px;
}

.sl-tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  padding:0 26px 26px;
}

.sl-tags a{
  display:inline-flex;
  align-items:center;
  min-height:38px;
  padding:0 14px;
  border-radius:999px;
  background:#f3f9ed;
  border:1px solid #ddeccc;
  color:#4f7f2b;
  font-size:13px;
  font-weight:700;
}

.sl-tags a:hover{
  background:#edf7e4;
}

.sl-guide{
  padding:22px 26px 26px;
}

.sl-guide__grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:14px;
  margin:0 0 18px;
}

.sl-guide__card{
  padding:18px;
  border-radius:16px;
  border:1px solid var(--sl-line);
  background:linear-gradient(180deg,#fff,#fafafa);
}

.sl-guide__card h3{
  margin:0 0 8px;
  color:#2a2a2a;
  font-size:19px;
  line-height:1.35;
}

.sl-guide__card p{
  margin:0;
  color:var(--sl-muted);
  font-size:14px;
  line-height:1.75;
}

.sl-text{
  padding:0;
}

.sl-text p{
  margin:0 0 14px;
  color:#545454;
  font-size:15px;
  line-height:1.86;
}

.sl-faq{
  padding:22px 26px 26px;
}

.sl-faq__item + .sl-faq__item{
  margin-top:12px;
}

.sl-faq__item{
  overflow:hidden;
  border-radius:16px;
  border:1px solid var(--sl-line);
  background:#fff;
}

.sl-faq__q{
  padding:16px 18px;
  background:linear-gradient(180deg,#fafafa,#f7f7f7);
  color:#2d2d2d;
  font-size:17px;
  font-weight:800;
  line-height:1.5;
}

.sl-faq__a{
  padding:14px 18px 18px;
  color:#5c5c5c;
  font-size:15px;
  line-height:1.8;
}

@media (max-width:1100px){
  .sl-hero h1{
    font-size:40px;
  }
}

@media (max-width:780px){
  .sl-hero__inner{
    padding:24px 18px 22px;
  }

  .sl-section__top{
    padding:18px 18px 0;
  }

  .sl-section__top h2{
    font-size:26px;
  }

  .sl-hero h1{
    font-size:31px;
  }

  .sl-cats--grid2,
  .sl-discover,
  .sl-guide__grid{
    grid-template-columns:1fr;
  }

  .sl-cats,
  .sl-discover,
  .sl-guide,
  .sl-faq{
    padding-left:18px;
    padding-right:18px;
  }

  .sl-tags{
    padding:0 18px 18px;
  }

  .sl-cat h3{
    font-size:28px;
  }
}

@media (max-width:520px){
  .sl-hero h1{
    font-size:26px;
  }

  .sl-hero__actions{
    flex-direction:column;
  }

  .sl-btn{
    width:100%;
  }
}

/* ОБЩИЕ СТИЛИ */
.sl-hub-container { background-color: #EDEDED; padding: 20px; font-family: 'Inter', sans-serif; max-width: 1240px; margin: 0 auto; box-sizing: border-box; }
.sl-main-header.sl-video-bg { position: relative; overflow: hidden; background: #111; border-radius: 12px; min-height: 400px; display: flex; align-items: center; justify-content: center; margin-bottom: 25px; border: 1px solid #333; }
.sl-bg-video { position: absolute; top: 50%; left: 50%; min-width: 100%; min-height: 100%; z-index: 1; transform: translate(-50%, -50%); object-fit: cover; }
.sl-video-overlay { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.65); z-index: 2; transition: opacity 0.8s ease; }
.sl-header-inner-content { position: relative; z-index: 3; padding: 40px; color: #fff; text-align: center; transition: opacity 0.8s ease, visibility 0.8s ease; }
.sl-hide-content { opacity: 0 !important; visibility: hidden !important; pointer-events: none !important; }
.sl-header-inner-content h1 { font-size: 36px; margin: 20px 0; color: #fff !important; text-shadow: 0 2px 10px rgba(0,0,0,0.7); }
.sl-green { color: #4caf50; }
.sl-seo-description { font-size: 16px; color: #f0f0f0 !important; max-width: 850px; margin: 0 auto; line-height: 1.7; }
.sl-update-badge { background: rgba(255, 255, 255, 0.1); color: #fff; padding: 6px 16px; border-radius: 20px; font-size: 12px; border: 1px solid rgba(255, 255, 255, 0.2); backdrop-filter: blur(5px); }

.sl-video-mute-btn { all: unset !important; position: absolute !important; top: 20px !important; right: 20px !important; z-index: 10 !important; background: rgba(0, 0, 0, 0.6) !important; border: 1px solid rgba(255, 255, 255, 0.4) !important; border-radius: 50% !important; width: 40px !important; height: 40px !important; cursor: pointer !important; display: flex !important; align-items: center !important; justify-content: center !important; transition: 0.3s !important; }
.sl-video-mute-btn:hover { background: rgba(76, 175, 80, 0.9) !important; border-color: #4caf50 !important; }
.sl-video-mute-btn svg { width: 22px !important; height: 22px !important; fill: #ffffff !important; }

.sl-video-fs-btn { all: unset !important; position: absolute !important; bottom: 20px !important; right: 20px !important; z-index: 10 !important; background: rgba(0, 0, 0, 0.6) !important; border: 1px solid rgba(255, 255, 255, 0.4) !important; border-radius: 8px !important; padding: 8px !important; cursor: pointer !important; display: none !important; opacity: 0; transition: opacity 0.5s ease, background 0.3s !important; }
.sl-video-fs-btn.is-visible { display: flex !important; opacity: 1; }
.sl-video-fs-btn:hover { background: rgba(76, 175, 80, 0.9) !important; }

.sl-section-box { background: #fff; border-radius: 12px; padding: 30px; margin-bottom: 25px; border: 1px solid #ddd; }
.sl-title { font-size: 24px; font-weight: 700; color: #111; border-left: 5px solid #4caf50; padding-left: 15px; margin-bottom: 15px; }
.sl-section-desc { color: #777; font-size: 14px; margin-bottom: 25px; }

/* СЕТКА (БЕЗ ПРИНУДИТЕЛЬНЫХ СТИЛЕЙ ДЛЯ КАРТИНОК) */
.sl-centered-grid { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
.sl-centered-grid > * { flex: 0 0 200px !important; width: 200px !important; margin: 0 !important; }

.sl-category-hub { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 25px; }
.sl-row-list { display: flex; flex-direction: column; gap: 15px; }
.sl-row-item-wrapper { display: flex !important; gap: 15px; align-items: flex-start; background: #fdfdfd; border-radius: 8px; border: 1px solid #f0f0f0; padding: 10px !important; transition: 0.3s; width: 100% !important; box-sizing: border-box; }
.sl-row-item-wrapper:hover { border-color: #4caf50; background: #fff; box-shadow: 0 4px 10px rgba(0,0,0,0.05); }
.sl-row-poster { flex-shrink: 0; width: 85px; height: 125px; }
.sl-row-list-info { flex-grow: 1; display: flex; flex-direction: column; gap: 5px; text-align: left; }
.sl-row-list-info h4 { font-size: 16px; font-weight: 700; margin: 0; }
.sl-row-list-info h4 a { color: #111; text-decoration: none; }
.sl-row-text { font-size: 13px; color: #555; line-height: 1.4; margin: 0; }

.sl-faq-item { background: #f9f9f9; border: 1px solid #eee; border-radius: 6px; margin-bottom: 10px; }
.sl-faq-item summary { padding: 15px; cursor: pointer; font-weight: 600; font-size: 15px; list-style: none; position: relative; }
.sl-faq-item summary:after { content: '+'; position: absolute; right: 20px; color: #4caf50; font-size: 20px; }
.sl-faq-item[open] summary:after { content: '-'; }
.sl-faq-content { padding: 0 15px 15px; font-size: 14px; color: #666; border-top: 1px solid #eee; padding-top: 10px; }
.sl-seo-footer-text h2 { font-size: 24px; margin-bottom: 15px; }
.sl-seo-footer-text p { margin-bottom: 12px; font-size: 15px; color: #555; line-height: 1.7; }

/* АДАПТИВ */
@media (max-width: 1000px) { 
    .sl-category-hub { grid-template-columns: 1fr; } 
    .sl-header-inner-content h1 { font-size: 28px; } 
}

@media (max-width: 768px) {
    .sl-hub-container { padding: 10px; }
    .sl-main-header.sl-video-bg { min-height: 450px; max-height: 550px; border-radius: 8px; margin-bottom: 15px; }
    .sl-header-inner-content { padding: 20px 15px; display: flex; flex-direction: column; justify-content: center; height: 100%; }
    .sl-header-inner-content h1 { font-size: 22px !important; line-height: 1.3; margin: 15px 0; }
    .sl-seo-description { font-size: 14px !important; line-height: 1.5; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical; }
    .sl-video-mute-btn { width: 34px !important; height: 34px !important; top: 10px !important; right: 10px !important; }
    .sl-video-fs-btn { bottom: 10px !important; right: 10px !important; padding: 6px !important; }
    .sl-section-box { padding: 20px 15px; }
    .sl-title { font-size: 20px; }
    .sl-centered-grid { gap: 10px; }
    .sl-centered-grid > * { flex: 0 0 47% !important; width: 47% !important; }
}