@charset "UTF-8";

*{margin:0;padding:0;box-sizing:border-box}

:root{
  --primary:#4A90D9;
  --primary-dark:#357ABD;
  --primary-light:#7CB3F0;
  --accent:#FF6090;
  --bg:#F0F4FF;
  --bg-card:#FFFFFF;
  --bg-dark:#1a1a2e;
  --bg-card-dark:#16213e;
  --text:#2c3e50;
  --text-light:#6b7c93;
  --text-dark:#e0e0e0;
  --text-light-dark:#a0a0b0;
  --border:rgba(74,144,217,.15);
  --shadow:0 4px 20px rgba(74,144,217,.12);
  --shadow-hover:0 8px 32px rgba(74,144,217,.2);
  --radius:16px;
  --radius-sm:10px;
  --radius-lg:24px;
  --transition:.3s cubic-bezier(.4,0,.2,1);
}

[data-theme="dark"]{
  --primary:#7CB3F0;
  --primary-dark:#4A90D9;
  --primary-light:#A8D0F8;
  --bg:#0f0f1a;
  --bg-card:#1a1a2e;
  --text:#e0e0e0;
  --text-light:#a0a0b0;
  --border:rgba(124,179,240,.15);
  --shadow:0 4px 20px rgba(0,0,0,.3);
  --shadow-hover:0 8px 32px rgba(0,0,0,.4);
}

html{scroll-behavior:smooth;font-size:16px}

body{
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Hiragino Sans GB","Microsoft YaHei",sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
  overflow-x:hidden;
  min-height:100vh;
  -webkit-tap-highlight-color:transparent;
}

body::before{
  content:'';
  position:fixed;
  top:0;left:0;right:0;bottom:0;
  z-index:-1;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(74,144,217,.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 60%, rgba(255,96,144,.06) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 100%, rgba(74,144,217,.10) 0%, transparent 50%),
    linear-gradient(135deg, var(--bg) 0%, #e8f0fe 50%, #f0e6f6 100%);
  animation:bgShift 15s ease-in-out infinite;
  pointer-events:none;
}

[data-theme="dark"] body::before{
  background:
    radial-gradient(ellipse at 20% 20%, rgba(124,179,240,.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 60%, rgba(255,96,144,.08) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 100%, rgba(124,179,240,.08) 0%, transparent 50%),
    linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 50%, #16213e 100%);
}

@keyframes bgShift{
  0%,100%{opacity:1}
  50%{opacity:.7}
}

.aiarticle-comment-rating-icon{
    display:inline-block !important;
    width:auto !important;
    height:auto !important;
    margin-right:2px;
    color:#ffb400 !important;
    font-style:normal !important;
    font-weight:normal !important;
    line-height:1 !important;
    vertical-align:middle;
    text-decoration:none !important;
}

.aiarticle-comment-rating-icon:before{
    font-family:Arial,"Segoe UI Symbol","Noto Sans Symbols","Microsoft YaHei",sans-serif !important;
    font-style:normal !important;
    font-weight:normal !important;
    line-height:1 !important;
}

.aiarticle-comment-rating-icon.fa-star:before{
    content:"\2605" !important;
}

.aiarticle-comment-rating-icon.fa-star-o:before{
    content:"\2606" !important;
}

.aiarticle-comment-rating-icon:last-child{
    margin-right:0;
}

a{text-decoration:none;-webkit-tap-highlight-color:transparent}

img{max-width:100%;height:auto;display:block}

.container{max-width:1200px;margin:0 auto;padding:0 20px}

.section-title{
  font-size:2rem;
  text-align:center;
  color:var(--text);
  margin-bottom:12px;
  font-weight:700;
}

.section-desc{
  text-align:center;
  color:var(--text-light);
  font-size:1.05rem;
  margin-bottom:48px;
}

.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:14px 32px;
  border-radius:50px;
  font-size:1rem;
  font-weight:600;
  cursor:pointer;
  transition:all var(--transition);
  border:none;
  outline:none;
}

.btn-primary{
  background:linear-gradient(135deg, var(--primary), var(--primary-dark));
  color:#fff;
  box-shadow:0 4px 15px rgba(74,144,217,.3);
}

.btn-primary:hover{
  transform:translateY(-2px);
  box-shadow:0 6px 25px rgba(74,144,217,.45);
}

.btn-outline{
  background:transparent;
  color:var(--primary);
  border:2px solid var(--primary);
}

.btn-outline:hover{
  background:var(--primary);
  color:#fff;
}

.btn .btn-icon{width:20px;height:20px;display:inline-block}

.navbar{
  position:fixed;
  top:0;left:0;right:0;
  z-index:1000;
  padding:12px 0;
  transition:background var(--transition), box-shadow var(--transition);
  background:transparent;
  transform:translateZ(0);
}

.navbar.scrolled{
  background:rgba(255,255,255,.85);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  box-shadow:0 2px 20px rgba(0,0,0,.08);
}

[data-theme="dark"] .navbar.scrolled{
  background:rgba(15,15,26,.9);
  box-shadow:0 2px 20px rgba(0,0,0,.3);
}

.nav-inner{
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.nav-logo{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:1.35rem;
  font-weight:700;
  color:var(--text);
}

.nav-logo img{width:40px;height:40px;border-radius:5px}

.nav-menu{
  display:flex;
  list-style:none;
  gap:8px;
}

.nav-menu a{
  display:block;
  padding:8px 18px;
  border-radius:50px;
  color:var(--text);
  font-size:.95rem;
  font-weight:500;
  transition:all var(--transition);
}

.nav-menu a:hover{
  background:rgba(74,144,217,.12);
  color:var(--primary);
}

.nav-toggle{
  display:none;
  background:none;
  border:none;
  cursor:pointer;
  padding:8px;
  color:var(--text);
}

.nav-download-btn{
  display:none;
  padding:6px 14px;
  border-radius:50px;
  font-size:.82rem;
  font-weight:600;
  color:#fff;
  background:linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow:0 2px 10px rgba(74,144,217,.3);
  white-space:nowrap;
}

.icon-menu::before{
  content:'';
  display:block;
  width:24px;height:24px;
  background:url('../icons/menu.svg') no-repeat center/contain;
}

.icon-close::before{
  content:'';
  display:block;
  width:24px;height:24px;
  background:url('../icons/close.svg') no-repeat center/contain;
}

.nav-toggle.active .icon-menu::before{
  background:url('../icons/close.svg') no-repeat center/contain;
}

.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:100px 20px 60px;
  overflow:hidden;
}

.hero-bg{
  position:absolute;
  top:-50%;
  left:-50%;
  width:200%;
  height:200%;
  background:
    radial-gradient(circle at 30% 20%, rgba(74,144,217,.12) 0%, transparent 40%),
    radial-gradient(circle at 70% 80%, rgba(255,96,144,.08) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(74,144,217,.05) 0%, transparent 60%);
  animation:heroBgFloat 20s ease-in-out infinite;
}

@keyframes heroBgFloat{
  0%,100%{transform:translate(0,0) rotate(0deg)}
  33%{transform:translate(2%,-1%) rotate(1deg)}
  66%{transform:translate(-1%,1%) rotate(-1deg)}
}

.hero-inner{
  position:relative;
  z-index:1;
  max-width:1200px;
  width:100%;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center;
}

.hero-content{
  text-align:center;
}

.hero-logo{
  margin-bottom:24px;
  animation:heroLogoFloat 3s ease-in-out infinite;
}

.hero-logo img{
  width:100px;height:100px;
  margin:0 auto;
  border-radius:5px;
  box-shadow:0 8px 40px rgba(74,144,217,.25);
}

@keyframes heroLogoFloat{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-12px)}
}

.hero-title{
  font-size:3.2rem;
  font-weight:800;
  background:linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  margin-bottom:12px;
}

.hero-subtitle{
  font-size:1.25rem;
  color:var(--text);
  margin-bottom:8px;
  font-weight:500;
}

.hero-desc{
  font-size:1rem;
  color:var(--text-light);
  margin-bottom:36px;
}

.hero-btns{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  flex-wrap:wrap;
  margin-bottom:48px;
}

.icon-spark::before{
  content:'';
  display:inline-block;
  width:18px;height:18px;
  background:url('../icons/feature-spark.svg') no-repeat center/contain;
}

.hero-stats{
  display:flex;
  justify-content:center;
  gap:40px;
  flex-wrap:wrap;
}

.hero-update{
  font-size:.85rem;
  color:var(--text-light);
  margin-top:16px;
}

.hero-side{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:400px;
}

.hero-phone{
  position:relative;
  z-index:2;
  width:fit-content;
}

.phone-frame{
  width:216px;
  height:416px;
  background:var(--bg-card);
  border-radius:32px;
  padding:8px;
  box-shadow:0 20px 60px rgba(74,144,217,.25);
  position:relative;
}

.phone-screen{
  width:200px;
  height:400px;
  background:var(--text);
  border-radius:26px;
  overflow:hidden;
  position:relative;
}

.phone-preview{
  width:100%;
  height:100%;
  object-fit:cover;
}

.phone-notch{
  position:absolute;
  top:10px;
  left:50%;
  transform:translateX(-50%);
  width:60px;
  height:20px;
  background:var(--text);
  border-radius:0 0 12px 12px;
  z-index:3;
}

.hero-deco{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  pointer-events:none;
  z-index:1;
}

.deco-item{
  position:absolute;
  border-radius:50%;
  background:linear-gradient(135deg, rgba(74,144,217,.2), rgba(255,96,144,.15));
  animation:decoFloat 6s ease-in-out infinite;
}

.deco-1{width:80px;height:80px;top:20%;right:10%;animation-delay:0s}
.deco-2{width:60px;height:60px;bottom:30%;left:15%;animation-delay:2s}
.deco-3{width:100px;height:100px;top:50%;right:-20px;animation-delay:4s}

@keyframes decoFloat{
  0%,100%{transform:translate(0,0) scale(1);opacity:.5}
  50%{transform:translate(15px,-15px) scale(1.1);opacity:.8}
}

.hero-badge{
  position:absolute;
  bottom:20px;
  right:-30px;
  z-index:3;
  display:flex;
  align-items:center;
  gap:6px;
  padding:6px 14px;
  background:var(--bg-card);
  border-radius:50px;
  box-shadow:0 4px 12px rgba(74,144,217,.2);
}

.badge-text{
  font-size:.85rem;
  font-weight:600;
  color:var(--primary);
}

.badge-dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:#4CAF50;
  animation:badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse{
  0%,100%{opacity:1;transform:scale(1)}
  50%{opacity:.6;transform:scale(1.2)}
}

.stat-item{text-align:center}

.stat-num{
  display:block;
  font-size:2rem;
  font-weight:800;
  color:var(--primary);
}

.stat-label{
  font-size:.85rem;
  color:var(--text-light);
}

.hero-float{
  position:absolute;
  top:0;left:0;
  width:100%;height:100%;
  pointer-events:none;
  z-index:0;
}

.float-item{
  position:absolute;
  border-radius:50%;
  background:rgba(74,144,217,.1);
  animation:floatUp 8s ease-in-out infinite;
}

.float-1{width:30px;height:30px;top:20%;left:15%;animation-delay:0s}
.float-2{width:20px;height:20px;top:30%;right:20%;animation-delay:1.5s}
.float-3{width:40px;height:40px;top:60%;left:10%;animation-delay:3s}
.float-4{width:25px;height:25px;top:70%;right:15%;animation-delay:4.5s}
.float-5{width:35px;height:35px;top:50%;left:80%;animation-delay:6s}

@keyframes floatUp{
  0%,100%{transform:translateY(0) scale(1);opacity:.3}
  50%{transform:translateY(-30px) scale(1.2);opacity:.6}
}

.about{padding:80px 0}

.about-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

.about-card{
  background:var(--bg-card);
  border-radius:var(--radius);
  padding:32px 24px;
  text-align:center;
  box-shadow:var(--shadow);
  border:1px solid var(--border);
  transition:all var(--transition);
}

.about-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow-hover);
}

.about-icon{
  width:60px;height:60px;
  margin:0 auto 16px;
  background:linear-gradient(135deg, rgba(74,144,217,.15), rgba(124,179,240,.1));
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--primary);
}

.icon-feature-explore::before{
  content:'';
  display:block;
  width:28px;height:28px;
  background:url('../icons/feature-explore.svg') no-repeat center/contain;
}

.icon-feature-community::before{
  content:'';
  display:block;
  width:28px;height:28px;
  background:url('../icons/feature-community.svg') no-repeat center/contain;
}

.icon-feature-spark::before{
  content:'';
  display:block;
  width:28px;height:28px;
  background:url('../icons/feature-spark.svg') no-repeat center/contain;
}

.icon-feature-update::before{
  content:'';
  display:block;
  width:28px;height:28px;
  background:url('../icons/feature-update.svg') no-repeat center/contain;
}

.icon-avatar::before{
  content:'';
  display:block;
  width:28px;height:28px;
  background:url('../icons/avatar.svg') no-repeat center/contain;
}

.icon-heart::before{
  content:'';
  display:block;
  width:28px;height:28px;
  background:url('../icons/heart.svg') no-repeat center/contain;
}

.icon-star::before{
  content:'';
  display:block;
  width:28px;height:28px;
  background:url('../icons/star.svg') no-repeat center/contain;
}

.about-card h3{
  font-size:1.15rem;
  color:var(--text);
  margin-bottom:10px;
  font-weight:600;
}

.about-card p{
  font-size:.9rem;
  color:var(--text-light);
  line-height:1.6;
}

.manga{padding:80px 0}

.manga-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.manga-card{
  background:var(--bg-card);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
  border:1px solid var(--border);
  transition:all var(--transition);
}

.manga-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow-hover);
}

.manga-cover{
  position:relative;
  overflow:hidden;
  aspect-ratio:16/9;
}

.manga-cover img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.manga-rank{
  position:absolute;
  top:12px;
  left:12px;
  padding:4px 12px;
  border-radius:50px;
  font-size:.78rem;
  font-weight:700;
  color:#fff;
  background:linear-gradient(135deg, var(--accent), #ff4080);
  box-shadow:0 2px 8px rgba(255,96,144,.3);
}

.manga-info{
  padding:20px;
}

.manga-info h3{
  font-size:1.1rem;
  color:var(--text);
  margin-bottom:10px;
  font-weight:600;
}

.manga-tags{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-bottom:12px;
}

.manga-tag{
  display:inline-block;
  padding:3px 10px;
  border-radius:50px;
  font-size:.75rem;
  font-weight:500;
  color:var(--primary);
  background:rgba(74,144,217,.1);
}

.manga-desc{
  font-size:.85rem;
  color:var(--text-light);
  line-height:1.5;
  margin-bottom:14px;
}

.manga-meta{
  display:flex;
  justify-content:space-between;
  font-size:.8rem;
  color:var(--text-light);
  padding-top:12px;
  border-top:1px solid var(--border);
}

.features{padding:80px 0}

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

.feature-card{
  background:var(--bg-card);
  border-radius:var(--radius);
  padding:28px 24px;
  display:flex;
  align-items:flex-start;
  gap:18px;
  box-shadow:var(--shadow);
  border:1px solid var(--border);
  transition:all var(--transition);
}

.feature-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-hover);
  border-color:var(--primary-light);
}

.feature-icon-wrap{
  width:52px;height:52px;
  min-width:52px;
  background:linear-gradient(135deg, rgba(74,144,217,.15), rgba(124,179,240,.1));
  border-radius:var(--radius-sm);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--primary);
}

.feature-info h3{
  font-size:1.05rem;
  color:var(--text);
  margin-bottom:6px;
  font-weight:600;
}

.feature-info p{
  font-size:.88rem;
  color:var(--text-light);
  line-height:1.5;
}

.screenshots{padding:80px 0}

.screenshot-scroll{
  padding:20px 0 40px;
}

.screenshot-track{
  display:flex;
  gap:20px;
  justify-content:center;
  flex-wrap:wrap;
  padding:0 20px;
}

.screenshot-track img{
  display:block;
  border-radius:5px;
  box-shadow:var(--shadow);
  max-width:260px;
  height:auto;
  flex-shrink:0;
}

.highlights{padding:80px 0}

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

.highlight-card{
  position:relative;
  background:var(--bg-card);
  border-radius:var(--radius);
  padding:32px 24px;
  text-align:center;
  box-shadow:var(--shadow);
  border:1px solid var(--border);
  transition:all var(--transition);
  overflow:hidden;
}

.highlight-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow-hover);
  border-color:var(--primary-light);
}

.highlight-card::after{
  content:'';
  position:absolute;
  top:0;left:0;right:0;
  height:3px;
  background:linear-gradient(90deg, var(--primary), var(--accent));
  opacity:0;
  transition:opacity var(--transition);
}

.highlight-card:hover::after{opacity:1}

.highlight-badge{
  position:absolute;
  top:12px;right:12px;
  padding:4px 10px;
  border-radius:50px;
  font-size:.75rem;
  font-weight:700;
  color:#fff;
  background:linear-gradient(135deg, var(--accent), #ff4080);
}

.highlight-icon{
  width:56px;height:56px;
  margin:0 auto 16px;
  background:linear-gradient(135deg, rgba(74,144,217,.15), rgba(124,179,240,.1));
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--primary);
}

.highlight-card h3{
  font-size:1.1rem;
  color:var(--text);
  margin-bottom:10px;
  font-weight:600;
}

.highlight-card p{
  font-size:.88rem;
  color:var(--text-light);
  line-height:1.5;
}

.reviews{padding:80px 0}

.reviews-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.review-card{
  background:var(--bg-card);
  border-radius:var(--radius);
  padding:32px 28px;
  text-align:center;
  box-shadow:var(--shadow);
  border:1px solid var(--border);
  transition:all var(--transition);
}

.review-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-hover);
}

.review-avatar{
  width:52px;height:52px;
  margin:0 auto 14px;
  background:linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
}

.review-stars{
  display:flex;
  justify-content:center;
  gap:4px;
  margin-bottom:14px;
  color:#FFB800;
}

.review-stars .icon-star::before{
  width:16px;height:16px;
}

.review-text{
  font-size:.92rem;
  color:var(--text);
  line-height:1.7;
  margin-bottom:14px;
}

.review-author{
  font-size:.85rem;
  color:var(--text-light);
}

.review-time{
  display:block;
  font-size:.78rem;
  color:var(--text-light);
  opacity:.7;
  margin-top:4px;
}

.download{padding:80px 0}

.download-cards{
  display:flex;
  justify-content:center;
  gap:32px;
  flex-wrap:wrap;
}

.download-card{
  background:var(--bg-card);
  border-radius:var(--radius-lg);
  padding:40px 36px;
  text-align:center;
  width:320px;
  box-shadow:var(--shadow);
  border:1px solid var(--border);
  transition:all var(--transition);
}

.download-card:hover{
  transform:translateY(-8px);
  box-shadow:var(--shadow-hover);
  border-color:var(--primary-light);
}

.download-icon-wrap{
  width:80px;height:80px;
  margin:0 auto 20px;
  background:linear-gradient(135deg, rgba(74,144,217,.12), rgba(124,179,240,.08));
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
}

.icon-download-android::before{
  content:'';
  display:block;
  width:48px;height:48px;
  background:url('../images/安卓.svg') no-repeat center/contain;
}

.icon-download-apple::before{
  content:'';
  display:block;
  width:48px;height:48px;
  background:url('../images/苹果.svg') no-repeat center/contain;
}

.download-btn .icon-download-android::before,
.download-btn .icon-download-apple::before{
  width:20px;height:20px;
}

.download-card h3{
  font-size:1.2rem;
  color:var(--text);
  margin-bottom:8px;
  font-weight:600;
}

.download-card>p{
  font-size:.9rem;
  color:var(--text-light);
}

.download-version{
  font-weight:600;
  color:var(--primary) !important;
  margin-bottom:24px;
  margin-top:6px;
}

.download-btn{font-size:.95rem;padding:12px 30px}

.download-tip{
  font-size:.78rem;
  color:var(--text-light);
  opacity:.7;
  margin-top:10px;
}

.faq{padding:80px 0}

.faq-list{
  max-width:750px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.faq-item{
  background:var(--bg-card);
  border-radius:var(--radius-sm);
  border:1px solid var(--border);
  overflow:hidden;
  transition:all var(--transition);
}

.faq-item:hover{border-color:var(--primary-light)}

.faq-question{
  width:100%;
  padding:18px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border:none;
  background:none;
  cursor:pointer;
  font-size:1rem;
  font-weight:600;
  color:var(--text);
  text-align:left;
}

.icon-chevron-down::before{
  content:'';
  display:block;
  width:20px;height:20px;
  background:url('../icons/chevron-down.svg') no-repeat center/contain;
  transition:transform var(--transition);
}

.faq-item.active .icon-chevron-down::before{
  transform:rotate(180deg);
}

.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .35s ease, padding .35s ease;
}

.faq-item.active .faq-answer{
  max-height:200px;
}

.faq-answer p{
  padding:0 24px 18px;
  font-size:.92rem;
  color:var(--text-light);
  line-height:1.7;
}

.more{padding:0 0 80px}

.more-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}

.more-card{
  background:var(--bg-card);
  border-radius:var(--radius);
  padding:28px;
  box-shadow:var(--shadow);
  border:1px solid var(--border);
  transition:all var(--transition);
}

.more-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-hover);
}

.more-card h3{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:1.1rem;
  color:var(--text);
  margin-bottom:14px;
  font-weight:600;
}

.icon-shield::before{
  content:'';
  display:block;
  width:22px;height:22px;
  background:url('../icons/shield.svg') no-repeat center/contain;
}

.icon-clock::before{
  content:'';
  display:block;
  width:22px;height:22px;
  background:url('../icons/clock.svg') no-repeat center/contain;
}

.more-card>p{
  font-size:.9rem;
  color:var(--text-light);
  line-height:1.7;
}

.changelog-list{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.changelog-item{
  padding-bottom:14px;
  border-bottom:1px solid var(--border);
}

.changelog-item:last-child{border-bottom:none;padding-bottom:0}

.changelog-ver{
  display:inline-block;
  padding:2px 10px;
  background:var(--primary);
  color:#fff;
  border-radius:50px;
  font-size:.8rem;
  font-weight:600;
  margin-right:8px;
}

.changelog-date{font-size:.82rem;color:var(--text-light)}

.changelog-item p{
  font-size:.86rem;
  color:var(--text-light);
  margin-top:6px;
  line-height:1.5;
}

.footer{
  padding:48px 0;
  text-align:center;
  border-top:1px solid var(--border);
}

.footer-logo{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-size:1.2rem;
  font-weight:700;
  color:var(--text);
  margin-bottom:12px;
}

.footer-logo img{width:36px;height:36px;border-radius:5px}

.footer-desc{
  font-size:.9rem;
  color:var(--text-light);
  margin-bottom:20px;
}

.footer-links{
  display:flex;
  justify-content:center;
  gap:24px;
  flex-wrap:wrap;
  margin-bottom:20px;
}

.footer-links a{
  color:var(--text-light);
  font-size:.88rem;
  transition:color var(--transition);
}

.footer-links a:hover{color:var(--primary)}

.footer-copy{
  font-size:.82rem;
  color:var(--text-light);
  opacity:.7;
}

.icon-back-to-top::before{
  content:'';
  display:block;
  width:24px;height:24px;
  background:url('../icons/back-to-top.svg') no-repeat center/contain;
}

.back-to-top{
  position:fixed;
  bottom:30px;
  right:30px;
  width:48px;
  height:48px;
  border-radius:50%;
  background:var(--primary);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  opacity:0;
  visibility:hidden;
  transform:translateY(20px);
  transition:all var(--transition);
  box-shadow:0 4px 16px rgba(74,144,217,.35);
  z-index:999;
}

.back-to-top.visible{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.back-to-top:hover{
  transform:translateY(-4px);
  box-shadow:0 6px 24px rgba(74,144,217,.5);
}

@media(max-width:1024px){
  .about-grid{grid-template-columns:repeat(2,1fr)}
  .features-grid{grid-template-columns:repeat(2,1fr)}
  .highlights-grid{grid-template-columns:repeat(2,1fr)}
  .reviews-grid{grid-template-columns:repeat(2,1fr)}
  .more-grid{grid-template-columns:1fr}
  .manga-grid{grid-template-columns:repeat(3,1fr)}
  .hero-title{font-size:2.5rem}
  .screenshot-track{padding:0 20px}
  .hero-inner{grid-template-columns:1fr;gap:30px}
}

@media(max-width:768px){
  .hero-title{font-size:2rem}
  .section-title{font-size:1.6rem}
  .section-desc{margin-bottom:32px}

  .about-grid{grid-template-columns:1fr 1fr;gap:16px}
  .features-grid{grid-template-columns:1fr;gap:14px}
  .highlights-grid{grid-template-columns:1fr 1fr;gap:14px}
  .reviews-grid{grid-template-columns:1fr;gap:16px}
  .more-grid{grid-template-columns:1fr}
  .manga-grid{grid-template-columns:repeat(2,1fr)}

  .hero-stats{gap:24px}
  .stat-num{font-size:1.5rem}

  .download-cards{flex-direction:column;align-items:center}
  .download-card{width:100%;max-width:360px}

  .screenshot-track img{max-width:220px}

  .screenshot-scroll{
    overflow-x:auto;
    overflow-y:hidden;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
    cursor:grab;
  }
  .screenshot-scroll::-webkit-scrollbar{display:none}
  .screenshot-scroll:active{cursor:grabbing}
  .screenshot-track{
    flex-wrap:nowrap;
    justify-content:flex-start;
    width:max-content;
  }

  .navbar{transition:none}
  .nav-toggle{display:block}
  .nav-download-btn{display:block}

  .nav-menu{
    position:fixed;
    top:0;right:-100%;
    width:280px;
    height:100vh;
    background:var(--bg-card);
    flex-direction:column;
    padding:80px 24px 24px;
    gap:4px;
    transition:right var(--transition);
    box-shadow:-4px 0 20px rgba(0,0,0,.1);
    z-index:1001;
  }

  [data-theme="dark"] .nav-menu{box-shadow:-4px 0 20px rgba(0,0,0,.4)}

  .nav-menu.active{right:0}

  .nav-menu a{padding:14px 18px;font-size:1.05rem}

  .nav-toggle{
    display:block;
    position:relative;
    z-index:1002;
  }

  .back-to-top{bottom:20px;right:20px}
}

@media(max-width:480px){
  .hero-title{font-size:1.7rem}
  .hero-subtitle{font-size:1rem}
  .hero-desc{font-size:.88rem}
  .hero-logo img{width:80px;height:80px}

  .about-grid{grid-template-columns:1fr}
  .highlights-grid{grid-template-columns:1fr}
  .download-card{padding:28px 20px}

  .manga-grid{grid-template-columns:1fr}

  .screenshot-track img{max-width:180px}

  .btn{padding:12px 24px;font-size:.9rem}
  .hero-btns{gap:12px}
}