```css
/* ===== 策驰影视 全站样式 ===== */
:root {
  --primary: #7c3aed;
  --primary-dark: #4c1d95;
  --primary-light: #a855f7;
  --accent: #c026d3;
  --bg: #f5f3ff;
  --bg-dark: #0f0a1a;
  --card-bg: rgba(255, 255, 255, 0.85);
  --card-bg-dark: rgba(30, 20, 50, 0.85);
  --text: #2e1065;
  --text-dark: #e9d5ff;
  --text-muted: #6d28d9;
  --text-muted-dark: #a78bfa;
  --border: #ede9fe;
  --border-dark: rgba(139, 92, 246, 0.2);
  --shadow: 0 4px 15px rgba(76, 29, 149, 0.08);
  --shadow-hover: 0 8px 25px rgba(76, 29, 149, 0.15);
  --shadow-dark: 0 4px 20px rgba(0, 0, 0, 0.3);
  --glass: rgba(255, 255, 255, 0.6);
  --glass-dark: rgba(20, 10, 40, 0.6);
  --gradient: linear-gradient(135deg, #4c1d95, #7c3aed);
  --gradient-hero: linear-gradient(135deg, #6d28d9, #a855f7);
  --gradient-app: linear-gradient(135deg, #7c3aed, #c026d3);
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== 暗色模式 ===== */
@media (prefers-color-scheme: dark) {
  :root {
    --bg: var(--bg-dark);
    --text: var(--text-dark);
    --text-muted: var(--text-muted-dark);
    --border: var(--border-dark);
    --card-bg: var(--card-bg-dark);
    --shadow: var(--shadow-dark);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.5);
    --glass: var(--glass-dark);
  }
  
  body {
    background: var(--bg);
    color: var(--text);
  }
  
  .card,
  .detail-box,
  .char-card,
  .comment-box,
  .side-card {
    background: var(--card-bg);
    border-color: var(--border);
  }
  
  .card-body h3,
  .detail-box p,
  .char-card h4,
  .comment-box .user,
  .side-card h3 {
    color: var(--text);
  }
  
  .card-body p,
  .char-card .role,
  .char-card p,
  .comment-box p,
  .side-card li {
    color: var(--text-muted);
  }
  
  .tag {
    background: rgba(139, 92, 246, 0.2);
    color: var(--text-muted-dark);
  }
}

/* ===== 基础重置 ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  transition: background 0.3s ease, color 0.3s ease;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 8px;
  background: var(--border);
  object-fit: cover;
}

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

/* ===== 滚动动画 ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.section {
  animation: fadeInUp 0.6s ease both;
}

.card {
  animation: fadeInUp 0.5s ease both;
}

.card:nth-child(2n) {
  animation-delay: 0.1s;
}

.card:nth-child(3n) {
  animation-delay: 0.2s;
}

.card:nth-child(4n) {
  animation-delay: 0.3s;
}

/* ===== 滚动条 ===== */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-light);
}

/* ===== 页眉 ===== */
header {
  background: var(--gradient);
  color: #fff;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(76, 29, 149, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(to right, #f0abfc, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1px;
  animation: fadeIn 0.5s ease both;
}

nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

nav a {
  color: #ede9fe;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 20px;
  transition: var(--transition);
  font-size: 0.95rem;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: width 0.3s ease;
}

nav a:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

nav a:hover::after {
  width: 60%;
}

/* ===== Hero区域 ===== */
.hero {
  background: var(--gradient-hero);
  color: #fff;
  padding: 50px 0;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
  animation: fadeIn 0.8s ease both;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: pulse 4s ease infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 0.6s ease 0.2s both;
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.95;
  animation: fadeInUp 0.6s ease 0.4s both;
}

/* ===== 区块标题 ===== */
.section {
  margin-bottom: 50px;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 25px;
  padding-left: 15px;
  border-left: 5px solid var(--primary);
  color: var(--primary-dark);
  position: relative;
  transition: color 0.3s ease;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 15px;
  width: 50px;
  height: 3px;
  background: var(--gradient);
  border-radius: 3px;
}

/* ===== 网格布局 ===== */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}

/* ===== 卡片样式 ===== */
.card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

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

.card:hover::before {
  opacity: 1;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover img {
  transform: scale(1.05);
}

.card-body {
  padding: 12px;
  position: relative;
}

.card-body h3 {
  font-size: 1rem;
  margin-bottom: 5px;
  color: var(--text);
  transition: color 0.3s ease;
}

.card-body p {
  font-size: 0.8rem;
  color: var(--text-muted);
  opacity: 0.8;
  margin-bottom: 3px;
}

.card-body .tag {
  display: inline-block;
  background: var(--border);
  color: var(--primary);
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.7rem;
  margin-top: 5px;
  transition: all 0.3s ease;
}

.card-body .tag:hover {
  background: var(--primary);
  color: #fff;
}

/* ===== 详情框 ===== */
.detail-box {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  margin: 30px 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition);
}

.detail-box:hover {
  box-shadow: var(--shadow-hover);
}

.detail-box h3 {
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.detail-box p {
  margin-bottom: 12px;
  color: var(--text);
  opacity: 0.9;
  line-height: 1.8;
}

.detail-box img {
  margin-bottom: 20px;
  border-radius: var(--radius);
}

/* ===== 角色卡片 ===== */
.char-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.char-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition);
  animation: scaleIn 0.5s ease both;
}

.char-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

.char-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 15px;
  object-fit: cover;
  border: 3px solid var(--primary);
  transition: transform 0.5s ease;
}

.char-card:hover img {
  transform: rotate(10deg) scale(1.1);
}

.char-card h4 {
  color: var(--primary);
  margin-bottom: 5px;
}

.char-card .role {
  font-size: 0.85rem;
  color: var(--primary-light);
  margin-bottom: 10px;
}

.char-card p {
  font-size: 0.85rem;
  text-align: left;
}

/* ===== APP区域 ===== */
.app-section {
  background: var(--gradient-app);
  border-radius: var(--radius-xl);
  padding: 40px;
  color: #fff;
  text-align: center;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.6s ease both;
}

.app-section::before {
  content: '';
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: shine 3s ease infinite;
}

@keyframes shine {
  0% {
    transform: translateX(-100%) translateY(-100%);
  }
  50% {
    transform: translateX(100%) translateY(100%);
  }
  100% {
    transform: translateX(-100%) translateY(-100%);
  }
}

.app-section h3 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.app-section p {
  max-width: 600px;
  margin: 0 auto 25px;
  opacity: 0.95;
}

/* ===== 按钮 ===== */
.btn {
  display: inline-block;
  background: #fff;
  color: var(--primary);
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 700;
  margin: 5px 10px;
  transition: var(--transition);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  border-color: var(--primary);
}

.btn:hover::after {
  width: 300px;
  height: 300px;
}

/* ===== 评论框 ===== */
.comment-box {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(76, 29, 149, 0.05);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition);
  animation: slideInLeft 0.4s ease both;
}

.comment-box:nth-child(2n) {
  animation-delay: 0.1s;
}

.comment-box:nth-child(3n) {
  animation-delay: 0.2s;
}

.comment-box:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow);
}

.comment-box .user {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 5px;
}

.comment-box .time {
  font-size: 0.75rem;
  color: var(--primary-light);
}

.comment-box p {
  margin-top: 8px;
}

/* ===== 侧边栏 ===== */
.sidebar {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}

@media (min-width: 768px) {
  .sidebar {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (min-width: 992px) {
  .sidebar {
    grid-template-columns: 1fr;
  }
}

.side-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition);
  animation: fadeInUp 0.5s ease both;
}

.side-card:hover {
  box-shadow: var(--shadow-hover);
}

.side-card h3 {
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 1.2rem;
  border-bottom: 2px solid var(--border);
  padding-bottom: 8px;
}

.side-card ul {
  list-style: none;
}

.side-card li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.side-card li:last-child {
  border: none;
}

.side-card li:hover {
  padding-left: 5px;
  color: var(--primary);
}

.side-card .num {
  font-weight: 700;
  color: var(--primary);
}

/* ===== 排行榜 ===== */
.rating-list {
  list-style: none;
}

.rating-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
  cursor: pointer;
}

.rating-list li:hover {
  background: var(--border);
  padding-left: 5px;
  border-radius: 8px;
}

.rating-list .rank {
  background: var(--primary);
  color: #fff;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.rating-list li:hover .rank {
  transform: scale(1.2);
}

.rating-list .rank.gold {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.4);
}

.rating-list .rank.silver {
  background: linear-gradient(135deg, #94a3b8, #cbd5e1);
  box-shadow: 0 2px 8px rgba(148, 163, 184, 0.4);
}

.rating-list .rank.bronze {
  background: linear-gradient(135deg, #b45309, #d97706);
  box-shadow: 0 2px 8px rgba(180, 83, 9, 0.4);
}

/* ===== 主布局 ===== */
.main-layout {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 992px) {
  .main-layout {
    grid-template-columns: 1fr 300px;
    gap: 30px;
  }
}

.content-area {
  min-width: 0;
}

/* ===== 页脚 ===== */
footer {
  background: linear-gradient(135deg, #2e1065, #4c1d95);
  color: #c4b5fd;
  padding: 40px 0 20px;
  margin-top: 60px;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient);
}

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

.footer-links a {
  color: #a78bfa;
  font-size: 0.9rem;
  transition: var(--transition);
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #fff;
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-links a:hover::after {
  width: 100%;
}

.copyright {
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.8;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
  margin-bottom: 5px;
}

/* ===== 响应式优化 ===== */
@media (max-width: 768px) {
  .hero h2 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
  }
  
  .card img {
    height: 180px;
  }
  
  .app-section {
    padding: 30px 20px;
  }
  
  .app-section h3 {
    font-size: 1.5rem;
  }
  
  .btn {
    padding: 10px 20px;
    margin: 5px;
  }
  
  .detail-box {
    padding: 20px;
  }
  
  .char-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
  }
  
  .char-card img {
    width: 80px;
    height: 80px;
  }
  
  nav {
    gap: 10px;
    justify-content: center;
  }
  
  nav a {
    font-size: 0.85rem;
    padding: 4px 8px;
  }
  
  .logo {
    font-size: 1.5rem;
  }
  
  .header-wrap {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .card img {
    height: 150px;
  }
  
  .card-body h3 {
    font-size: 0.9rem;
  }
  
  .card-body p {
    font-size: 0.7rem;
  }
  
  .hero {
    padding: 40px 0;
  }
  
  .hero h2 {
    font-size: 1.5rem;
  }
  
  .hero p {
    font-size: 0.9rem;
    padding: 0 15px;
  }
  
  .app-section {
    padding: 20px 15px;
  }
  
  .app-section h3 {
    font-size: 1.2rem;
  }
  
  .btn {
    display: block;
    margin: 10px auto;
    max-width: 200px;
  }
  
  .detail-box {
    padding: 15px;
  }
  
  .char-grid {
    grid-template-columns: 1fr;
  }
  
  .char-card {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 15px;
  }
  
  .char-card img {
    width: 60px;
    height: 60px;
    margin: 0;
  }
  
  .char-card p {
    font-size: 0.8rem;
  }
  
  .footer-links {
    gap: 10px;
  }
  
  .footer-links a {
    font-size: 0.8rem;
  }
}

/* ===== 毛玻璃效果 ===== */
.glass-effect {
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ===== 悬浮动画 ===== */
.hover-lift {
  transition: var(--transition);
}

.hover-lift:hover {
  transform: translateY(-3px);
}

.hover-glow:hover {
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.3);
}

/* ===== 滚动条美化 ===== */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--primary), var(--primary-light));
  border-radius: 5px;
  border: 2px solid var(--bg);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(var(--primary-dark), var(--primary));
}

/* ===== 暗色模式适配 ===== */
@media (prefers-color-scheme: dark) {
  .hero {
    background: linear-gradient(135deg, #1e1b4b, #4c1d95);
  }
  
  .app-section {
    background: linear-gradient(135deg, #4c1d95, #701a75);
  }
  
  footer {
    background: linear-gradient(135deg, #1e1b4b, #2e1065);
  }
  
  header {
    background: linear-gradient(135deg, #1e1b4b, #4c1d95);
  }
  
  .section-title {
    color: var(--text-dark);
  }
  
  .card-body .tag {
    background: rgba(139, 92, 246, 0.2);
    color: var(--text-muted-dark);
  }
  
  .rating-list .rank {
    background: var(--primary);
  }
}

/* ===== 打印样式 ===== */
@media print {
  header,
  footer,
  .hero,
  .app-section {
    display: none;
  }
  
  body {
    background: #fff;
    color: #000;
  }
  
  .card,
  .detail-box,
  .char-card,
  .comment-box,
  .side-card {
    box-shadow: none;
    border: 1px solid #ddd;
  }
}

/* ===== 无障碍 ===== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
```