/* 糖心vlog - 本次随机生成主色：电影海湾青绿 #14C7A7 */
:root{
  --primary:#14C7A7;
  --primary-strong:#0EA98F;
  --primary-soft:rgba(20,199,167,.14);
  --bg:#0B111B;
  --bg-elevated:#101826;
  --surface:#141E2C;
  --surface-soft:#182335;
  --text:#F5F8FC;
  --text-strong:#FFFFFF;
  --muted:#AEB9C8;
  --muted-2:#7D8A9B;
  --line:rgba(255,255,255,.1);
  --shadow:0 24px 60px rgba(0,0,0,.34);
  --radius:18px;
  --radius-sm:12px;
  --max:1180px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  overflow-x:hidden;
  background:
    radial-gradient(circle at 20% -10%, rgba(20,199,167,.16), transparent 34rem),
    radial-gradient(circle at 85% 12%, rgba(255,211,105,.08), transparent 26rem),
    var(--bg);
  color:var(--text);
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","Microsoft YaHei","PingFang SC","Hiragino Sans GB",Arial,sans-serif;
  line-height:1.72;
  letter-spacing:.01em;
}

a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
p{color:var(--muted);margin:0 0 1rem}
h1,h2,h3{color:var(--text-strong);line-height:1.18;margin:0 0 1rem}
h1{font-size:clamp(2rem,7vw,4.7rem);letter-spacing:-.05em}
h2{font-size:clamp(1.6rem,4vw,2.8rem);letter-spacing:-.035em}
h3{font-size:1.08rem}
.container{width:min(100% - 32px,var(--max));margin-inline:auto}
.section{padding:64px 0}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:.45rem;
  color:var(--primary);
  font-size:.76rem;
  letter-spacing:.18em;
  text-transform:uppercase;
  font-weight:800;
  margin-bottom:1rem;
}
.eyebrow::before{
  content:"";
  width:28px;
  height:2px;
  border-radius:999px;
  background:var(--primary);
}

/* header / mobile header / desktop header / logo / menu button / nav */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  border-bottom:1px solid var(--line);
  background:rgba(11,17,27,.86);
  backdrop-filter:blur(18px);
}
.mobile-header{
  height:62px;
  padding:0 14px;
  display:grid;
  grid-template-columns:48px 1fr auto;
  align-items:center;
  gap:10px;
}
.logo img{
  object-fit:contain;
  height:36px;
}
.mobile-logo{
  justify-self:center;
  max-width:132px;
}
.mobile-logo img{height:32px}
.menu-button{
  width:44px;
  height:44px;
  display:grid;
  place-items:center;
  border:1px solid var(--line);
  border-radius:14px;
  background:rgba(255,255,255,.04);
  cursor:pointer;
  touch-action:manipulation;
}
.menu-button span{
  display:block;
  width:20px;
  height:2px;
  margin:2px 0;
  border-radius:999px;
  background:var(--text-strong);
}
.top-action{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:0 18px;
  border-radius:999px;
  background:var(--primary);
  color:#071116;
  font-weight:900;
  box-shadow:0 12px 28px rgba(20,199,167,.25);
  white-space:nowrap;
  transition:filter .2s ease, transform .2s ease;
}
.top-action:hover,.main-button:hover{filter:brightness(.85);transform:translateY(-1px)}
.mobile-action{
  min-height:38px;
  padding:0 14px;
  font-size:.92rem;
}
.nav-toggle{position:absolute;opacity:0;pointer-events:none}
.mobile-drawer{
  position:fixed;
  inset:0 auto 0 0;
  width:min(84vw,340px);
  transform:translateX(-104%);
  transition:transform .24s ease;
  background:linear-gradient(180deg,#0D1420,#101827);
  border-right:1px solid var(--line);
  padding:18px;
  z-index:80;
  display:flex;
  flex-direction:column;
  gap:6px;
  box-shadow:var(--shadow);
}
.mobile-drawer a{
  padding:13px 14px;
  border-radius:14px;
  color:var(--text);
  font-weight:700;
}
.mobile-drawer a.active,.mobile-drawer a:hover{
  background:var(--primary-soft);
  color:var(--primary);
}
.drawer-brand{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:8px;
  background:rgba(255,255,255,.04);
}
.drawer-brand img{height:30px;width:auto}
.drawer-brand span{font-size:.82rem;color:var(--muted)}
.drawer-close{
  position:absolute;
  top:12px;
  right:12px;
  width:36px;
  height:36px;
  border:1px solid var(--line);
  border-radius:12px;
  display:grid;
  place-items:center;
  color:var(--text);
  cursor:pointer;
  font-size:1.6rem;
}
.drawer-mask{
  position:fixed;
  inset:0;
  z-index:70;
  background:rgba(0,0,0,.5);
  opacity:0;
  pointer-events:none;
  transition:opacity .2s ease;
}
.nav-toggle:checked ~ .mobile-drawer{transform:translateX(0)}
.nav-toggle:checked ~ .drawer-mask{opacity:1;pointer-events:auto}
.desktop-header{display:none}

/* search icon */
.search-link{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border:1px solid var(--line);
  border-radius:50%;
}
.search-icon{
  position:relative;
  width:17px;
  height:17px;
  border:2px solid var(--text);
  border-radius:50%;
  display:inline-block;
}
.search-icon::after{
  content:"";
  position:absolute;
  width:8px;
  height:2px;
  right:-7px;
  bottom:-4px;
  transform:rotate(45deg);
  border-radius:999px;
  background:var(--text);
}

/* movie hero / banner section / main button */
.movie-hero,.page-hero{
  position:relative;
  min-height:calc(88vh - 62px);
  overflow:hidden;
  display:flex;
  align-items:center;
  border-bottom:1px solid var(--line);
}
.page-hero{
  min-height:390px;
  background:
    linear-gradient(135deg, rgba(20,199,167,.18), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,0));
}
.hero-bg{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  transform:scale(1.02);
}
.banner-section::after{
  content:"";
  position:absolute;
  inset:auto 0 0;
  height:42%;
  background:linear-gradient(0deg,var(--bg),transparent);
}
.hero-content{
  position:relative;
  z-index:1;
  padding:72px 0;
  max-width:860px;
  margin-left:16px;
}
.hero-content p,.page-hero p{
  max-width:720px;
  font-size:1.04rem;
}
.main-button{
  display:inline-flex;
  min-height:48px;
  align-items:center;
  justify-content:center;
  padding:0 24px;
  border-radius:999px;
  background:var(--primary);
  color:#071116;
  font-weight:900;
  box-shadow:0 16px 38px rgba(20,199,167,.26);
  transition:filter .2s ease, transform .2s ease;
}
.hero-button{margin-top:1rem}

/* category grid / movie card */
.section-heading{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  max-width:760px;
  margin-bottom:28px;
}
.category-grid,.service-grid,.info-grid,.notice-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
}
.movie-card,.service-card,.info-card,.notice-card,.aside-card{
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
  box-shadow:0 10px 30px rgba(0,0,0,.18);
}
.movie-card{
  padding:22px;
  min-height:206px;
  display:flex;
  flex-direction:column;
}
.movie-card a,.text-link{
  margin-top:auto;
  color:var(--primary);
  font-weight:900;
}
.badge{
  align-self:flex-start;
  padding:5px 10px;
  margin-bottom:16px;
  border-radius:999px;
  color:var(--primary);
  background:var(--primary-soft);
  font-size:.76rem;
  font-weight:900;
}

/* service card */
.service-section{
  background:linear-gradient(180deg,rgba(255,255,255,.035),rgba(255,255,255,0));
  border-block:1px solid var(--line);
}
.service-card,.info-card,.notice-card{
  padding:22px;
}
.service-card span,.info-card span{
  display:inline-grid;
  place-items:center;
  min-width:38px;
  height:30px;
  padding:0 10px;
  border-radius:999px;
  background:var(--primary);
  color:#071116;
  font-weight:900;
  margin-bottom:14px;
}

/* split showcase / images */
.split-showcase{
  display:grid;
  gap:28px;
  align-items:center;
}
.image-frame{
  border:1px solid var(--line);
  border-radius:24px;
  overflow:hidden;
  background:var(--surface);
  box-shadow:var(--shadow);
}
.image-frame img{width:100%;height:auto}
.inline-visual{
  margin-top:16px;
  border-radius:22px;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}
.mini-list{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}
.mini-list span{
  padding:9px 12px;
  border-radius:999px;
  background:var(--primary-soft);
  color:var(--text);
  border:1px solid rgba(20,199,167,.22);
  font-weight:700;
}

/* data chart panel */
.data-chart-panel{
  padding:24px;
  border-radius:24px;
  background:
    linear-gradient(135deg, rgba(20,199,167,.16), transparent 48%),
    var(--surface);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}
.compact-panel{margin-top:22px}
.chart-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:20px;
}
.chart-head span{font-weight:900;color:var(--text-strong)}
.chart-head strong{
  color:var(--primary);
  background:var(--primary-soft);
  border-radius:999px;
  padding:6px 10px;
  font-size:.8rem;
}
.bar-row{
  display:grid;
  grid-template-columns:90px 1fr 36px;
  gap:12px;
  align-items:center;
  margin:14px 0;
  color:var(--muted);
  font-size:.92rem;
}
.bar-row i{
  position:relative;
  height:10px;
  overflow:hidden;
  border-radius:999px;
  background:rgba(255,255,255,.1);
}
.bar-row i::before{
  content:"";
  position:absolute;
  inset:0 auto 0 0;
  width:var(--w);
  border-radius:999px;
  background:linear-gradient(90deg,var(--primary),#FFD36B);
}
.bar-row b{color:var(--text-strong)}
.score-card{
  margin-top:18px;
  padding:18px;
  border-radius:18px;
  background:rgba(255,255,255,.045);
  border:1px solid var(--line);
}
.score-card strong{color:#FFD36B;letter-spacing:.08em}

/* device showcase / security section / parental guidance section */
.device-showcase{
  border-block:1px solid var(--line);
  background:linear-gradient(180deg,rgba(20,199,167,.08),rgba(255,255,255,.02));
}
.devices img{object-fit:cover}
.security-section,.parental-guidance-section{
  padding:30px;
  border:1px solid var(--line);
  border-radius:24px;
  background:linear-gradient(180deg,rgba(255,255,255,.055),rgba(255,255,255,.025));
}
.parental-guidance-section{
  background:
    linear-gradient(135deg, rgba(20,199,167,.16), transparent 55%),
    rgba(255,255,255,.035);
}

/* page content */
.content-layout{
  display:grid;
  gap:24px;
}
.content-main{
  font-size:1.02rem;
}
.content-main p{
  margin-bottom:1.1rem;
}
.content-aside{
  align-self:start;
}
.aside-card{
  padding:24px;
  position:sticky;
  top:86px;
}
.operation-panel{
  margin-top:28px;
  border:1px solid var(--line);
  border-radius:24px;
  padding:24px;
  background:var(--surface);
}
.operation-panel ul{
  margin:0;
  padding-left:20px;
  color:var(--muted);
}
.operation-panel li{margin:8px 0}

/* FAQ item */
.faq-list{
  display:grid;
  gap:14px;
}
.faq-item{
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:linear-gradient(180deg,rgba(255,255,255,.055),rgba(255,255,255,.025));
  padding:0;
  overflow:hidden;
}
.faq-item summary{
  cursor:pointer;
  list-style:none;
  padding:18px 20px;
  font-weight:900;
  color:var(--text-strong);
}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item p{
  padding:0 20px 20px;
}
.faq-page .faq-item{background:var(--surface)}

/* footer */
.site-footer{
  border-top:1px solid var(--line);
  background:#0A0F18;
}
.footer-cta{
  background:
    linear-gradient(135deg, rgba(20,199,167,.92), rgba(20,199,167,.62)),
    linear-gradient(180deg,var(--surface),var(--surface));
  color:#071116;
}
.footer-cta h2,.footer-cta p,.footer-cta .eyebrow{color:#071116}
.footer-cta .eyebrow::before{background:#071116}
.footer-cta .main-button{
  background:#071116;
  color:var(--text-strong);
  box-shadow:none;
}
.footer-cta-inner{
  display:grid;
  gap:20px;
  padding:38px 0;
  align-items:center;
}
.footer-grid{
  display:grid;
  gap:26px;
  padding:48px 0;
}
.footer-logo img{height:36px;margin-bottom:14px}
.footer-grid h3{font-size:1rem}
.footer-grid a{
  display:block;
  color:var(--muted);
  margin:8px 0;
}
.footer-grid a:hover{color:var(--primary)}
.footer-bottom{
  display:flex;
  flex-direction:column;
  gap:8px;
  border-top:1px solid var(--line);
  color:var(--muted-2);
  font-size:.88rem;
  padding:18px max(16px,calc((100vw - var(--max))/2));
}

@media (min-width:640px){
  .category-grid{grid-template-columns:repeat(2,1fr)}
  .service-grid,.info-grid,.notice-grid{grid-template-columns:repeat(2,1fr)}
  .footer-cta-inner{grid-template-columns:1fr auto}
}

@media (min-width:900px){
  .mobile-header,.mobile-drawer,.drawer-mask{display:none}
  .desktop-header{
    height:76px;
    display:grid;
    grid-template-columns:auto 1fr auto auto;
    gap:22px;
    align-items:center;
    width:min(100% - 48px,var(--max));
    margin-inline:auto;
  }
  .desktop-logo img{height:40px}
  .desktop-nav{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:4px;
    min-width:0;
  }
  .desktop-nav a{
    position:relative;
    padding:24px 9px;
    color:var(--muted);
    font-size:.92rem;
    font-weight:800;
    white-space:nowrap;
  }
  .desktop-nav a::after{
    content:"";
    position:absolute;
    left:10px;
    right:10px;
    bottom:18px;
    height:2px;
    border-radius:999px;
    background:var(--primary);
    transform:scaleX(0);
    transition:transform .2s ease;
    transform-origin:center;
  }
  .desktop-nav a.active,
  .desktop-nav a:hover{color:var(--text-strong)}
  .desktop-nav a.active::after,
  .desktop-nav a:hover::after{transform:scaleX(1)}
  .movie-hero{min-height:720px}
  .hero-content{margin-left:auto}
  .category-grid{grid-template-columns:repeat(3,1fr)}
  .service-grid{grid-template-columns:repeat(3,1fr)}
  .info-grid,.notice-grid{grid-template-columns:repeat(3,1fr)}
  .split-showcase{grid-template-columns:1fr 1fr;gap:52px}
  .split-showcase.reverse .data-chart-panel{order:2}
  .content-layout{grid-template-columns:minmax(0,1fr) 330px}
  .footer-grid{grid-template-columns:1.4fr 1fr 1fr 1.2fr}
  .footer-bottom{flex-direction:row;justify-content:space-between}
}

@media (min-width:1100px){
  .desktop-nav a{padding-inline:12px;font-size:.95rem}
}

@media (max-width:420px){
  .container{width:min(100% - 24px,var(--max))}
  .section{padding:48px 0}
  .movie-hero{min-height:calc(82vh - 62px)}
  .hero-content{padding:52px 0;margin-left:auto}
  .movie-card,.service-card,.info-card,.notice-card{padding:18px}
  .bar-row{grid-template-columns:78px 1fr 30px;font-size:.84rem}
  .security-section,.parental-guidance-section{padding:22px}
}
