```css
/* ===== 蜜芽影院全局样式 ===== */
:root {
  /* 主色板 - 现代影视风格 */
  --bg-primary: #f8fafc;
  --bg-card: #ffffff;
  --bg-footer: #0f172a;
  --bg-hero: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  --text-primary: #1e293b;
  --text-secondary: #475569;
  --text-heading: #0f172a;
  --text-on-dark: #f1f5f9;
  --text-on-dark-dim: #cbd5e1;
  --brand: #e11d48;
  --brand-dark: #be123c;
  --brand-glow: rgba(225, 29, 72, 0.3);
  --border: #e2e8f0;
  --shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.08);
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.3);
  --radius-lg: 20px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] {
  --bg-primary: #0b1120;
  --bg-card: #111a2e;
  --bg-footer: #020617;
  --text-primary: #e2e8f0;
  --text-secondary: #cbd5e1;
  --text-heading: #f8fafc;
  --text-on-dark: #f8fafc;
  --text-on-dark-dim: #94a3b8;
  --border: #1e293b;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.8);
  --glass-bg: rgba(17, 26, 46, 0.7);
  --glass-border: rgba(255, 255, 255, 0.1);
}

/* ===== 基础重置 ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 16px;
  transition: background var(--transition), color var(--transition);
  overflow-x: hidden;
}

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

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

::-webkit-scrollbar-thumb {
  background: var(--brand);
  border-radius: 10px;
  border: 2px solid var(--bg-primary);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--brand-dark);
}

/* ===== 排版 ===== */
h1, h2, h3, h4 {
  color: var(--text-heading);
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.6rem, 4vw, 2rem);
  margin: 2.5rem 0 1.2rem;
  border-left: 6px solid var(--brand);
  padding-left: 1.2rem;
  position: relative;
}

h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 60px;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
}

h3 {
  font-size: 1.3rem;
  margin: 1.5rem 0 0.8rem;
}

h4 {
  font-size: 1.1rem;
  margin: 1rem 0 0.5rem;
  color: var(--text-secondary);
  font-weight: 500;
}

p {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-weight: 400;
  line-height: 1.8;
}

a {
  color: var(--brand-dark);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
  font-weight: 500;
}

a:hover {
  color: var(--brand);
  border-bottom-color: var(--brand);
}

/* ===== 容器 ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* ===== 头部导航 ===== */
.header {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: all var(--transition);
}

.nav-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 1rem 0;
  gap: 1rem;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: -0.03em;
  text-decoration: none;
  border: none;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
  border: none;
}

.logo span {
  color: var(--brand);
  position: relative;
}

.logo span::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--brand);
  border-radius: 3px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.logo:hover span::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--text-primary);
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  border: none;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.nav-links a:hover {
  color: var(--brand);
  border: none;
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.theme-toggle {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 0.5rem 1.2rem;
  border-radius: 30px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.theme-toggle:hover {
  background: var(--brand);
  color: #ffffff;
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--brand-glow);
}

/* ===== Hero 区域 ===== */
.hero {
  background: var(--bg-hero);
  padding: 4rem 0;
  margin-bottom: 2rem;
  border-radius: 0 0 30px 30px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle, var(--brand-glow) 0%, transparent 70%);
  animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% { opacity: 0.3; transform: scale(0.8); }
  100% { opacity: 0.6; transform: scale(1.2); }
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: #ffffff;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease;
}

.hero p {
  color: #cbd5e1;
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 800px;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero .badge {
  background: var(--brand);
  color: #fff;
  padding: 0.4rem 1.2rem;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 1.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  animation: fadeInUp 0.8s ease;
  box-shadow: 0 4px 12px var(--brand-glow);
}

.hero .btn {
  background: #ffffff;
  color: #0f172a;
  font-weight: 700;
  padding: 0.8rem 2rem;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  display: inline-block;
  transition: all var(--transition);
  animation: fadeInUp 0.8s ease 0.4s both;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.hero .btn:hover {
  background: #e2e8f0;
  color: #0f172a;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

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

/* ===== 通用区块 ===== */
.section {
  padding: 3rem 0;
  position: relative;
}

/* ===== 卡片网格 ===== */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

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

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

.card:hover::before {
  transform: scaleX(1);
}

.card h3 {
  color: var(--text-heading);
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

.card p {
  color: var(--text-primary);
  font-size: 0.95rem;
}

/* ===== 按钮 ===== */
.btn {
  background: var(--brand);
  color: #fff;
  padding: 0.8rem 2rem;
  border-radius: 40px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-block;
  transition: all var(--transition);
  text-decoration: none;
  box-shadow: 0 4px 12px var(--brand-glow);
}

.btn:hover {
  background: var(--brand-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px var(--brand-glow);
  border: none;
}

/* ===== 文章列表 ===== */
.article-list article {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1.8rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.2rem;
  border: 1px solid var(--glass-border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.article-list article:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--brand);
}

.article-list h3 {
  margin-bottom: 0.3rem;
  font-size: 1.1rem;
}

.article-list .meta {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.article-list .meta::before {
  content: '📅';
  font-size: 0.8rem;
}

.article-list a {
  color: var(--brand);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  border: none;
}

.article-list a::after {
  content: '→';
  transition: transform 0.3s ease;
}

.article-list a:hover::after {
  transform: translateX(5px);
}

/* ===== FAQ样式 ===== */
.faq-item {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  padding: 1.5rem 2rem;
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  transition: all var(--transition);
}

.faq-item:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--text-heading);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.05rem;
  transition: color 0.3s ease;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--brand);
  transition: transform 0.3s ease;
  font-weight: 300;
}

.faq-item[open] summary {
  color: var(--brand);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  color: var(--text-primary);
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.95rem;
}

/* ===== HowTo 教程 ===== */
.howto-box {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: all var(--transition);
}

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

.howto-box ol {
  padding-left: 1.5rem;
  margin: 1.5rem 0;
  counter-reset: howto-counter;
}

.howto-box ol li {
  margin-bottom: 1rem;
  color: var(--text-primary);
  position: relative;
  padding-left: 2.5rem;
  counter-increment: howto-counter;
  line-height: 1.8;
}

.howto-box ol li::before {
  content: counter(howto-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 1.8rem;
  height: 1.8rem;
  background: var(--brand);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 2px 8px var(--brand-glow);
}

.howto-box p {
  color: var(--text-primary);
  line-height: 1.8;
}

.howto-box strong {
  color: var(--brand);
  font-weight: 600;
}

/* ===== 表格 ===== */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
}

th, td {
  padding: 1.2rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  color: var(--text-primary);
  font-size: 0.95rem;
}

th {
  background: var(--bg-primary);
  color: var(--text-heading);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

tr:hover {
  background: var(--bg-primary);
}

tr:last-child td {
  border-bottom: none;
}

/* ===== 引用块 ===== */
blockquote {
  background: var(--bg-primary);
  border-left: 4px solid var(--brand);
  padding: 1.2rem 1.8rem;
  color: var(--text-primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.5rem 0;
  font-style: italic;
}

/* ===== 页脚 ===== */
.footer {
  background: var(--bg-footer);
  color: var(--text-on-dark);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--brand-dark), var(--brand));
  background-size: 200% 100%;
  animation: footerGradient 4s linear infinite;
}

@keyframes footerGradient {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.footer a {
  color: var(--text-on-dark-dim);
  border: none;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer a:hover {
  color: #ffffff;
  padding-left: 5px;
  border: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer h4 {
  color: #ffffff;
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
  position: relative;
  padding-bottom: 0.8rem;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
}

.footer p, .footer li {
  color: var(--text-on-dark-dim);
  font-size: 0.95rem;
  line-height: 1.8;
}

.footer ul {
  list-style: none;
}

.footer li {
  margin-bottom: 0.6rem;
}

.footer li a {
  display: inline-block;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: var(--text-on-dark-dim);
  font-size: 0.9rem;
}

.copyright p {
  color: var(--text-on-dark-dim);
  margin-bottom: 0.5rem;
}

/* ===== 滚动回到顶部 ===== */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--brand);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  cursor: pointer;
  box-shadow: 0 4px 12px var(--brand-glow);
  border: none;
  z-index: 99;
  transition: all var(--transition);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--brand-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px var(--brand-glow);
}

/* ===== 辅助工具类 ===== */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.text-secondary {
  color: var(--text-secondary);
}

.svg-icon {
  width: 48px;
  height: 48px;
  fill: var(--brand);
  display: inline-block;
  margin-right: 0.5rem;
  vertical-align: middle;
  transition: transform 0.3s ease;
}

.svg-icon:hover {
  transform: scale(1.1);
}

/* ===== 响应式设计 ===== */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
  
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .grid-4 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .nav-links {
    display: none;
  }
  
  .mobile-menu {
    display: block;
  }
  
  .hero {
    padding: 3rem 0;
    border-radius: 0 0 20px 20px;
  }
  
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .card {
    padding: 1.5rem;
  }
  
  .section {
    padding: 2rem 0;
  }
  
  .scroll-top {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 15px;
  }
  
  h1 {
    font-size: 1.6rem;
  }
  
  h2 {
    font-size: 1.4rem;
  }
  
  .hero .badge {
    font-size: 0.8rem;
  }
  
  .howto-box {
    padding: 1.5rem;
  }
  
  .faq-item {
    padding: 1.2rem 1.5rem;
  }
  
  th, td {
    padding: 0.8rem;
    font-size: 0.85rem;
  }
}

/* ===== 移动菜单 ===== */
.mobile-menu {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 2rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.3s ease;
}

.mobile-menu:hover {
  color: var(--brand);
}

/* ===== 暗色模式调整 ===== */
[data-theme="dark"] .card {
  background: var(--glass-bg);
  border-color: var(--glass-border);
}

[data-theme="dark"] .hero {
  background: linear-gradient(135deg, #020617 0%, #0f172a 100%);
}

[data-theme="dark"] .hero p {
  color: #94a3b8;
}

[data-theme="dark"] .footer {
  background: #020617;
}

[data-theme="dark"] .footer h4 {
  color: #f8fafc;
}

/* ===== 打印样式 ===== */
@media print {
  .header,
  .footer,
  .scroll-top,
  .theme-toggle,
  .mobile-menu {
    display: none !important;
  }
  
  body {
    background: #ffffff;
    color: #000000;
  }
  
  .card,
  .faq-item,
  .howto-box {
    background: #ffffff;
    border: 1px solid #ddd;
    box-shadow: none;
  }
  
  a {
    color: #000000;
    text-decoration: underline;
  }
}

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

:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 2px;
  border-radius: 4px;
}

::selection {
  background: var(--brand);
  color: #ffffff;
}

/* ===== 工具类 ===== */
.text-center {
  text-align: center;
}

.mt-2 {
  margin-top: 2rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.hidden {
  display: none !important;
}

/* ===== 滚动动画 ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== 渐变边框 ===== */
.gradient-border {
  border: 2px solid transparent;
  background-image: linear-gradient(var(--bg-card), var(--bg-card)), 
    linear-gradient(135deg, var(--brand), var(--brand-dark));
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

/* ===== 悬停缩放 ===== */
.hover-scale {
  transition: transform 0.3s ease;
}

.hover-scale:hover {
  transform: scale(1.02);
}

/* ===== 图片占位样式 ===== */
.img-placeholder {
  background: linear-gradient(45deg, var(--bg-primary), var(--border));
  border-radius: var(--radius-sm);
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* ===== 标签样式 ===== */
.tag {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin: 0.2rem;
  transition: all 0.3s ease;
}

.tag:hover {
  background: var(--brand);
  color: #ffffff;
  border-color: var(--brand);
}

/* ===== 分割线 ===== */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 2rem 0;
  border: none;
}

/* ===== 徽章 ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: var(--brand);
  color: #ffffff;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 2px 8px var(--brand-glow);
}
```