:root{
  --bg:#090d17;
  --bg-soft:#0f1728;
  --panel:#121a2d;
  --panel-2:#182238;
  --line:rgba(255,255,255,.08);
  --text:#e8eefc;
  --muted:#a8b2c8;
  --muted-2:#7a869e;
  --accent:#f59e0b;
  --accent-2:#ffcf5b;
  --good:#22c55e;
  --shadow:0 18px 60px rgba(0,0,0,.35);
  --radius:24px;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  background:
    radial-gradient(circle at top left, rgba(245,158,11,.14), transparent 24%),
    radial-gradient(circle at top right, rgba(59,130,246,.12), transparent 24%),
    linear-gradient(180deg,#060912 0%, #0a1020 42%, #070b14 100%);
  color:var(--text);
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Hiragino Sans GB","Microsoft YaHei",sans-serif;
  line-height:1.6;
  min-height:100vh;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.container{width:min(1280px, calc(100% - 32px)); margin:0 auto}
.site-header{
  position:sticky;top:0;z-index:50;
  backdrop-filter:blur(16px);
  background:rgba(7,11,20,.82);
  border-bottom:1px solid var(--line);
}
.header-inner{
  display:flex;align-items:center;justify-content:space-between;gap:20px;
  padding:16px 0;
}
.brand{
  display:flex;align-items:center;gap:14px;font-weight:800;letter-spacing:.5px
}
.brand-mark{
  width:44px;height:44px;border-radius:14px;
  background:linear-gradient(135deg,var(--accent),#fb7185);
  box-shadow:0 10px 30px rgba(245,158,11,.35);
  position:relative;overflow:hidden;
}
.brand-mark:before,.brand-mark:after{
  content:"";position:absolute;border-radius:999px;background:rgba(255,255,255,.75)
}
.brand-mark:before{width:18px;height:18px;left:10px;top:12px}
.brand-mark:after{width:10px;height:10px;right:11px;bottom:12px}
.brand-title{display:flex;flex-direction:column;gap:2px}
.brand-title strong{font-size:1.05rem}
.brand-title span{font-size:.78rem;color:var(--muted)}
.nav{
  display:flex;flex-wrap:wrap;gap:8px;align-items:center;
}
.nav-link{
  padding:10px 14px;border-radius:999px;
  color:var(--muted);
  border:1px solid transparent;
  transition:.2s ease;
  font-size:.94rem;
}
.nav-link:hover,.nav-link.active{
  color:#fff;
  background:rgba(245,158,11,.12);
  border-color:rgba(245,158,11,.25);
}
.header-actions{display:flex;align-items:center;gap:10px}
.search-box{
  display:flex;align-items:center;gap:10px;
  background:rgba(255,255,255,.04);
  border:1px solid var(--line);
  border-radius:999px;
  padding:10px 14px;
  min-width:min(34vw, 420px);
}
.search-box input{
  background:transparent;border:none;outline:none;color:#fff;width:100%;
}
.search-box input::placeholder{color:var(--muted-2)}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  border:none;border-radius:999px;padding:12px 18px;
  font-weight:700;cursor:pointer;transition:.2s ease;
}
.btn-primary{
  background:linear-gradient(135deg,var(--accent),#fb7185);
  color:#fff;box-shadow:0 16px 35px rgba(245,158,11,.25)
}
.btn-primary:hover{transform:translateY(-1px);filter:brightness(1.02)}
.btn-ghost{
  background:rgba(255,255,255,.05);border:1px solid var(--line);color:#fff
}
.btn-ghost:hover{background:rgba(255,255,255,.08)}
.mobile-toggle{
  display:none;background:rgba(255,255,255,.06);border:1px solid var(--line);color:#fff;
  width:42px;height:42px;border-radius:12px;
}
.hero{
  padding:34px 0 18px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:24px;
  align-items:stretch;
}
.hero-panel{
  background:linear-gradient(180deg, rgba(18,26,45,.95), rgba(11,17,31,.88));
  border:1px solid var(--line);
  border-radius:32px;
  box-shadow:var(--shadow);
  overflow:hidden;
  position:relative;
}
.hero-main{
  padding:34px;
  min-height:540px;
  display:flex;flex-direction:column;justify-content:space-between;
  background:
    radial-gradient(circle at 20% 20%, rgba(245,158,11,.16), transparent 22%),
    radial-gradient(circle at 80% 0%, rgba(59,130,246,.18), transparent 18%),
    linear-gradient(180deg, rgba(20,28,48,.88), rgba(10,15,27,.94));
}
.kicker{
  display:inline-flex;align-items:center;gap:8px;
  color:var(--accent-2);background:rgba(245,158,11,.08);
  border:1px solid rgba(245,158,11,.2);
  padding:8px 12px;border-radius:999px;font-size:.9rem;font-weight:700;
}
.hero-title{
  font-size:clamp(2.4rem, 5vw, 4.7rem);
  line-height:1.02;
  margin:16px 0 12px;
  letter-spacing:-.02em;
}
.hero-lead{
  color:var(--muted);
  font-size:1.05rem;
  max-width:60ch;
}
.hero-actions{
  display:flex;flex-wrap:wrap;gap:12px;margin-top:22px
}
.hero-stats{
  display:grid;grid-template-columns:repeat(4,1fr);gap:12px;margin-top:26px
}
.stat{
  background:rgba(255,255,255,.04);
  border:1px solid var(--line);
  border-radius:18px;
  padding:16px;
}
.stat strong{display:block;font-size:1.25rem}
.stat span{color:var(--muted);font-size:.88rem}
.hero-spotlight{
  padding:24px;
  display:flex;
  flex-direction:column;
  gap:16px;
}
.carousel{
  position:relative;
  overflow:hidden;
  border-radius:24px;
  border:1px solid var(--line);
  background:var(--panel);
  min-height:0;
}
.carousel-track{
  display:flex;
  transition:transform .55s cubic-bezier(.4,0,.2,1);
}
.carousel-slide{
  min-width:100%;
  display:grid;
  grid-template-columns: 135px 1fr;
  gap:16px;
  padding:16px;
  align-items:center;
}
.carousel-cover{
  aspect-ratio: 3/4;
  border-radius:18px;
  overflow:hidden;
  box-shadow:var(--shadow);
  border:1px solid rgba(255,255,255,.08);
}
.carousel-cover img{
  width:100%;height:100%;object-fit:cover;
}
.carousel-meta small{color:var(--accent-2);font-weight:700}
.carousel-meta h3{margin:.35rem 0 .45rem;font-size:1.22rem;line-height:1.25}
.carousel-meta p{margin:0;color:var(--muted);font-size:.94rem}
.carousel-controls{
  display:flex;align-items:center;justify-content:space-between;gap:12px
}
.dots{display:flex;gap:8px;flex-wrap:wrap}
.dot{
  width:10px;height:10px;border-radius:999px;border:none;background:rgba(255,255,255,.18);cursor:pointer
}
.dot.active{background:var(--accent)}
.section{padding:18px 0 30px}
.section-head{
  display:flex;align-items:end;justify-content:space-between;gap:20px;margin-bottom:16px
}
.section-head h2{
  margin:0;font-size:1.8rem
}
.section-head p{margin:0;color:var(--muted)}
.grid{
  display:grid;gap:16px
}
.grid.cards{
  grid-template-columns:repeat(6, minmax(0,1fr))
}
.card{
  background:linear-gradient(180deg, rgba(24,34,56,.95), rgba(14,21,36,.95));
  border:1px solid var(--line);
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 12px 34px rgba(0,0,0,.20);
  transition:transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.card:hover{transform:translateY(-4px);border-color:rgba(245,158,11,.25);box-shadow:0 20px 48px rgba(0,0,0,.32)}
.poster{
  position:relative;
  aspect-ratio: 3/4;
  background:#0a0f18;
}
.poster img{width:100%;height:100%;object-fit:cover}
.badge{
  position:absolute;left:12px;top:12px;
  padding:6px 10px;border-radius:999px;
  background:rgba(7,11,20,.72);border:1px solid rgba(255,255,255,.10);
  color:#fff;font-size:.78rem;font-weight:700;backdrop-filter:blur(8px);
}
.card-body{padding:14px}
.card-title{
  margin:0 0 6px;font-size:1rem;line-height:1.35;
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
}
.card-meta{display:flex;flex-wrap:wrap;gap:6px;color:var(--muted);font-size:.8rem}
.pill{
  display:inline-flex;align-items:center;gap:6px;
  padding:5px 10px;border-radius:999px;background:rgba(255,255,255,.05);border:1px solid var(--line)
}
.card-desc{
  color:var(--muted);font-size:.86rem;margin:10px 0 0;
  display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden;
}
.filter-bar{
  display:flex;flex-wrap:wrap;gap:12px;align-items:center;
  margin:16px 0 20px;
}
.filter-bar .search-box{min-width:min(100%, 480px)}
.toolbar{
  display:flex;flex-wrap:wrap;gap:10px;align-items:center
}
.select{
  background:rgba(255,255,255,.05);border:1px solid var(--line);color:#fff;
  border-radius:999px;padding:11px 14px;outline:none;
}
.breadcrumbs{
  display:flex;gap:8px;flex-wrap:wrap;color:var(--muted);font-size:.92rem;margin-bottom:14px
}
.breadcrumbs a{color:var(--muted)}
.breadcrumbs a:hover{color:#fff}
.detail-hero{
  display:grid;grid-template-columns:340px 1fr;gap:24px;align-items:start;
}
.detail-cover{
  background:linear-gradient(180deg, rgba(24,34,56,.96), rgba(14,21,36,.96));
  border:1px solid var(--line);
  border-radius:30px;overflow:hidden;box-shadow:var(--shadow)
}
.detail-cover img{width:100%;height:auto;aspect-ratio: 3/4;object-fit:cover}
.detail-panel{
  background:linear-gradient(180deg, rgba(18,26,45,.95), rgba(11,17,31,.95));
  border:1px solid var(--line);
  border-radius:30px;
  padding:28px;
  box-shadow:var(--shadow)
}
.detail-title{margin:0;font-size:clamp(2rem,4vw,3.2rem);line-height:1.06}
.detail-sub{color:var(--muted);margin:12px 0 18px}
.meta-row{
  display:flex;flex-wrap:wrap;gap:10px;margin:16px 0 0
}
.meta-row .pill{font-size:.86rem}
.video-shell{
  margin-top:20px;
  border-radius:24px;
  overflow:hidden;
  background:#000;
  border:1px solid rgba(255,255,255,.08);
}
video{width:100%;display:block;background:#000;aspect-ratio:16/9}
.section-card{
  background:linear-gradient(180deg, rgba(18,26,45,.95), rgba(11,17,31,.95));
  border:1px solid var(--line);
  border-radius:28px;
  padding:24px;
  box-shadow:var(--shadow)
}
.text-muted{color:var(--muted)}
.related-grid{
  display:grid;grid-template-columns:repeat(6,minmax(0,1fr));gap:14px
}
.footer{
  margin-top:28px;
  padding:28px 0 38px;
  border-top:1px solid var(--line);
  color:var(--muted)
}
.pagination{
  display:flex;flex-wrap:wrap;gap:8px;justify-content:center;margin-top:18px
}
.page-link{
  min-width:42px;height:42px;display:inline-flex;align-items:center;justify-content:center;
  padding:0 12px;border-radius:999px;background:rgba(255,255,255,.05);border:1px solid var(--line);
}
.page-link.active,.page-link:hover{background:rgba(245,158,11,.15);border-color:rgba(245,158,11,.25);color:#fff}
.hidden{display:none!important}
@media (max-width: 1180px){
  .grid.cards,.related-grid{grid-template-columns:repeat(4,minmax(0,1fr))}
  .hero-grid,.detail-hero{grid-template-columns:1fr}
  .hero-main{min-height:auto}
}
@media (max-width: 820px){
  .container{width:min(100% - 20px, 1280px)}
  .header-inner{flex-wrap:wrap}
  .nav{display:none;width:100%}
  .nav.open{display:flex}
  .search-box{min-width:0;width:100%}
  .header-actions{width:100%;justify-content:space-between}
  .mobile-toggle{display:inline-flex;align-items:center;justify-content:center}
  .hero-main{padding:22px}
  .hero-stats{grid-template-columns:repeat(2,minmax(0,1fr))}
  .grid.cards,.related-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .carousel-slide{grid-template-columns:1fr}
  .detail-panel{padding:20px}
}
