/* ============================================
   海角视频 - 原创样式表
   品牌定位：影视传媒公司 + 视频社区
   配色方案：甜心粉红 + 梦幻紫 + 深夜蓝黑
   ============================================ */

/* CSS Variables */
:root {
  --primary: #E8436F;
  --primary-light: #FF6B9D;
  --accent: #7C3AED;
  --dark-bg: #1A1A2E;
  --dark-bg2: #16213E;
  --card-bg: #0F3460;
  --card-bg-hover: #1a4a7a;
  --text-main: #FFFFFF;
  --text-sub: #B8C5D6;
  --text-muted: #8899AA;
  --gradient: linear-gradient(135deg, #E8436F, #7C3AED);
  --gradient-h: linear-gradient(90deg, #E8436F, #7C3AED);
  --shadow: 0 4px 24px rgba(0,0,0,0.3);
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.2);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: all 0.3s ease;
  --max-width: 1280px;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  background: var(--dark-bg);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: var(--primary-light); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }

/* ============ Header / Navigation ============ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232, 67, 111, 0.2);
  transition: var(--transition);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--max-width); margin: 0 auto; padding: 0 20px; height: 68px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 42px; width: auto; }
.logo span { font-size: 1.3rem; font-weight: 700; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  padding: 8px 16px; border-radius: var(--radius-sm); font-size: 0.95rem;
  color: var(--text-sub); transition: var(--transition); white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--text-main); background: rgba(232, 67, 111, 0.15);
}
.nav-toggle { display: none; background: none; border: none; color: var(--text-main); font-size: 1.5rem; cursor: pointer; }

/* Search Bar */
.search-bar {
  position: relative; width: 100%; max-width: var(--max-width); margin: 0 auto;
  padding: 12px 20px; background: var(--dark-bg2);
}
.search-bar input {
  width: 100%; padding: 10px 44px 10px 16px; border-radius: 24px;
  border: 1px solid rgba(232, 67, 111, 0.3); background: rgba(15, 52, 96, 0.6);
  color: var(--text-main); font-size: 0.95rem; outline: none; transition: var(--transition);
}
.search-bar input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(232, 67, 111, 0.15); }
.search-bar input::placeholder { color: var(--text-muted); }
.search-bar button {
  position: absolute; right: 28px; top: 50%; transform: translateY(-50%);
  background: var(--gradient); border: none; color: #fff; width: 36px; height: 36px;
  border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}

/* ============ Hero Banner ============ */
.hero {
  position: relative; margin-top: 68px; height: 520px; overflow: hidden;
  background: var(--dark-bg2);
}
.hero-slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.c52y2w06 {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,26,46,0.3) 0%, rgba(26,26,46,0.85) 100%);
  display: flex; align-items: center; justify-content: center;
}
.bg53jb { text-align: center; padding: 20px; max-width: 700px; }
.bg53jb h1 { font-size: 2.6rem; font-weight: 800; margin-bottom: 16px; line-height: 1.3; }
.bg53jb h1 span { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.bg53jb p { font-size: 1.1rem; color: var(--text-sub); margin-bottom: 28px; }
.btn-primary {
  display: inline-block; padding: 12px 32px; background: var(--gradient);
  color: #fff; border-radius: 28px; font-size: 1rem; font-weight: 600;
  border: none; cursor: pointer; transition: var(--transition);
  box-shadow: 0 4px 16px rgba(232, 67, 111, 0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(232, 67, 111, 0.5); color: #fff; }
.btn-outline {
  display: inline-block; padding: 10px 28px; border: 2px solid var(--primary);
  color: var(--primary-light); border-radius: 28px; font-size: 0.95rem; font-weight: 600;
  transition: var(--transition); margin-left: 12px;
}
.btn-outline:hover { background: var(--primary); color: #fff; }

/* ============ Section Common ============ */
.section { padding: 72px 0; }
.jx8xt { background: var(--dark-bg); }
.f87ea { background: var(--dark-bg2); }
.section-title {
  text-align: center; margin-bottom: 48px;
}
.section-title h2 {
  font-size: 2rem; font-weight: 700; margin-bottom: 12px;
}
.section-title h2 span { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.section-title p { color: var(--text-sub); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }
.plq6fbzf {
  width: 60px; height: 3px; background: var(--gradient); margin: 12px auto 0; border-radius: 2px;
}

/* ============ Video Cards ============ */
.k15wauew {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.video-card {
  background: var(--card-bg); border-radius: var(--radius); overflow: hidden;
  transition: var(--transition); cursor: pointer; position: relative;
}
.video-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); background: var(--card-bg-hover); }
.jyse38 {
  position: relative; padding-top: 56.25%; overflow: hidden;
}
.jyse38 img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.video-card:hover .jyse38 img { transform: scale(1.05); }
.play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 56px; height: 56px; background: rgba(232, 67, 111, 0.85); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
}
.play-btn::after {
  content: ''; width: 0; height: 0;
  border-left: 18px solid #fff; border-top: 11px solid transparent; border-bottom: 11px solid transparent;
  margin-left: 4px;
}
.video-card:hover .play-btn { opacity: 1; }
.w0efv { padding: 14px 16px; }
.w0efv h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 8px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.mc855a { display: flex; align-items: center; gap: 14px; font-size: 0.8rem; color: var(--text-muted); }
.mc855a span { display: flex; align-items: center; gap: 4px; }
.xiwzjd {
  position: absolute; top: 10px; left: 10px; padding: 3px 10px;
  background: var(--gradient); border-radius: 4px; font-size: 0.75rem; font-weight: 600; color: #fff; z-index: 2;
}
.vhtgqwa {
  position: absolute; bottom: 10px; right: 10px; padding: 2px 8px;
  background: rgba(0,0,0,0.75); border-radius: 4px; font-size: 0.75rem; color: #fff; z-index: 2;
}

/* ============ Service Cards ============ */
.lrngyh {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.service-card {
  background: var(--card-bg); border-radius: var(--radius); padding: 32px 24px;
  text-align: center; transition: var(--transition); border: 1px solid transparent;
}
.service-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: var(--shadow); }
.q9hfiap {
  width: 64px; height: 64px; margin: 0 auto 20px;
  background: var(--gradient); border-radius: 16px; display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
}
.service-card h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: 10px; }
.service-card p { color: var(--text-sub); font-size: 0.9rem; line-height: 1.6; }

/* ============ Expert Cards ============ */
.t6i3ri {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
}
.expert-card {
  background: var(--card-bg); border-radius: var(--radius); padding: 28px 20px;
  text-align: center; transition: var(--transition);
}
.expert-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.yr5uh {
  width: 100px; height: 100px; border-radius: 50%; margin: 0 auto 16px;
  overflow: hidden; border: 3px solid var(--primary);
}
.yr5uh img { width: 100%; height: 100%; object-fit: cover; }
.expert-card h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 4px; }
.expert-card .g297r { color: var(--primary-light); font-size: 0.85rem; margin-bottom: 10px; }
.expert-card p { color: var(--text-sub); font-size: 0.85rem; line-height: 1.5; margin-bottom: 14px; }
.auqh5 { display: flex; justify-content: center; gap: 10px; }
.auqh5 a {
  padding: 6px 14px; border-radius: 20px; font-size: 0.8rem; font-weight: 500;
  border: 1px solid var(--primary); color: var(--primary-light);
}
.auqh5 a:hover { background: var(--primary); color: #fff; }

/* ============ Community Section ============ */
.qba21 {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; align-items: center;
}
.iwmahb6 { border-radius: var(--radius); overflow: hidden; }
.iwmahb6 img { width: 100%; }
.wxl44 { display: flex; flex-direction: column; gap: 18px; }
.lnkjzh {
  display: flex; align-items: flex-start; gap: 14px; padding: 16px;
  background: var(--card-bg); border-radius: var(--radius-sm); transition: var(--transition);
}
.lnkjzh:hover { background: var(--card-bg-hover); }
.lnkjzh .icon {
  width: 44px; height: 44px; min-width: 44px; background: var(--gradient);
  border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.lnkjzh h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; }
.lnkjzh p { color: var(--text-sub); font-size: 0.85rem; }

/* ============ Partners ============ */
.n23bufgs {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 28px; align-items: center;
}
.q5tf6e {
  padding: 16px 28px; background: var(--card-bg); border-radius: var(--radius-sm);
  font-size: 1rem; font-weight: 600; color: var(--text-sub); transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.05);
}
.q5tf6e:hover { border-color: var(--primary); color: var(--text-main); }

/* ============ Reviews ============ */
.qltl9 {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.agdfss {
  background: var(--card-bg); border-radius: var(--radius); padding: 24px;
  transition: var(--transition);
}
.agdfss:hover { box-shadow: var(--shadow); }
.plllp { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.k61vj {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gradient); display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.1rem;
}
.gz6tz { font-weight: 600; font-size: 0.95rem; }
.wext2fb { font-size: 0.8rem; color: var(--text-muted); }
.zbivw2q { color: #FFD700; margin-bottom: 8px; font-size: 0.9rem; }
.mkb5t { color: var(--text-sub); font-size: 0.9rem; line-height: 1.6; }

/* ============ FAQ ============ */
.nl2in { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--card-bg); border-radius: var(--radius-sm); overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
}
.faq-question {
  padding: 18px 20px; cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; font-weight: 600; font-size: 0.95rem; transition: var(--transition);
}
.faq-question:hover { color: var(--primary-light); }
.faq-question::after { content: '+'; font-size: 1.3rem; color: var(--primary); transition: var(--transition); }
.faq-item.active .faq-question::after { content: '-'; }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease;
}
.faq-answer-inner { padding: 0 20px 18px; color: var(--text-sub); font-size: 0.9rem; line-height: 1.7; }
.faq-item.active .faq-answer { max-height: 300px; }

/* ============ Contact ============ */
.dcxpi1 {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px;
}
.s0nc08qw { display: flex; flex-direction: column; gap: 18px; }
.fu9sg11f {
  display: flex; align-items: flex-start; gap: 14px; padding: 16px;
  background: var(--card-bg); border-radius: var(--radius-sm);
}
.fu9sg11f .icon {
  width: 40px; height: 40px; min-width: 40px; background: var(--gradient);
  border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.fu9sg11f h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 2px; }
.fu9sg11f p { color: var(--text-sub); font-size: 0.85rem; }
.hgz48nzq { display: flex; gap: 24px; justify-content: center; align-items: flex-start; }
.s93g5dc { text-align: center; }
.s93g5dc img { width: 160px; height: 160px; border-radius: var(--radius-sm); margin-bottom: 8px; }
.s93g5dc p { font-size: 0.85rem; color: var(--text-sub); }

/* ============ Footer ============ */
.site-footer {
  background: #0d0d1a; padding: 48px 0 0; border-top: 1px solid rgba(232, 67, 111, 0.15);
}
.pu2m1l {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 36px;
}
.h8kuz .logo { margin-bottom: 12px; }
.h8kuz p { color: var(--text-sub); font-size: 0.9rem; line-height: 1.6; }
.jn8s0tx h4 { font-size: 1rem; font-weight: 600; margin-bottom: 14px; color: var(--text-main); }
.jn8s0tx a { display: block; color: var(--text-sub); font-size: 0.9rem; padding: 4px 0; transition: var(--transition); }
.jn8s0tx a:hover { color: var(--primary-light); padding-left: 4px; }
.ixpdg {
  border-top: 1px solid rgba(255,255,255,0.05); padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.85rem; color: var(--text-muted);
}
.htb2pmj5 { display: flex; gap: 12px; }
.htb2pmj5 a {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--card-bg); display: flex; align-items: center; justify-content: center;
  color: var(--text-sub); font-size: 0.9rem; transition: var(--transition);
}
.htb2pmj5 a:hover { background: var(--gradient); color: #fff; }

/* ============ Breadcrumb ============ */
.mhy8esv {
  padding: 16px 0; font-size: 0.85rem; color: var(--text-muted);
  margin-top: 68px;
}
.mhy8esv a { color: var(--text-sub); }
.mhy8esv a:hover { color: var(--primary-light); }
.mhy8esv span { margin: 0 8px; }

/* ============ Share Buttons ============ */
.share-bar {
  display: flex; align-items: center; gap: 12px; padding: 16px 0;
}
.share-bar span { font-size: 0.9rem; color: var(--text-sub); }
.share-btn {
  padding: 6px 16px; border-radius: 20px; font-size: 0.8rem;
  background: var(--card-bg); color: var(--text-sub); border: none; cursor: pointer;
  transition: var(--transition);
}
.share-btn:hover { background: var(--primary); color: #fff; }

/* ============ How-To Guide ============ */
.yzt3eibp {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.pstxqo {
  text-align: center; padding: 24px 16px; background: var(--card-bg);
  border-radius: var(--radius); position: relative;
}
.rgq6xox {
  width: 40px; height: 40px; background: var(--gradient); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.1rem; margin: 0 auto 14px;
}
.pstxqo h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 8px; }
.pstxqo p { color: var(--text-sub); font-size: 0.85rem; }

/* ============ AI Section ============ */
.wslmk {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.ai-card {
  background: var(--card-bg); border-radius: var(--radius); padding: 28px 22px;
  border: 1px solid rgba(124, 58, 237, 0.2); transition: var(--transition);
}
.ai-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: 0 4px 24px rgba(124, 58, 237, 0.2); }
.ai-card .icon { font-size: 2rem; margin-bottom: 14px; }
.ai-card h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 8px; }
.ai-card p { color: var(--text-sub); font-size: 0.88rem; line-height: 1.6; }

/* ============ Responsive ============ */
@media (max-width: 1024px) {
  .k15wauew { grid-template-columns: repeat(3, 1fr); }
  .pu2m1l { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .main-nav {
    display: none; position: absolute; top: 68px; left: 0; right: 0;
    background: rgba(26, 26, 46, 0.98); flex-direction: column; padding: 16px;
    border-bottom: 1px solid rgba(232, 67, 111, 0.2);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 16px; width: 100%; }
  .hero { height: 400px; }
  .bg53jb h1 { font-size: 1.8rem; }
  .k15wauew { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .lrngyh { grid-template-columns: 1fr; }
  .t6i3ri { grid-template-columns: repeat(2, 1fr); }
  .qba21 { grid-template-columns: 1fr; }
  .qltl9 { grid-template-columns: 1fr; }
  .dcxpi1 { grid-template-columns: 1fr; }
  .yzt3eibp { grid-template-columns: repeat(2, 1fr); }
  .wslmk { grid-template-columns: 1fr; }
  .pu2m1l { grid-template-columns: 1fr; }
  .ixpdg { flex-direction: column; gap: 12px; text-align: center; }
  .section { padding: 48px 0; }
  .section-title h2 { font-size: 1.6rem; }
}
@media (max-width: 480px) {
  .k15wauew { grid-template-columns: 1fr; }
  .t6i3ri { grid-template-columns: 1fr; }
  .yzt3eibp { grid-template-columns: 1fr; }
  .hero { height: 320px; }
  .bg53jb h1 { font-size: 1.5rem; }
  .hgz48nzq { flex-direction: column; align-items: center; }
}

/* ============ Lazy Load ============ */
img[loading="lazy"] { opacity: 0; transition: opacity 0.5s ease; }
img[loading="lazy"].loaded, img[loading="lazy"][src] { opacity: 1; }

/* ============ Animations ============ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeInUp 0.6s ease forwards; }

/* ============ Tags ============ */
.v239per8 { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.n8wbspon {
  padding: 4px 12px; background: rgba(232, 67, 111, 0.15); border-radius: 16px;
  font-size: 0.78rem; color: var(--primary-light);
}

/* ============ Inner Page Hero ============ */
.fcuu5 {
  margin-top: 68px; padding: 60px 0 40px;
  background: var(--dark-bg2); text-align: center;
}
.fcuu5 h1 { font-size: 2.2rem; font-weight: 700; margin-bottom: 12px; }
.fcuu5 h1 span { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.fcuu5 p { color: var(--text-sub); font-size: 1.05rem; }

/* ============ Update Time ============ */
.q5ie0i9 { font-size: 0.82rem; color: var(--text-muted); }
