/* ============================
   海角传媒 - 主样式表
   Brand: 海角传媒 | tawsbkg.cn
   ============================ */

/* ---- CSS Variables ---- */
:root {
  --primary: #E8537A;
  --primary-dark: #C73E62;
  --primary-light: #F9D0DB;
  --secondary: #FF8C42;
  --accent: #7C4DFF;
  --dark: #1A1A2E;
  --dark2: #16213E;
  --mid: #2D2D4E;
  --text: #333344;
  --text-light: #666688;
  --text-muted: #999AB5;
  --bg: #FAFAFA;
  --bg2: #F4F4F8;
  --white: #FFFFFF;
  --border: #E8E8F0;
  --shadow: 0 4px 24px rgba(232,83,122,0.10);
  --shadow-lg: 0 12px 48px rgba(26,26,46,0.16);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --font: 'PingFang SC', 'Microsoft YaHei', 'Hiragino Sans GB', sans-serif;
  --transition: 0.28s cubic-bezier(0.4,0,0.2,1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font); }

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

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(232,83,122,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232,83,122,0.45);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}
.btn-dark {
  background: var(--dark);
  color: var(--white);
}

/* ---- Section Common ---- */
.section { padding: 72px 0; }
.nh581boa { text-align: center; margin-bottom: 48px; }
.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.3;
}
.i1lbj {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 16px;
}
.hvtd86 {
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
}
.hvtd86:hover { color: var(--primary-dark); }

/* ============================
   HEADER
   ============================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--dark);
  box-shadow: 0 2px 16px rgba(0,0,0,0.25);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.logo-text {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 1px;
}
.logo-text em {
  font-style: normal;
  color: var(--primary);
}
.main-nav ul {
  display: flex;
  gap: 4px;
}
.main-nav a {
  display: block;
  padding: 8px 16px;
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.main-nav a:hover, .main-nav a.active {
  color: var(--white);
  background: rgba(232,83,122,0.25);
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  padding: 8px;
}

/* Search Bar */
.haihw27l {
  background: var(--dark2);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 10px 0;
}
.ijhebr {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.search-form {
  display: flex;
  flex: 1;
  max-width: 600px;
  background: rgba(255,255,255,0.1);
  border-radius: 50px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.15);
}
.search-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  padding: 9px 20px;
  color: var(--white);
  font-size: 0.9rem;
  font-family: var(--font);
}
.search-input::placeholder { color: rgba(255,255,255,0.45); }
.search-btn {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 9px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background var(--transition);
}
.search-btn:hover { background: var(--primary-dark); }
.n0awu3 {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.n0awu3 a {
  color: rgba(255,255,255,0.7);
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
  transition: all var(--transition);
  font-size: 0.82rem;
}
.n0awu3 a:hover { background: rgba(232,83,122,0.3); color: var(--white); }

/* Breadcrumb */
.i6v1t3ge {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
}
.w8tbb {
  display: flex;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.w8tbb li::after { content: ' /'; margin-left: 8px; }
.w8tbb li:last-child::after { content: ''; }
.w8tbb a { color: var(--text-light); }
.w8tbb a:hover { color: var(--primary); }
.w8tbb .current { color: var(--text); }

/* ============================
   HERO
   ============================ */
.hero-section {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero-section:hover .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,46,0.82) 0%, rgba(26,26,46,0.55) 60%, rgba(232,83,122,0.25) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 20px;
  max-width: 700px;
}
.hero-title {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 12px;
  font-weight: 500;
}
.hero-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  max-width: 520px;
}
.t8twa { display: flex; gap: 16px; flex-wrap: wrap; }

/* Stats Bar */
.xzfs692 {
  background: linear-gradient(135deg, var(--dark), var(--dark2));
  padding: 28px 0;
}
.stats-inner {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}
.g9d18 {
  text-align: center;
  color: var(--white);
}
.g9d18 strong {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.g9d18 span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
  display: block;
}

/* ============================
   VIDEO SECTION
   ============================ */
.hbleet { background: var(--bg); }
.k8o5kg {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.lqo38j {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  cursor: pointer;
}
.lqo38j:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.wrf3g {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--dark2);
}
.wrf3g img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.lqo38j:hover .wrf3g img { transform: scale(1.06); }
.mhcvjb {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.35);
  opacity: 0;
  transition: opacity var(--transition);
}
.lqo38j:hover .mhcvjb { opacity: 1; }
.f5vbi {
  width: 56px;
  height: 56px;
  background: rgba(232,83,122,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.85);
  transition: transform var(--transition);
}
.lqo38j:hover .f5vbi { transform: scale(1); }
.f5vbi svg { margin-left: 4px; }
.tyc0lv {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}
.tl12d5ya {
  position: absolute;
  bottom: 8px;
  right: 10px;
  background: rgba(0,0,0,0.65);
  color: var(--white);
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 4px;
}
.vaumi0l { padding: 16px; }
.k8cufp96 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.uccet {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.g7jjy { display: flex; gap: 12px; }

/* ============================
   ENTERTAIN SECTION
   ============================ */
.entertain-section { background: var(--bg2); }
.s6bcts2 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.entertain-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border-top: 4px solid transparent;
}
.entertain-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--primary);
}
.ctvub {
  font-size: 2.8rem;
  margin-bottom: 16px;
}
.entertain-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}
.entertain-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}
.card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
}
.card-link:hover { color: var(--primary-dark); }

/* ============================
   AI SECTION
   ============================ */
.mcbpfl11 { background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%); }
.gtqe20e {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.wzyetrf4 h2 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.wzyetrf4 h3 {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.3;
}
.wzyetrf4 p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
  line-height: 1.8;
}
.k6vuxne6 {
  margin-bottom: 32px;
}
.k6vuxne6 li {
  color: rgba(255,255,255,0.8);
  padding: 8px 0;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.pa4nzct3 {
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
}
.kndh3 img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: auto;
}

/* ============================
   EXPERTS SECTION
   ============================ */
.ure9p { background: var(--bg); }
.gyer9gk {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.lcdic8 {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.lcdic8:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.gr9eaklj {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: top;
}
.danmcsq8 { padding: 20px; }
.u1cshgch {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 4px;
}
.l8taaw0x {
  font-size: 0.82rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 10px;
}
.rvl9mm7o {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 12px;
}
.reh0mp {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.y4phip2 { display: flex; gap: 8px; }
.tswro7 {
  flex: 1;
  text-align: center;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all var(--transition);
  border: 1.5px solid var(--primary);
  color: var(--primary);
  background: transparent;
}
.tswro7:hover {
  background: var(--primary);
  color: var(--white);
}
.expert-btn.filled {
  background: var(--primary);
  color: var(--white);
}
.expert-btn.filled:hover { background: var(--primary-dark); }

/* ============================
   COMMUNITY SECTION
   ============================ */
.community-section { background: var(--bg2); }
.tyr9935r {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}
.comm-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border-left: 4px solid var(--primary);
}
.comm-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.comm-card-live { border-left-color: #FF4757; }
.comm-card-voice { border-left-color: #7C4DFF; }
.comm-card-edu { border-left-color: #2ED573; }
.comm-card-gallery { border-left-color: var(--secondary); }
.comm-card-icon { font-size: 2.2rem; margin-bottom: 14px; }
.comm-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.comm-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 14px;
}
.h5ikk3 {
  font-size: 0.78rem;
  color: var(--text-muted);
  background: var(--bg2);
  padding: 6px 12px;
  border-radius: 6px;
}
.kb62n {
  text-align: center;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.kb62n .btn-outline {
  color: var(--primary);
  border-color: var(--primary);
}
.kb62n .btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

/* ============================
   PARTNERS SECTION
   ============================ */
.gt8aro8 { background: var(--bg); }
.g8jsse {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 56px;
}
.zsw2m {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 28px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  transition: all var(--transition);
  min-width: 120px;
  text-align: center;
}
.zsw2m:hover {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: var(--shadow);
}
.lgw04 { background: var(--bg2); border-radius: var(--radius-lg); padding: 48px 40px; }
.lgw04 h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  text-align: center;
  margin-bottom: 36px;
}
.adns9m3 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
}
.step-item { text-align: center; }
.kf8dr8 {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}
.step-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.step-item p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ============================
   REVIEWS SECTION
   ============================ */
.g5nfmi { background: var(--bg2); }
.j82r2j {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.eypw0si3 {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.eypw0si3:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.r18hi {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.is1vta {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.pjnei8g { flex: 1; }
.wwakk {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--dark);
}
.txp7jblc {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.qiai7iv { color: #FFB800; font-size: 0.9rem; }
.nq25s {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 12px;
}
.fy1sahl8 {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.b6lptlm7 { color: var(--primary); font-weight: 600; }

/* ============================
   FAQ SECTION
   ============================ */
.efuoezr { background: var(--bg); }
.n1wl6 { max-width: 800px; margin: 0 auto; }
.olgmhx {
  background: var(--white);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  overflow: hidden;
}
.e61fi {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 24px;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background var(--transition);
}
.e61fi:hover { background: var(--bg2); }
.faq-question.active { color: var(--primary); }
.ntg9qn08 {
  font-size: 1.2rem;
  transition: transform var(--transition);
  color: var(--primary);
  flex-shrink: 0;
}
.faq-question.active .ntg9qn08 { transform: rotate(45deg); }
.se1xrokz {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-answer.open { max-height: 300px; }
.se1xrokz p {
  padding: 0 24px 18px;
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ============================
   CONTACT SECTION
   ============================ */
.dm58g { background: var(--bg2); }
.o0mfq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.o6oygsj h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 24px;
}
.z8ge9 {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 28px;
}
.z8ge9 img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.zivwu { padding: 20px; }
.zivwu h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}
.zivwu p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 6px;
}
.zivwu strong { color: var(--text); }
.social-links h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
}
.uz5swy0c {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.avyttrvz {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  transition: all var(--transition);
  color: var(--text);
  font-size: 0.82rem;
}
.avyttrvz:hover {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: var(--shadow);
}
.gkgjx8 {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 6px;
  white-space: nowrap;
}
.pie1d h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
}
.wvrpyvf5 {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.k0t7r { text-align: center; }
.qr-placeholder {
  width: 140px;
  height: 140px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  position: relative;
  overflow: hidden;
}
.k0t7r p {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.nh1ti9k h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
}
.jg1e8shp { display: flex; gap: 10px; flex-wrap: wrap; }
.share-btn {
  padding: 9px 20px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  border: none;
  color: var(--white);
  transition: all var(--transition);
}
.share-wx { background: #07C160; }
.share-wb { background: #E6162D; }
.share-dy { background: #010101; }
.share-bili { background: #00A1D6; }
.share-btn:hover { opacity: 0.85; transform: translateY(-2px); }

/* ============================
   FOOTER
   ============================ */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding: 56px 20px 40px;
}
.r9ssvql {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lilblwz {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--white);
}
.hb7rp6 {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
}
.zt5a784k h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.zt5a784k ul { display: flex; flex-direction: column; gap: 8px; }
.zt5a784k a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.zt5a784k a:hover { color: var(--primary); }
.j3nth9 h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.j3nth9 p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
}
.j0day {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom a {
  color: rgba(255,255,255,0.55);
}
.footer-bottom a:hover { color: var(--primary); }

/* ============================
   INNER PAGE STYLES
   ============================ */
.c9a6me {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  padding: 60px 0;
  text-align: center;
}
.c9a6me h1 {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
}
.c9a6me p {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto;
}

/* Inner page video grid */
.media-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  justify-content: center;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* Creator tools */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.tool-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border-top: 4px solid var(--accent);
}
.tool-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.tool-icon { font-size: 2.5rem; margin-bottom: 16px; }
.tool-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.tool-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}
.tool-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-right: 6px;
  margin-bottom: 4px;
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .gtqe20e { grid-template-columns: 1fr; gap: 36px; }
  .o0mfq { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero-title { font-size: 2rem; }
  .section { padding: 48px 0; }
  .section-title { font-size: 1.6rem; }
  .main-nav { display: none; position: absolute; top: 64px; left: 0; right: 0; background: var(--dark2); padding: 12px 0; }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; }
  .main-nav a { padding: 12px 24px; border-radius: 0; }
  .nav-toggle { display: block; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .ijhebr { flex-direction: column; align-items: stretch; }
  .search-form { max-width: 100%; }
  .stats-inner { gap: 16px; }
  .g9d18 strong { font-size: 1.5rem; }
  .lgw04 { padding: 28px 20px; }
  .wvrpyvf5 { justify-content: center; }
  .j0day { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.6rem; }
  .t8twa { flex-direction: column; }
  .btn { text-align: center; justify-content: center; }
  .k8o5kg { grid-template-columns: 1fr; }
  .s6bcts2 { grid-template-columns: 1fr; }
  .tyr9935r { grid-template-columns: 1fr; }
}

/* ============================
   ANIMATIONS
   ============================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

/* QR Code canvas */
.qr-placeholder canvas {
  display: block;
  margin: auto;
}
