/* 磁力链接搜索 - 磁力天天 - 磁力搜 - 磁链无界，一搜即达 */
/* 风格：杂志风 · 浅灰米白 · 珊瑚橘+深海蓝点缀 · 大胆排版 */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, 'PingFang SC', 'Microsoft YaHei', sans-serif;
  overflow-x: hidden;
  background: #faf8f5;
  color: #2c2c2c;
}

/* 核心布局 */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section:nth-child(even) {
  background: #f5f1ec;
}

/* 导航 — 固定顶部，浅色玻璃，珊瑚色点缀 */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(250, 248, 245, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.4rem;
  text-decoration: none;
  color: #1f2a44;
  letter-spacing: -0.02em;
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  background: linear-gradient(135deg, #ff7f5c 0%, #ff5e3a 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(255, 94, 58, 0.3);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.main-nav a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: #3d3d3d;
  transition: all 0.2s;
  position: relative;
  padding-bottom: 4px;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #ff5e3a;
  transition: width 0.3s;
}

.main-nav a:hover::after {
  width: 100%;
}

.main-nav a:hover {
  color: #ff5e3a;
}

.nav-cta {
  padding: 10px 24px !important;
  border-radius: 50px !important;
  background: #1f2a44;
  color: #fff !important;
  font-weight: 600 !important;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 12px rgba(31, 42, 68, 0.2);
  transition: all 0.25s !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: #ff5e3a !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 94, 58, 0.3) !important;
}

.menu-toggle {
  display: none;
  background: none;
  border: 1.5px solid #1f2a44;
  border-radius: 8px;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 1.2rem;
  color: #1f2a44;
}

/* 首页Hero — 杂志封面感 */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 72px;
  background: linear-gradient(165deg, #faf8f5 0%, #f0ebe5 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  right: -10%;
  top: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 94, 58, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  max-width: 700px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
  background: #1f2a44;
  color: #fff;
}

.hero h1 {
  font-size: 3.6rem;
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 900;
  color: #1f2a44;
  letter-spacing: -0.02em;
}

.hero h1 span {
  background: linear-gradient(135deg, #ff5e3a, #ff8a6f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.15rem;
  opacity: 0.75;
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.6;
  color: #3d3d3d;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(31, 42, 68, 0.08);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* 按钮 — 珊瑚橘 & 深海蓝 */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.25s;
  letter-spacing: 0.3px;
}

.btn-primary {
  background: linear-gradient(135deg, #ff5e3a, #ff7f5c);
  color: #fff;
  box-shadow: 0 6px 20px rgba(255, 94, 58, 0.25);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 94, 58, 0.35);
}

.btn-outline {
  background: transparent;
  border: 2px solid #1f2a44;
  color: #1f2a44;
}

.btn-outline:hover {
  background: #1f2a44;
  color: #fff;
  transform: translateY(-3px);
}

/* 标签/标题 — 杂志风 */
.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: #ff5e3a;
  padding: 4px 0;
  border-bottom: 2px solid #ff5e3a;
}

.section-title {
  font-size: 2.6rem;
  margin-bottom: 16px;
  font-weight: 900;
  color: #1f2a44;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.section-desc {
  max-width: 600px;
  opacity: 0.7;
  margin-bottom: 48px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #3d3d3d;
}

/* 卡片网格 — 层叠卡片，杂志感 */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.category-card {
  border-radius: 16px;
  padding: 32px 28px;
  background: #fff;
  border: none;
  box-shadow: 0 4px 20px rgba(31, 42, 68, 0.04);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #ff5e3a, #ff8a6f);
  opacity: 0;
  transition: opacity 0.3s;
}

.category-card:hover::before {
  opacity: 1;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(31, 42, 68, 0.08);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
  background: #f5f1ec;
  color: #1f2a44;
}

.card-link {
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  color: #ff5e3a;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.card-link:hover {
  gap: 12px;
}

/* 特性块 — 不对称布局 */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.feature-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(31, 42, 68, 0.06);
}

.feature-image img {
  width: 100%;
  height: auto;
  display: block;
}

.feature-text {
  padding-right: 20px;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  border-bottom: 1px solid rgba(31, 42, 68, 0.05);
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list li::before {
  content: '→';
  font-weight: 700;
  color: #ff5e3a;
  font-size: 1.1rem;
}

/* 数据条 — 杂志数字 */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}

.stat-item {
  padding: 32px 20px;
  border-radius: 16px;
  background: #fff;
  border: none;
  box-shadow: 0 4px 20px rgba(31, 42, 68, 0.04);
  transition: transform 0.3s;
}

.stat-item:hover {
  transform: scale(1.02);
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: #1f2a44;
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat-number span {
  color: #ff5e3a;
}

.stat-label {
  font-size: 0.85rem;
  opacity: 0.6;
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* 内容墙 — 杂志网格 */
.content-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.content-wall-item {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: none;
  box-shadow: 0 4px 20px rgba(31, 42, 68, 0.04);
  transition: all 0.3s;
}

.content-wall-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(31, 42, 68, 0.08);
}

.content-wall-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s;
}

.content-wall-item:hover img {
  transform: scale(1.03);
}

.content-wall-body {
  padding: 24px;
}

.content-wall-body h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1f2a44;
}

.content-wall-body p {
  font-size: 0.9rem;
  opacity: 0.65;
  line-height: 1.5;
}

/* FAQ — 极简展开 */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: none;
  border-bottom: 1px solid rgba(31, 42, 68, 0.08);
  border-radius: 0;
  margin-bottom: 0;
  overflow: hidden;
  cursor: pointer;
  transition: background 0.2s;
}

.faq-item:hover {
  background: rgba(255, 94, 58, 0.02);
}

.faq-item .faq-question {
  padding: 20px 0;
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #1f2a44;
}

.faq-item .faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: #ff5e3a;
  transition: transform 0.3s;
}

.faq-item.open .faq-question::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-item .faq-answer {
  padding: 0 0 20px;
  display: none;
  opacity: 0.7;
  line-height: 1.7;
  color: #3d3d3d;
}

.faq-item.open .faq-answer {
  display: block;
}

/* CTA横幅 — 珊瑚渐变 */
.cta-banner {
  padding: 72px 40px;
  text-align: center;
  border-radius: 20px;
  background: linear-gradient(135deg, #1f2a44 0%, #2a3a5c 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 94, 58, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 16px;
}

.cta-banner p {
  opacity: 0.8;
  max-width: 500px;
  margin: 0 auto 28px;
  font-size: 1.05rem;
}

.cta-banner .btn-primary {
  background: #fff;
  color: #1f2a44;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.cta-banner .btn-primary:hover {
  background: #ff5e3a;
  color: #fff;
  box-shadow: 0 8px 24px rgba(255, 94, 58, 0.3);
}

/* 页脚 — 深海蓝 */
.site-footer {
  padding: 64px 0 32px;
  background: #1f2a44;
  color: rgba(255,255,255,0.7);
}

.site-footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}

.footer-brand p {
  margin-top: 12px;
  font-size: 0.9rem;
  opacity: 0.6;
  line-height: 1.6;
}

.footer-col h5 {
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  color: #fff;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  padding: 6px 0;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #ff5e3a;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 48px;
  padding-top: 24px;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.5;
  letter-spacing: 0.5px;
}

/* 工具类 */
.text-accent {
  color: #ff5e3a;
}

.text-center {
  text-align: center;
}

.seo-description {
  max-width: 600px;
  margin: 0 auto 48px;
  opacity: 0.7;
  font-size: 1.05rem;
  line-height: 1.7;
}

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* 响应式 */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.4rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .feature-block {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .main-nav {
    display: none;
  }
  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: #faf8f5;
    padding: 24px 28px;
    gap: 16px;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    backdrop-filter: blur(16px);
  }
  .main-nav.open a {
    font-size: 1rem;
    padding: 8px 0;
  }
}

@media (max-width: 480px) {
  .cards-grid,
  .content-wall,
  .stats-bar {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .section-title {
    font-size: 1.6rem;
  }
  .cta-banner {
    padding: 48px 24px;
  }
  .cta-banner h2 {
    font-size: 1.6rem;
  }
}