/* ============================================================
   海角 全站样式表 - style.css
   品牌色: 玫瑰红 #E8335A | 珊瑚橙 #FF6B6B | 深色背景 #1A1A2E
   ============================================================ */

/* ---------- 重置与基础 ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brand-pink:   #E8335A;
  --brand-coral:  #FF6B6B;
  --brand-orange: #FF8C42;
  --brand-dark:   #1A1A2E;
  --brand-mid:    #16213E;
  --brand-light:  #0F3460;
  --accent-gold:  #FFD700;
  --text-white:   #FFFFFF;
  --text-gray:    #CCCCCC;
  --text-muted:   #999999;
  --card-bg:      #1E2A4A;
  --border-color: #2D3A5A;
  --gradient-main: linear-gradient(135deg, #E8335A 0%, #FF6B6B 50%, #FF8C42 100%);
  --gradient-dark: linear-gradient(180deg, #1A1A2E 0%, #16213E 100%);
  --shadow-card:  0 8px 32px rgba(232,51,90,0.15);
  --radius-sm:    8px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --transition:   all 0.3s ease;
}

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

body {
  font-family: 'PingFang SC', 'Microsoft YaHei', 'Hiragino Sans GB', sans-serif;
  background: var(--brand-dark);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ---------- 滚动条 ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--brand-dark); }
::-webkit-scrollbar-thumb { background: var(--brand-pink); border-radius: 3px; }

/* ---------- 通用工具类 ---------- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.section { padding: 70px 0; }
.section-alt { background: var(--brand-mid); }

.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}
.section-header p { color: var(--text-gray); font-size: 1rem; max-width: 600px; margin: 0 auto; }
.section-divider {
  width: 60px; height: 4px;
  background: var(--gradient-main);
  border-radius: 2px;
  margin: 16px auto 0;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
}
.btn-primary {
  background: var(--gradient-main);
  color: #fff;
  box-shadow: 0 4px 20px rgba(232,51,90,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(232,51,90,0.5); }
.btn-outline {
  background: transparent;
  color: var(--brand-pink);
  border: 2px solid var(--brand-pink);
}
.btn-outline:hover { background: var(--brand-pink); color: #fff; }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }

.tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(232,51,90,0.2);
  color: var(--brand-coral);
  border: 1px solid rgba(232,51,90,0.3);
}
.tag-hot { background: rgba(255,107,107,0.2); color: #FF6B6B; border-color: rgba(255,107,107,0.3); }
.tag-new { background: rgba(255,215,0,0.15); color: var(--accent-gold); border-color: rgba(255,215,0,0.3); }

/* ---------- 顶部公告条 ---------- */
.top-bar {
  background: var(--gradient-main);
  padding: 8px 0;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 500;
}
.top-bar a { color: #fff; }
.top-bar a:hover { text-decoration: underline; }

/* ---------- 头部导航 ---------- */
.site-header {
  background: rgba(26,26,46,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1280px;
  margin: 0 auto;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-wrap img.site-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--brand-pink);
}
.logo-wrap .brand-name {
  font-size: 1.4rem;
  font-weight: 800;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-wrap .brand-sub { font-size: 0.7rem; color: var(--text-muted); display: block; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-gray);
  transition: var(--transition);
  position: relative;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--text-white);
  background: rgba(232,51,90,0.15);
}
.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--brand-pink);
  border-radius: 1px;
}

.header-actions { display: flex; align-items: center; gap: 12px; }
.header-actions .btn-join {
  background: var(--gradient-main);
  color: #fff;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
}
.header-actions .btn-join:hover { opacity: 0.9; transform: translateY(-1px); }

/* 汉堡菜单 */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--text-white); border-radius: 2px; transition: var(--transition); }

/* ---------- 搜索栏 ---------- */
.search-bar-wrap {
  background: var(--brand-mid);
  padding: 14px 0;
  border-bottom: 1px solid var(--border-color);
}
.search-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.search-form {
  display: flex;
  flex: 1;
  max-width: 700px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  overflow: hidden;
  transition: var(--transition);
}
.search-form:focus-within { border-color: var(--brand-pink); box-shadow: 0 0 0 3px rgba(232,51,90,0.15); }
.search-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 10px 20px;
  color: var(--text-white);
  font-size: 0.95rem;
}
.search-form input::placeholder { color: var(--text-muted); }
.search-form button {
  background: var(--gradient-main);
  border: none;
  padding: 10px 24px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.search-form button:hover { opacity: 0.9; }
.search-hot-tags { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.search-hot-tags span { font-size: 0.8rem; color: var(--text-muted); }
.search-hot-tags a {
  font-size: 0.8rem;
  color: var(--text-gray);
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}
.search-hot-tags a:hover { color: var(--brand-pink); border-color: var(--brand-pink); }

/* ---------- 面包屑 ---------- */
.breadcrumb {
  padding: 12px 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--brand-pink); }
.breadcrumb span { color: var(--text-gray); margin: 0 6px; }

/* ---------- Hero Banner ---------- */
.t509k0sx {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--brand-dark);
}
.1jsqc5w {
  position: absolute;
  inset: 0;
  background-image: url('../images/banner_girl1.jpg');
  background-size: cover;
  background-position: center top;
  filter: brightness(0.35);
  z-index: 0;
}
.0xi7l {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26,26,46,0.95) 40%, rgba(26,26,46,0.3) 100%);
  z-index: 1;
}
.6uqg66 {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 20px;
}
.fwvew {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(232,51,90,0.2);
  border: 1px solid rgba(232,51,90,0.4);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  color: var(--brand-coral);
  margin-bottom: 20px;
}
.fwvew::before { content: '●'; font-size: 0.6rem; animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

.6uqg66 h1 {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
}
.6uqg66 h1 .brand { background: var(--gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.6uqg66 p {
  font-size: 1.1rem;
  color: var(--text-gray);
  max-width: 560px;
  margin-bottom: 32px;
  line-height: 1.8;
}
.0lwn1q1b { display: flex; gap: 14px; flex-wrap: wrap; }
.qrdo5b {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.w25oth2 { text-align: left; }
.w25oth2 .num {
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.w25oth2 .label { font-size: 0.82rem; color: var(--text-muted); }

/* ---------- 视频卡片网格 ---------- */
.ppn528t { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.72royfh {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  cursor: pointer;
}
.72royfh:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: var(--brand-pink); }
.svk5i {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #0a0a1a;
}
.svk5i img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.72royfh:hover .svk5i img { transform: scale(1.08); }
.217tf {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
  opacity: 0;
  transition: var(--transition);
}
.72royfh:hover .217tf { opacity: 1; }
.217tf svg { width: 52px; height: 52px; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5)); }
.1eqyhk8 {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0,0,0,0.75);
  color: #fff;
  font-size: 0.75rem;
  padding: 2px 7px;
  border-radius: 4px;
}
.ccs0k9 {
  position: absolute;
  top: 8px;
  left: 8px;
}
.9846f { padding: 14px; }
.9846f h3 {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.7pphj7 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.7pphj7 span { display: flex; align-items: center; gap: 4px; }
.7pphj7 .author { color: var(--brand-coral); font-weight: 500; }
.xno81 {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.xno81 span { display: flex; align-items: center; gap: 4px; }

/* ---------- 分类标签栏 ---------- */
.category-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.category-tab {
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  background: var(--card-bg);
  color: var(--text-gray);
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: var(--transition);
}
.category-tab:hover,
.category-tab.active {
  background: var(--brand-pink);
  color: #fff;
  border-color: var(--brand-pink);
}

/* ---------- 专家展示 ---------- */
.0hbcht { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.dyieole {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border: 1px solid var(--border-color);
  text-align: center;
  transition: var(--transition);
}
.dyieole:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.k4ir72 {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 3px solid var(--brand-pink);
}
.2ftwv { font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.gvstycc { font-size: 0.85rem; color: var(--brand-coral); margin-bottom: 10px; }
.78mt79tb { font-size: 0.83rem; color: var(--text-gray); line-height: 1.6; margin-bottom: 16px; }
.skfjbodo { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-bottom: 16px; }
.5qcuni {
  font-size: 0.72rem;
  padding: 3px 8px;
  background: rgba(255,215,0,0.1);
  color: var(--accent-gold);
  border-radius: 4px;
  border: 1px solid rgba(255,215,0,0.2);
}
.zsfiz { display: flex; gap: 8px; justify-content: center; }

/* ---------- 评论区 ---------- */
.5rrebum { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.u3quws {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}
.u3quws:hover { border-color: var(--brand-pink); }
.sqkks { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.93e79 {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.z0193c .name { font-weight: 600; font-size: 0.95rem; }
.z0193c .date { font-size: 0.78rem; color: var(--text-muted); }
.b212rkb2 { color: var(--accent-gold); font-size: 0.9rem; margin-bottom: 10px; }
.8zno8i { font-size: 0.88rem; color: var(--text-gray); line-height: 1.7; }
.g0sc2 { margin-top: 10px; }

/* ---------- FAQ ---------- */
.14wet8ul { max-width: 860px; margin: 0 auto; }
.xcsgsz {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.xcsgsz:hover { border-color: var(--brand-pink); }
.hrw3v2 {
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  user-select: none;
}
.hrw3v2::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--brand-pink);
  transition: var(--transition);
  flex-shrink: 0;
}
.xcsgsz.open .hrw3v2::after { content: '−'; }
.6zuzx6 {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  font-size: 0.88rem;
  color: var(--text-gray);
  line-height: 1.8;
}
.xcsgsz.open .6zuzx6 { max-height: 300px; padding: 0 24px 18px; }

/* ---------- 合作品牌 ---------- */
.7va1el {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  align-items: center;
}
.pzl5j {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pzl5j:hover { color: var(--brand-pink); border-color: var(--brand-pink); }

/* ---------- 联系我们 ---------- */
.jokkpbo { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.465vc {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border-color);
}
.465vc h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 24px; }
.gh8rvngq {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}
.gh8rvngq:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.1q5upmrt {
  width: 42px;
  height: 42px;
  background: rgba(232,51,90,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.9o0mc .label { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 3px; }
.9o0mc .value { font-size: 0.95rem; font-weight: 500; }

.dtjs05 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.opyf8d6 {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--border-color);
  text-align: center;
}
.opyf8d6 img { width: 130px; height: 130px; margin: 0 auto 12px; border-radius: var(--radius-sm); }
.opyf8d6 .qr-title { font-size: 0.88rem; font-weight: 600; margin-bottom: 4px; }
.opyf8d6 .qr-sub { font-size: 0.78rem; color: var(--text-muted); }

/* ---------- 社区功能卡片 ---------- */
.c66ohx { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.upl1o {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  border: 1px solid var(--border-color);
  text-align: center;
  transition: var(--transition);
}
.upl1o:hover { transform: translateY(-4px); border-color: var(--brand-pink); box-shadow: var(--shadow-card); }
.06ic8f1 {
  width: 64px;
  height: 64px;
  background: rgba(232,51,90,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 16px;
  transition: var(--transition);
}
.upl1o:hover .06ic8f1 { background: var(--gradient-main); }
.upl1o h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.upl1o p { font-size: 0.83rem; color: var(--text-gray); line-height: 1.6; }

/* ---------- AI功能展示 ---------- */
.pgwm0 { background: linear-gradient(135deg, #1A1A2E 0%, #0F3460 100%); }
.pg1fpl { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.iqj1o h2 { font-size: 2rem; font-weight: 800; margin-bottom: 16px; }
.iqj1o h2 span { background: var(--gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.iqj1o p { color: var(--text-gray); line-height: 1.8; margin-bottom: 24px; }
.sv5fua { display: flex; flex-direction: column; gap: 16px; }
.2feyv4 { display: flex; align-items: flex-start; gap: 14px; }
.6ljitz7k {
  width: 40px;
  height: 40px;
  background: rgba(232,51,90,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.ycx48 h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; }
.ycx48 p { font-size: 0.83rem; color: var(--text-gray); }
.akipz9 {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(232,51,90,0.2);
  position: relative;
}
.akipz9 img { width: 100%; }
.oriz16 {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gradient-main);
  color: #fff;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* ---------- 加入社区 How-To ---------- */
.l0nq7 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.uy8vg69s {
  text-align: center;
  position: relative;
}
.uy8vg69s:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -14px;
  top: 28px;
  font-size: 1.4rem;
  color: var(--brand-pink);
}
.ddfsu8z {
  width: 56px;
  height: 56px;
  background: var(--gradient-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 auto 16px;
  box-shadow: 0 4px 20px rgba(232,51,90,0.4);
}
.uy8vg69s h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.uy8vg69s p { font-size: 0.82rem; color: var(--text-gray); }

/* ---------- 社交分享 ---------- */
.d13aqa {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.d13aqa span { font-size: 0.88rem; color: var(--text-muted); }
.myck4 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid var(--border-color);
  background: var(--card-bg);
  color: var(--text-gray);
}
.myck4:hover { transform: translateY(-2px); }
.myck4.wechat:hover { background: #07C160; border-color: #07C160; color: #fff; }
.myck4.weibo:hover { background: #E6162D; border-color: #E6162D; color: #fff; }
.myck4.douyin:hover { background: #000; border-color: #69C9D0; color: #69C9D0; }
.myck4.bilibili:hover { background: #00A1D6; border-color: #00A1D6; color: #fff; }

/* ---------- 页脚 ---------- */
.site-footer {
  background: #0D0D1A;
  border-top: 1px solid var(--border-color);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-color);
}
.footer-brand .brand-name {
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}
.footer-brand p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; }
.footer-col h4 { font-size: 1rem; font-weight: 700; margin-bottom: 16px; color: var(--text-white); }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.85rem; color: var(--text-muted); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--brand-pink); padding-left: 4px; }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; color: var(--text-muted); }
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--brand-pink); }
.footer-links { display: flex; gap: 16px; }
.footer-links a { font-size: 0.82rem; color: var(--text-muted); }
.footer-links a:hover { color: var(--brand-pink); }

/* ---------- 视频播放页 ---------- */
.jkh5av {
  background: #000;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16/9;
  position: relative;
}
.jkh5av video,
.jkh5av iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.vhw3n { padding: 20px 0; }
.vhw3n h1 { font-size: 1.5rem; font-weight: 700; margin-bottom: 12px; }
.hfa3lqiz { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-bottom: 16px; }
.hfa3lqiz span { font-size: 0.85rem; color: var(--text-muted); display: flex; align-items: center; gap: 4px; }
.jo9sc4 { display: flex; gap: 12px; flex-wrap: wrap; }
.v0ujcnpj {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  color: var(--text-gray);
  cursor: pointer;
  transition: var(--transition);
}
.v0ujcnpj:hover { background: var(--brand-pink); border-color: var(--brand-pink); color: #fff; }

/* ---------- 内页 Banner ---------- */
.ls0gy {
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-light) 100%);
  padding: 60px 0 40px;
  border-bottom: 1px solid var(--border-color);
}
.ls0gy h1 { font-size: 2.2rem; font-weight: 800; margin-bottom: 10px; }
.ls0gy h1 span { background: var(--gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.ls0gy p { color: var(--text-gray); font-size: 1rem; }

/* ---------- 侧边栏 ---------- */
.jpyjxor2 { display: grid; grid-template-columns: 1fr 300px; gap: 30px; align-items: start; }
.3bw6tovn {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  padding: 20px;
  margin-bottom: 20px;
}
.3bw6tovn h3 { font-size: 1rem; font-weight: 700; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--border-color); }
.mj6a1ezg { display: flex; gap: 12px; margin-bottom: 14px; cursor: pointer; }
.mj6a1ezg:hover .zc9vys { color: var(--brand-pink); }
.7vin3x { width: 90px; height: 54px; border-radius: 6px; overflow: hidden; flex-shrink: 0; }
.7vin3x img { width: 100%; height: 100%; object-fit: cover; }
.zc9vys { font-size: 0.82rem; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.cwjk2 { font-size: 0.75rem; color: var(--text-muted); margin-top: 4px; }

/* ---------- 分页 ---------- */
.pf95lnwk {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}
.ztg0bt {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  color: var(--text-gray);
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition);
}
.ztg0bt:hover,
.ztg0bt.active {
  background: var(--brand-pink);
  border-color: var(--brand-pink);
  color: #fff;
}

/* ---------- 弹幕样式 ---------- */
.5h9fxm {
  background: rgba(0,0,0,0.6);
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}
.5h9fxm input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 0.9rem;
}
.5h9fxm input::placeholder { color: rgba(255,255,255,0.4); }
.5h9fxm button {
  background: var(--brand-pink);
  border: none;
  color: #fff;
  padding: 6px 14px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.85rem;
}

/* ---------- 通知/Toast ---------- */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--card-bg);
  border: 1px solid var(--brand-pink);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  font-size: 0.88rem;
  z-index: 9999;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s ease;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ---------- 响应式 ---------- */
@media (max-width: 1100px) {
  .ppn528t { grid-template-columns: repeat(3, 1fr); }
  .7va1el { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .6uqg66 h1 { font-size: 2.2rem; }
  .0hbcht { grid-template-columns: repeat(2, 1fr); }
  .c66ohx { grid-template-columns: repeat(2, 1fr); }
  .pg1fpl { grid-template-columns: 1fr; }
  .jokkpbo { grid-template-columns: 1fr; }
  .l0nq7 { grid-template-columns: repeat(2, 1fr); }
  .uy8vg69s:not(:last-child)::after { display: none; }
  .jpyjxor2 { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--brand-dark); flex-direction: column; padding: 20px; border-bottom: 1px solid var(--border-color); }
  .main-nav.open { display: flex; }
  .hamburger { display: flex; }
  .header-actions .btn-join { display: none; }
  .ppn528t { grid-template-columns: repeat(2, 1fr); }
  .5rrebum { grid-template-columns: 1fr; }
  .section { padding: 50px 0; }
  .t509k0sx { min-height: 420px; }
  .6uqg66 h1 { font-size: 1.8rem; }
  .qrdo5b { gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .search-hot-tags { display: none; }
}
@media (max-width: 480px) {
  .ppn528t { grid-template-columns: 1fr; }
  .0hbcht { grid-template-columns: 1fr; }
  .c66ohx { grid-template-columns: 1fr; }
  .l0nq7 { grid-template-columns: 1fr; }
  .dtjs05 { grid-template-columns: 1fr; }
  .7va1el { grid-template-columns: repeat(2, 1fr); }
}
