```css
/* ============================================
   比熊动漫 - 完整样式表
   风格：渐变紫罗兰 + 毛玻璃 + 暗色模式
   ============================================ */

/* ---------- 基础重置与变量 ---------- */
:root {
  --primary: #6B4CFF;
  --primary-dark: #4A2FBF;
  --primary-light: #B79CFF;
  --bg: #F8F4FF;
  --bg-card: #FFFFFF;
  --text: #1A1A2E;
  --text-secondary: #2D2D44;
  --text-muted: #4A4A6A;
  --border: #E0D4FF;
  --shadow: rgba(107, 76, 255, 0.15);
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.3);
  --radius: 16px;
  --radius-lg: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-sans: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
}

/* 暗色模式变量 */
[data-theme="dark"] {
  --bg: #0F0E17;
  --bg-card: #1A1A2E;
  --text: #F0E9FF;
  --text-secondary: #D9C9FF;
  --text-muted: #B79CFF;
  --border: #3B2A5E;
  --shadow: rgba(0, 0, 0, 0.3);
  --glass-bg: rgba(26, 26, 46, 0.7);
  --glass-border: rgba(107, 76, 255, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  transition: background 0.3s ease, color 0.3s ease;
  position: relative;
  overflow-x: hidden;
}

/* 渐变背景装饰 */
body::before {
  content: '';
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 20% 30%, rgba(107, 76, 255, 0.12) 0%, transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(183, 156, 255, 0.1) 0%, transparent 40%);
  pointer-events: none;
  z-index: -1;
  animation: bgFloat 20s ease-in-out infinite alternate;
}

@keyframes bgFloat {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(-2%, 2%) rotate(2deg); }
}

/* ---------- 排版 ---------- */
h1, h2, h3 {
  color: var(--text);
  font-weight: 700;
  line-height: 1.3;
}

h1 {
  font-size: clamp(2rem, 5vw, 2.5rem);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { filter: hue-rotate(0deg); }
  50% { filter: hue-rotate(10deg); }
}

h2 {
  font-size: clamp(1.5rem, 3vw, 1.75rem);
  margin: 2rem 0 1rem;
  padding-left: 1rem;
  border-left: 6px solid var(--primary);
  position: relative;
  overflow: hidden;
}

h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), transparent);
  border-radius: 2px;
}

h3 {
  font-size: 1.35rem;
  margin: 1.5rem 0 0.75rem;
}

a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--border), var(--primary-light));
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px var(--shadow);
}

/* ---------- 容器与布局 ---------- */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 2.5rem;
  margin: 2rem 0;
  animation: fadeInUp 0.6s ease both;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

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

/* ---------- 头部导航 ---------- */
.site-header {
  background: rgba(26, 26, 46, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(107, 76, 255, 0.2);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  animation: slideDown 0.5s ease both;
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-area h1 {
  color: #FFFFFF;
  font-size: 2.2rem;
  letter-spacing: 1px;
  margin: 0;
  background: linear-gradient(135deg, #B79CFF, #FFFFFF, #6B4CFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
  from { filter: drop-shadow(0 0 10px rgba(107, 76, 255, 0.3)); }
  to { filter: drop-shadow(0 0 20px rgba(107, 76, 255, 0.6)); }
}

.logo-area span {
  color: #F5F0FF;
  font-size: 1rem;
  opacity: 0.9;
  font-weight: 300;
}

.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  list-style: none;
}

.main-nav a {
  color: #FFFFFF;
  font-weight: 500;
  padding: 0.3rem 0;
  position: relative;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.main-nav a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-light), var(--primary));
  transition: width 0.3s ease;
}

.main-nav a:hover {
  border-bottom-color: transparent;
  color: var(--primary-light);
  text-decoration: none;
}

.main-nav a:hover::before {
  width: 100%;
}

/* ---------- 卡片网格 ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
  padding: 1rem 0;
}

@media (max-width: 480px) {
  .card-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
  }
}

/* ---------- 动漫卡片 ---------- */
.anime-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.5s ease both;
  animation-delay: calc(var(--card-index, 0) * 0.05s);
}

.anime-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.anime-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px var(--shadow);
  border-color: var(--primary-light);
}

.anime-card:hover::before {
  left: 100%;
}

.anime-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 0.8rem;
}

@media (max-width: 480px) {
  .anime-card img {
    height: 180px;
  }
}

.anime-card h3 {
  font-size: 1.15rem;
  margin: 0.5rem 0 0.3rem;
  color: var(--text);
  font-weight: 700;
}

.anime-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 0.15rem 0;
  line-height: 1.4;
}

.anime-card p:last-of-type {
  margin-bottom: 0.5rem;
}

.badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #FFFFFF;
  padding: 0.25rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(107, 76, 255, 0.3);
  transition: all 0.3s ease;
}

.badge:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(107, 76, 255, 0.4);
}

/* ---------- 侧边栏 ---------- */
.sidebar {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 100px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}

.sidebar::-webkit-scrollbar {
  width: 6px;
}

.sidebar::-webkit-scrollbar-thumb {
  background: var(--primary-light);
  border-radius: 3px;
}

.sidebar h2 {
  border-left: none;
  padding-left: 0;
  font-size: 1.4rem;
  border-bottom: 3px solid var(--primary);
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}

.sidebar ul {
  list-style: none;
}

.sidebar li {
  padding: 0.7rem 0;
  border-bottom: 1px dashed var(--border);
  color: var(--text);
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.sidebar li:hover {
  padding-left: 8px;
  color: var(--primary);
}

.sidebar li strong {
  color: var(--primary);
  font-weight: 700;
  margin-right: 0.3rem;
}

.sidebar li span {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.stats {
  background: linear-gradient(135deg, rgba(107, 76, 255, 0.1), rgba(183, 156, 255, 0.1));
  padding: 1.2rem;
  border-radius: var(--radius);
  margin: 1.5rem 0;
  border: 1px solid var(--border);
}

.stats p {
  display: flex;
  justify-content: space-between;
  font-weight: 500;
  margin: 0.5rem 0;
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(107, 76, 255, 0.1);
}

.stats p:last-child {
  border-bottom: none;
}

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

.stats p strong {
  color: var(--primary);
  font-size: 1.1rem;
}

/* ---------- 评论 ---------- */
.comment-item {
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  padding: 1.2rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  animation: fadeInUp 0.4s ease both;
}

.comment-item:hover {
  transform: translateX(8px);
  border-color: var(--primary-light);
  box-shadow: 0 4px 16px var(--shadow);
}

.comment-item strong {
  color: var(--text);
  font-weight: 700;
}

.comment-item span {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-left: 0.5rem;
}

.comment-item p {
  margin-top: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ---------- 按钮组 ---------- */
.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.btn {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #FFFFFF;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-block;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(107, 76, 255, 0.3);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #FFFFFF;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(107, 76, 255, 0.4);
}

.btn:hover::before {
  left: 100%;
}

.btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(107, 76, 255, 0.3);
}

/* ---------- 底部 ---------- */
.site-footer {
  background: linear-gradient(135deg, #1A1A2E 0%, #2D2D44 100%);
  color: #F5F0FF;
  padding: 3rem 0;
  margin-top: 4rem;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(107, 76, 255, 0.1), transparent 70%);
  animation: footerGlow 6s ease-in-out infinite alternate;
}

@keyframes footerGlow {
  from { opacity: 0.5; }
  to { opacity: 1; }
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.footer-links a {
  color: var(--primary-light);
  font-size: 0.9rem;
  transition: all 0.3s ease;
  padding: 0.3rem 0;
  position: relative;
}

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

.footer-links a:hover {
  color: #FFFFFF;
  text-decoration: none;
}

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

.copyright {
  border-top: 1px solid rgba(107, 76, 255, 0.2);
  margin-top: 2rem;
  padding-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}

/* ---------- 角色卡片 ---------- */
.role-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.5rem;
  padding: 1rem 0;
}

.role-item {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: all var(--transition);
  animation: fadeInUp 0.5s ease both;
}

.role-item:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 8px 24px var(--shadow);
  border-color: var(--primary);
}

.role-item img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 3px solid var(--primary-light);
  box-shadow: 0 4px 12px rgba(107, 76, 255, 0.2);
  transition: all 0.3s ease;
}

.role-item:hover img {
  transform: scale(1.08);
  border-color: var(--primary);
  box-shadow: 0 6px 20px rgba(107, 76, 255, 0.3);
}

.role-item h3 {
  font-size: 1.1rem;
  margin: 0.5rem 0;
  color: var(--text);
}

.role-item p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 0.2rem 0;
  line-height: 1.4;
}

/* ---------- 详情区域 ---------- */
.detail-box {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin: 2.5rem 0;
  border-left: 8px solid var(--primary);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.detail-box::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(107, 76, 255, 0.1), transparent 70%);
  pointer-events: none;
}

.detail-box img {
  max-width: 100%;
  border-radius: var(--radius);
  margin: 1.5rem 0;
  box-shadow: 0 4px 20px var(--shadow);
}

.detail-box p {
  margin-bottom: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.detail-box .label {
  color: var(--primary);
  font-weight: 700;
  margin-right: 0.5rem;
  font-size: 0.95rem;
  display: inline-block;
  min-width: 80px;
}

/* ---------- 平台介绍 ---------- */
section > p:not(.detail-box p) {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  padding: 1.8rem;
  border-radius: var(--radius);
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.8;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

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

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

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  border-radius: 4px;
}

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

/* ---------- 暗色模式切换按钮 ---------- */
.theme-toggle {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: #FFFFFF;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(107, 76, 255, 0.3);
  transition: all 0.3s ease;
  z-index: 1000;
}

.theme-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(107, 76, 255, 0.4);
}

/* ---------- 响应式优化 ---------- */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    text-align: center;
  }

  .logo-area {
    flex-direction: column;
    gap: 4px;
  }

  .main-nav ul {
    justify-content: center;
    gap: 0.8rem;
  }

  .main-nav a {
    font-size: 0.9rem;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  .detail-box {
    padding: 1.5rem;
  }

  .btn-group {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    text-align: center;
  }

  .footer-links {
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }

  .card-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
  }

  .anime-card {
    padding: 0.6rem;
  }

  .anime-card img {
    height: 140px;
  }

  .anime-card h3 {
    font-size: 0.95rem;
  }

  .anime-card p {
    font-size: 0.75rem;
  }

  .badge {
    font-size: 0.65rem;
    padding: 0.15rem 0.5rem;
  }

  .role-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
  }

  .role-item {
    padding: 1rem 0.5rem;
  }

  .role-item img {
    width: 80px;
    height: 80px;
  }

  .role-item h3 {
    font-size: 0.9rem;
  }

  .role-item p {
    font-size: 0.7rem;
  }

  .detail-box {
    padding: 1.2rem;
    border-left-width: 4px;
  }

  .detail-box .label {
    display: block;
    margin-bottom: 0.2rem;
  }

  .stats {
    padding: 1rem;
  }

  .stats p {
    font-size: 0.85rem;
  }
}

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

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

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

/* 滚动触发动画 */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* 加载动画 */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* 减少动画偏好 */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* 暗色模式支持（自动检测） */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #0F0E17;
    --bg-card: #1A1A2E;
    --text: #F0E9FF;
    --text-secondary: #D9C9FF;
    --text-muted: #B79CFF;
    --border: #3B2A5E;
    --shadow: rgba(0, 0, 0, 0.3);
    --glass-bg: rgba(26, 26, 46, 0.7);
    --glass-border: rgba(107, 76, 255, 0.2);
  }
}

/* 打印样式 */
@media print {
  .site-header,
  .site-footer,
  .btn-group,
  .theme-toggle,
  .sidebar {
    display: none !important;
  }

  body {
    background: #FFFFFF;
    color: #000000;
  }

  .anime-card,
  .role-item,
  .detail-box {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #CCCCCC;
  }
}

/* 无障碍访问 */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}

/* 工具类 */
.text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass-morphism {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
}

.shadow-glow {
  box-shadow: 0 0 20px rgba(107, 76, 255, 0.3);
}

.rounded-full {
  border-radius: 9999px;
}

.transition-all {
  transition: all 0.3s ease;
}
```