```css
/* 全局样式与变量 */
:root {
  --primary-bg: #F8F4FF;
  --card-bg: #FFFFFF;
  --dark-bg: #1A1A2E;
  --dark-bg-secondary: #2D2D44;
  --text-primary: #1A1A2E;
  --text-secondary: #2D2D44;
  --text-light: #F5F0FF;
  --accent-purple: #6B4CFF;
  --accent-purple-light: #A78BFA;
  --accent-orange: #FF6B35;
  --accent-blue: #4A6CF7;
  --border-radius: 12px;
  --border-radius-lg: 16px;
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.08);
  --transition-speed: 0.3s;
  --gradient-header: linear-gradient(135deg, #1A1A2E 0%, #2D2D44 100%);
  --gradient-detail: linear-gradient(135deg, #1A1A2E, #2D2D44);
  --gradient-download: linear-gradient(135deg, #2D2D44, #3B2A5E);
  --font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.3);
}

/* 暗色模式 */
@media (prefers-color-scheme: dark) {
  :root {
    --primary-bg: #12121A;
    --card-bg: #1E1E2E;
    --text-primary: #E0E0F0;
    --text-secondary: #B0B0C8;
    --text-light: #F5F0FF;
    --glass-bg: rgba(30, 30, 46, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.3);
  }
}

/* 基础重置与全局样式 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  background-color: var(--primary-bg);
  color: var(--text-primary);
  line-height: 1.6;
  transition: background-color 0.3s ease, color 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* 滚动动画 */
@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);
  }
}

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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* 滚动动画应用 */
section {
  animation: fadeInUp 0.8s ease-out both;
}

section:nth-child(2) {
  animation: fadeIn 1s ease-out both;
}

section:nth-child(3) {
  animation: slideInLeft 0.8s ease-out both;
}

section:nth-child(4) {
  animation: slideInRight 0.8s ease-out both;
}

/* 顶部导航 */
header {
  background: var(--gradient-header);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

header > div {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

header h1 {
  margin: 0;
  font-size: 28px;
  color: #FFFFFF;
  font-weight: 700;
  letter-spacing: 1px;
  transition: transform 0.3s ease;
}

header h1:hover {
  transform: scale(1.05);
}

header h1 span {
  color: var(--accent-purple-light);
  font-size: 16px;
  margin-left: 8px;
}

header nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

header nav a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

header nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--accent-purple-light);
  transition: width 0.3s ease;
}

header nav a:hover {
  color: var(--accent-purple-light);
  background: rgba(167, 139, 250, 0.1);
  transform: translateY(-2px);
}

header nav a:hover::before {
  width: 80%;
}

/* 主内容区 */
main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px;
}

/* 通用标题样式 */
section h2 {
  color: var(--text-primary);
  font-size: 28px;
  border-left: 5px solid var(--accent-purple);
  padding-left: 15px;
  margin-bottom: 25px;
  position: relative;
  transition: all 0.3s ease;
}

section h2:hover {
  transform: translateX(5px);
  border-left-color: var(--accent-orange);
}

/* 热门动漫网格 */
#hot > div {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 25px;
}

#hot article {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 0.6s ease-out both;
  animation-delay: calc(var(--index, 0) * 0.05s);
  position: relative;
  backdrop-filter: blur(5px);
  border: 1px solid var(--glass-border);
}

#hot article:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

#hot article img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

#hot article:hover img {
  transform: scale(1.1);
}

#hot article div {
  padding: 15px;
  position: relative;
  z-index: 1;
}

#hot article h3 {
  margin: 0 0 8px 0;
  color: var(--text-primary);
  font-size: 18px;
  font-weight: 600;
  transition: color 0.3s ease;
}

#hot article:hover h3 {
  color: var(--accent-purple);
}

#hot article p {
  margin: 4px 0;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.4;
}

#hot article p:last-of-type {
  margin: 8px 0 0 0;
  color: var(--accent-orange);
  font-weight: bold;
  font-size: 18px;
  transition: transform 0.3s ease;
}

#hot article:hover p:last-of-type {
  transform: scale(1.1);
}

/* 新番推荐 */
#new {
  margin-bottom: 50px;
  background: var(--card-bg);
  padding: 30px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
}

#new h2 {
  border-left-color: var(--accent-orange);
}

#new > div {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

#new article {
  display: flex;
  gap: 20px;
  background: var(--primary-bg);
  padding: 20px;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
  animation: scaleIn 0.5s ease-out both;
  animation-delay: calc(var(--index, 0) * 0.1s);
  border: 1px solid transparent;
}

#new article:hover {
  background: var(--card-bg);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
  border-color: var(--accent-purple);
}

#new article img {
  width: 120px;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

#new article:hover img {
  transform: scale(1.05);
}

#new article h3 {
  margin: 0 0 8px 0;
  color: var(--text-primary);
  font-size: 18px;
  font-weight: 600;
}

#new article p {
  margin: 4px 0;
  font-size: 14px;
  color: var(--text-secondary);
}

#new article p:last-of-type {
  margin: 8px 0 0 0;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* 动漫详细介绍 */
#detail {
  margin-bottom: 50px;
  background: var(--gradient-detail);
  padding: 40px;
  border-radius: var(--border-radius-lg);
  color: var(--text-light);
  animation: fadeIn 1s ease-out both;
  position: relative;
  overflow: hidden;
}

#detail::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

#detail h2 {
  color: #FFFFFF;
  border-left-color: var(--accent-purple-light);
}

#detail article {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

#detail article h3 {
  color: #FFFFFF;
  font-size: 22px;
  margin-top: 20px;
  position: relative;
  display: inline-block;
}

#detail article h3::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-purple-light);
  transition: width 0.3s ease;
}

#detail article h3:hover::after {
  width: 100%;
}

#detail article p {
  margin-bottom: 15px;
  text-indent: 2em;
}

#detail article p:last-of-type {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
  text-indent: 0;
}

#detail article span {
  background: var(--accent-purple);
  color: #FFFFFF;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
}

#detail article span:hover {
  background: var(--accent-purple-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(167, 139, 250, 0.3);
}

/* 角色介绍 */
#character h2 {
  border-left-color: var(--accent-blue);
}

#character > div {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
}

#character article {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease-out both;
  animation-delay: calc(var(--index, 0) * 0.05s);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(5px);
}

#character article:hover {
  transform: translateY(-8px) rotate(1deg);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-blue);
}

#character article img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  border: 3px solid var(--accent-purple);
}

#character article:hover img {
  transform: scale(1.1) rotate(5deg);
  border-color: var(--accent-orange);
}

#character article h3 {
  margin: 0 0 8px 0;
  color: var(--text-primary);
  font-size: 20px;
  font-weight: 600;
}

#character article p {
  margin: 4px 0;
  font-size: 14px;
  color: var(--text-secondary);
}

#character article p:last-of-type {
  margin: 8px 0 0 0;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  font-style: italic;
}

/* 平台介绍 */
#about {
  margin-bottom: 50px;
  background: var(--card-bg);
  padding: 40px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
}

#about article {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.8;
}

#about article p {
  margin-bottom: 15px;
  text-indent: 2em;
}

#about article b {
  color: var(--accent-purple);
  font-weight: 600;
}

/* APP下载 */
#download {
  margin-bottom: 50px;
  background: var(--gradient-download);
  padding: 50px;
  border-radius: var(--border-radius-lg);
  text-align: center;
  color: #FFFFFF;
  animation: scaleIn 0.8s ease-out both;
  position: relative;
  overflow: hidden;
}

#download::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.2) 0%, transparent 50%);
  animation: rotate 20s linear infinite;
}

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

#download h2 {
  color: #FFFFFF;
  font-size: 32px;
  margin-bottom: 15px;
  border-left: none;
  padding-left: 0;
  position: relative;
  z-index: 1;
}

#download p {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

#download p:last-of-type {
  font-size: 16px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 30px;
  text-indent: 0;
}

#download div {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

#download a {
  background: var(--accent-orange);
  color: #FFFFFF;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

#download a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

#download a:hover::before {
  width: 300px;
  height: 300px;
}

#download a:nth-child(2) {
  background: var(--accent-purple);
}

#download a:nth-child(3) {
  background: var(--accent-blue);
}

#download a:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* 用户评论 */
#comments h2 {
  border-left-color: var(--accent-orange);
}

#comments > div {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

#comments article {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease-out both;
  animation-delay: calc(var(--index, 0) * 0.03s);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(5px);
}

#comments article:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-orange);
}

#comments article div {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

#comments article img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  transition: all 0.3s ease;
}

#comments article:hover img {
  transform: scale(1.1);
  border: 2px solid var(--accent-purple);
}

#comments article div div p:first-child {
  margin: 0;
  font-weight: bold;
  color: var(--text-primary);
}

#comments article div div p:last-child {
  margin: 0;
  font-size: 12px;
  color: var(--text-secondary);
}

#comments article > p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* 侧边栏 */
aside {
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

aside section {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease-out both;
  animation-delay: calc(var(--index, 0) * 0.05s);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(5px);
}

aside section:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

aside h3 {
  color: var(--text-primary);
  font-size: 20px;
  border-left: 4px solid var(--accent-orange);
  padding-left: 10px;
  margin-top: 0;
  transition: border-color 0.3s ease;
}

aside section:nth-child(2) h3 {
  border-left-color: var(--accent-blue);
}

aside section:nth-child(3) h3 {
  border-left-color: var(--accent-purple);
}

aside section:nth-child(4) h3 {
  border-left-color: var(--accent-orange);
}

aside section:nth-child(5) h3 {
  border-left-color: var(--accent-blue);
}

aside section:nth-child(6) h3 {
  border-left-color: var(--accent-purple);
}

aside ol,
aside ul {
  padding-left: 20px;
  color: var(--text-secondary);
}

aside li {
  margin: 8px 0;
  transition: all 0.3s ease;
  position: relative;
  padding: 2px 0;
}

aside li:hover {
  color: var(--accent-purple);
  transform: translateX(5px);
}

aside ul {
  list-style: none;
  padding-left: 0;
}

/* 底部 */
footer {
  background: var(--dark-bg);
  color: var(--text-light);
  padding: 40px 20px;
  margin-top: 50px;
  backdrop-filter: blur(10px);
}

footer > div:first-child {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

footer h4 {
  color: #FFFFFF;
  margin-bottom: 15px;
  font-size: 18px;
  position: relative;
  display: inline-block;
}

footer h4::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent-purple);
  transition: width 0.3s ease;
}

footer h4:hover::after {
  width: 100%;
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer li {
  margin: 6px 0;
}

footer a {
  color: var(--accent-purple-light);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding: 2px 0;
}

footer a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-purple-light);
  transition: width 0.3s ease;
}

footer a:hover {
  color: #FFFFFF;
  padding-left: 5px;
}

footer a:hover::after {
  width: 100%;
}

footer p {
  color: var(--text-light);
  font-size: 14px;
  margin: 6px 0;
  transition: color 0.3s ease;
}

footer p:hover {
  color: var(--accent-purple-light);
}

footer > div:last-child {
  max-width: 1280px;
  margin: 30px auto 0;
  border-top: 1px solid var(--dark-bg-secondary);
  padding-top: 20px;
  text-align: center;
}

footer > div:last-child p {
  margin: 5px 0;
  font-size: 14px;
  color: var(--text-light);
  opacity: 0.8;
}

/* 响应式布局 */
@media (max-width: 768px) {
  header {
    padding: 10px 0;
  }

  header > div {
    padding: 0 10px;
    flex-direction: column;
    gap: 10px;
  }

  header h1 {
    font-size: 24px;
  }

  header nav {
    gap: 10px;
    justify-content: center;
  }

  header nav a {
    font-size: 14px;
    padding: 4px 8px;
  }

  main {
    padding: 15px;
  }

  section {
    padding: 15px;
    margin-bottom: 30px;
  }

  section h2 {
    font-size: 24px;
  }

  #hot > div {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
  }

  #hot article img {
    height: 180px;
  }

  #hot article div {
    padding: 10px;
  }

  #hot article h3 {
    font-size: 16px;
  }

  #hot article p {
    font-size: 12px;
  }

  #hot article p:last-of-type {
    font-size: 16px;
  }

  #new {
    padding: 20px;
  }

  #new > div {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  #new article {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  #new article img {
    width: 150px;
    height: 220px;
  }

  #detail {
    padding: 20px;
  }

  #detail article {
    font-size: 14px;
  }

  #detail article h3 {
    font-size: 18px;
  }

  #character > div {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
  }

  #character article {
    padding: 15px;
  }

  #character article img {
    width: 100px;
    height: 100px;
  }

  #character article h3 {
    font-size: 18px;
  }

  #character article p {
    font-size: 13px;
  }

  #about {
    padding: 20px;
  }

  #about article {
    font-size: 14px;
  }

  #download {
    padding: 30px 20px;
  }

  #download h2 {
    font-size: 28px;
  }

  #download p {
    font-size: 16px;
  }

  #download a {
    padding: 12px 30px;
    font-size: 16px;
  }

  #comments > div {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  aside {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  footer {
    padding: 30px 15px;
  }

  footer > div:first-child {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  header h1 {
    font-size: 20px;
  }

  header h1 span {
    font-size: 14px;
  }

  header nav a {
    font-size: 12px;
    padding: 3px 6px;
  }

  section h2 {
    font-size: 20px;
  }

  #hot > div {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 10px;
  }

  #hot article img {
    height: 150px;
  }

  #hot article div {
    padding: 8px;
  }

  #hot article h3 {
    font-size: 14px;
  }

  #hot article p {
    font-size: 11px;
  }

  #hot article p:last-of-type {
    font-size: 14px;
  }

  #new article {
    padding: 15px;
  }

  #new article img {
    width: 120px;
    height: 180px;
  }

  #new article h3 {
    font-size: 16px;
  }

  #new article p {
    font-size: 13px;
  }

  #detail {
    padding: 15px;
  }

  #detail article h3 {
    font-size: 16px;
  }

  #character > div {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  #character article {
    padding: 10px;
  }

  #character article img {
    width: 80px;
    height: 80px;
  }

  #character article h3 {
    font-size: 16px;
  }

  #character article p {
    font-size: 12px;
  }

  #comments article {
    padding: 15px;
  }

  #download {
    padding: 20px 15px;
  }

  #download h2 {
    font-size: 24px;
  }

  #download p {
    font-size: 14px;
  }

  #download a {
    padding: 10px 20px;
    font-size: 14px;
  }
}

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

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

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

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

/* 选中文本样式 */
::selection {
  background: var(--accent-purple);
  color: #FFFFFF;
}

/* 焦点样式 */
a:focus,
button:focus {
  outline: 2px solid var(--accent-purple);
  outline-offset: 2px;
}

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