```css
:root {
  --primary: #ff6b9d;
  --primary-dark: #e04a7c;
  --secondary: #7c4dff;
  --accent: #00d4ff;
  --bg-primary: #0f0c1f;
  --bg-secondary: #1a1530;
  --bg-card: rgba(255, 255, 255, 0.06);
  --bg-glass: rgba(255, 255, 255, 0.08);
  --text-primary: #f5f0ff;
  --text-secondary: #b8b0d0;
  --text-muted: #8a82a8;
  --border-color: rgba(255, 255, 255, 0.12);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-hover: 0 12px 48px rgba(124, 77, 255, 0.3);
  --gradient-primary: linear-gradient(135deg, #ff6b9d 0%, #7c4dff 50%, #00d4ff 100%);
  --gradient-banner: linear-gradient(120deg, rgba(255, 107, 157, 0.3), rgba(124, 77, 255, 0.3), rgba(0, 212, 255, 0.3));
  --radius-card: 16px;
  --radius-btn: 30px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

@media (prefers-color-scheme: light) {
  :root {
    --bg-primary: #f8f6ff;
    --bg-secondary: #ffffff;
    --bg-card: rgba(0, 0, 0, 0.04);
    --bg-glass: rgba(255, 255, 255, 0.7);
    --text-primary: #1a1530;
    --text-secondary: #4a4468;
    --text-muted: #6a6488;
    --border-color: rgba(0, 0, 0, 0.1);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 12px 48px rgba(124, 77, 255, 0.2);
  }
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  font-size: 16px;
}

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

/* 滚动条 */
::-webkit-scrollbar {
  width: 10px;
}

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

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary), var(--secondary));
  border-radius: 5px;
}

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

/* 标题 */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

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

h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

/* 链接 */
a {
  color: var(--secondary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary);
}

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

/* 按钮 */
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

/* 头部导航 */
header {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

nav {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo h1 {
  font-size: 1.5rem;
  margin: 0;
  white-space: nowrap;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

nav ul li a {
  display: inline-block;
  padding: 0.5rem 1rem;
  color: var(--text-secondary);
  font-weight: 500;
  border-radius: var(--radius-btn);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

nav ul li a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  border-radius: var(--radius-btn);
  opacity: 0;
  transform: scale(0.8);
  transition: var(--transition);
  z-index: -1;
}

nav ul li a:hover::before,
nav ul li a:focus::before {
  opacity: 1;
  transform: scale(1);
}

nav ul li a:hover,
nav ul li a:focus {
  color: #fff;
}

/* 主内容区 */
main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2rem;
}

main > section {
  min-width: 0;
}

/* 区域通用样式 */
section {
  margin-bottom: 3rem;
  scroll-margin-top: 100px;
}

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

.anime-grid article {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  animation: fadeInUp 0.6s ease backwards;
}

.anime-grid article:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}

.anime-grid article img {
  width: 100%;
  aspect-ratio: 5/7;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.anime-grid article:hover img {
  transform: scale(1.05);
}

.anime-grid article h3 {
  padding: 1rem 1rem 0.5rem;
  font-size: 1.1rem;
  position: relative;
}

.anime-grid article p {
  padding: 0 1rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0.25rem 0;
}

.anime-grid article p:last-child {
  padding-bottom: 1rem;
}

.anime-grid article p::before {
  content: attr(data-label);
  font-weight: 600;
  color: var(--text-muted);
  min-width: 60px;
}

/* 新番列表 */
.new-anime-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.new-anime-list article {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border-color);
  animation: fadeInUp 0.6s ease backwards;
}

.new-anime-list article:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--secondary);
}

.new-anime-list article img {
  width: 100%;
  aspect-ratio: 5/7;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.new-anime-list article:hover img {
  transform: scale(1.05);
}

.new-anime-list article h3 {
  padding: 1rem 1rem 0.5rem;
  font-size: 1.15rem;
  color: var(--primary);
}

.new-anime-list article p {
  padding: 0 1rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0.3rem 0;
}

.new-anime-list article p:last-child {
  padding-bottom: 1rem;
  line-height: 1.5;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* 详细介绍区 */
#detail article {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

#detail article img {
  border-radius: var(--radius-card);
  margin-bottom: 1.5rem;
  width: 100%;
  max-height: 400px;
  object-fit: cover;
}

#detail article h3 {
  color: var(--primary);
  font-size: 1.3rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1rem;
}

#detail article h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 70%;
  background: var(--gradient-primary);
  border-radius: 4px;
}

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

#detail article p:last-of-type {
  margin-bottom: 0;
}

/* 角色网格 */
.character-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.character-grid article {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  border: 1px solid var(--border-color);
  animation: fadeInUp 0.6s ease backwards;
}

.character-grid article:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent);
}

.character-grid article img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-bottom: 1px solid var(--border-color);
  transition: transform 0.5s ease;
}

.character-grid article:hover img {
  transform: scale(1.05);
}

.character-grid article h3 {
  padding: 1rem 1rem 0.5rem;
  color: var(--primary);
}

.character-grid article p {
  padding: 0.25rem 1rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.character-grid article p:last-child {
  padding-bottom: 1rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* 平台介绍 */
#platform article {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

#platform h3 {
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

#platform p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

#platform ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

#platform ul li {
  background: var(--bg-glass);
  padding: 0.75rem 1rem;
  border-radius: 12px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  position: relative;
  padding-left: 2.5rem;
}

#platform ul li:hover {
  background: var(--gradient-primary);
  color: #fff;
  transform: translateX(5px);
  border-color: transparent;
}

#platform ul li::before {
  content: '✓';
  position: absolute;
  left: 1rem;
  color: var(--primary);
  font-weight: bold;
}

#platform ul li:hover::before {
  color: #fff;
}

/* APP下载 */
#app article {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  text-align: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

#app h3 {
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

#app p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

#app ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

#app ul li {
  background: var(--bg-glass);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-btn);
  font-size: 0.9rem;
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

#app ul li:hover {
  background: var(--gradient-primary);
  color: #fff;
  border-color: transparent;
  transform: translateY(-3px);
}

.download-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.download-buttons button {
  background: var(--gradient-primary);
  color: #fff;
  padding: 0.75rem 2rem;
  border-radius: var(--radius-btn);
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(124, 77, 255, 0.3);
  position: relative;
  overflow: hidden;
}

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

.download-buttons button:hover::before {
  left: 100%;
}

.download-buttons button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(124, 77, 255, 0.4);
}

/* 用户评论 */
.comments-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.comments-list blockquote {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--primary);
  transition: var(--transition);
  animation: fadeInUp 0.6s ease backwards;
}

.comments-list blockquote:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-left-color: var(--accent);
}

.comments-list blockquote p {
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1.5rem;
}

.comments-list blockquote p::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -0.5rem;
  font-size: 3rem;
  color: var(--primary);
  opacity: 0.5;
  font-family: Georgia, serif;
}

.comments-list blockquote footer {
  color: var(--text-muted);
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.comments-list blockquote footer time {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* 侧边栏 */
aside {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

aside section {
  background: var(--bg-glass);
  border-radius: var(--radius-card);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition);
  animation: fadeInRight 0.6s ease backwards;
}

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

aside h2 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gradient-primary);
}

aside h2::after {
  display: none;
}

aside ol,
aside ul {
  list-style-position: inside;
  padding: 0;
}

aside ol li,
aside ul li {
  padding: 0.5rem 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  border-bottom: 1px dashed var(--border-color);
  transition: var(--transition);
  cursor: pointer;
}

aside ol li:last-child,
aside ul li:last-child {
  border-bottom: none;
}

aside ol li:hover,
aside ul li:hover {
  color: var(--primary);
  padding-left: 0.5rem;
  background: linear-gradient(90deg, var(--bg-glass), transparent);
  border-radius: 4px;
}

aside ol li::marker {
  color: var(--primary);
  font-weight: bold;
}

aside ul li::before {
  content: '▸ ';
  color: var(--primary);
}

/* 页脚 */
footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 3rem 2rem 2rem;
  margin-top: 4rem;
}

footer section {
  max-width: 1400px;
  margin: 0 auto 2rem;
}

footer section:first-child {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
}

footer h2 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

footer h2::after {
  width: 40px;
  height: 2px;
}

footer ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

footer ul li a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  transition: var(--transition);
}

footer ul li a:hover {
  color: var(--primary);
  background: var(--bg-glass);
}

footer section:last-child {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

footer section:last-child p {
  margin: 0.5rem 0;
}

footer section:last-child a {
  color: var(--text-muted);
  margin: 0 0.5rem;
}

footer section:last-child a:hover {
  color: var(--primary);
}

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

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

/* 滚动动画 */
.anime-grid article,
.new-anime-list article,
.character-grid article,
.comments-list blockquote,
aside section {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.anime-grid article:nth-child(2),
.new-anime-list article:nth-child(2),
.character-grid article:nth-child(2),
.comments-list blockquote:nth-child(2) {
  animation-delay: 0.1s;
}

.anime-grid article:nth-child(3),
.new-anime-list article:nth-child(3),
.character-grid article:nth-child(3),
.comments-list blockquote:nth-child(3) {
  animation-delay: 0.2s;
}

.anime-grid article:nth-child(4),
.new-anime-list article:nth-child(4),
.character-grid article:nth-child(4),
.comments-list blockquote:nth-child(4) {
  animation-delay: 0.3s;
}

.anime-grid article:nth-child(5),
.new-anime-list article:nth-child(5),
.character-grid article:nth-child(5),
.comments-list blockquote:nth-child(5) {
  animation-delay: 0.4s;
}

.anime-grid article:nth-child(6),
.new-anime-list article:nth-child(6),
.character-grid article:nth-child(6),
.comments-list blockquote:nth-child(6) {
  animation-delay: 0.5s;
}

.anime-grid article:nth-child(7),
.character-grid article:nth-child(7),
.comments-list blockquote:nth-child(7) {
  animation-delay: 0.6s;
}

.anime-grid article:nth-child(8),
.character-grid article:nth-child(8),
.comments-list blockquote:nth-child(8) {
  animation-delay: 0.7s;
}

.anime-grid article:nth-child(9),
.character-grid article:nth-child(9),
.comments-list blockquote:nth-child(9) {
  animation-delay: 0.8s;
}

.anime-grid article:nth-child(10),
.character-grid article:nth-child(10),
.comments-list blockquote:nth-child(10) {
  animation-delay: 0.9s;
}

.anime-grid article:nth-child(11),
.character-grid article:nth-child(11),
.comments-list blockquote:nth-child(11) {
  animation-delay: 1s;
}

.anime-grid article:nth-child(12),
.character-grid article:nth-child(12),
.comments-list blockquote:nth-child(12) {
  animation-delay: 1.1s;
}

.anime-grid article:nth-child(n+13) {
  animation-delay: 1.2s;
}

/* 响应式 */
@media (max-width: 1200px) {
  main {
    grid-template-columns: 1fr 280px;
  }

  .anime-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
}

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

  aside {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
  }

  nav {
    padding: 1rem;
  }

  nav ul {
    gap: 0;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 14px;
  }

  main {
    padding: 1rem;
  }

  nav {
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
  }

  nav ul {
    width: 100%;
    justify-content: center;
  }

  nav ul li a {
    padding: 0.4rem 0.75rem;
    font-size: 0.85rem;
  }

  .anime-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
  }

  .new-anime-list {
    grid-template-columns: 1fr;
  }

  .character-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }

  #detail article,
  #platform article,
  #app article {
    padding: 1.5rem;
  }

  .comments-list {
    grid-template-columns: 1fr;
  }

  .download-buttons {
    flex-direction: column;
    align-items: center;
  }

  .download-buttons button {
    width: 100%;
    max-width: 300px;
  }

  aside {
    grid-template-columns: 1fr;
  }

  footer {
    padding: 2rem 1rem 1rem;
  }

  footer section:first-child {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }
}

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

  .anime-grid article p {
    font-size: 0.75rem;
    padding: 0 0.75rem;
  }

  .anime-grid article h3 {
    padding: 0.75rem 0.75rem 0.25rem;
    font-size: 0.95rem;
  }

  .character-grid {
    grid-template-columns: 1fr;
  }

  #detail article,
  #platform article,
  #app article {
    padding: 1rem;
  }

  #platform ul {
    grid-template-columns: 1fr;
  }

  #app ul {
    flex-direction: column;
    align-items: center;
  }
}

/* 无障碍 */
@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(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* 选中文本 */
::selection {
  background: var(--gradient-primary);
  color: #fff;
  -webkit-text-fill-color: #fff;
}

/* 渐变背景装饰 */
body::before {
  content: '';
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 107, 157, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 70% 70%, rgba(124, 77, 255, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
  z-index: -1;
  pointer-events: none;
  animation: gradientShift 20s ease infinite alternate;
}

@keyframes gradientShift {
  0% {
    transform: rotate(0deg) scale(1);
  }
  100% {
    transform: rotate(5deg) scale(1.1);
  }
}

/* 卡片悬浮效果增强 */
.anime-grid article::after,
.new-anime-list article::after,
.character-grid article::after,
.comments-list blockquote::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: var(--radius-card);
  background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(124, 77, 255, 0.1), rgba(0, 212, 255, 0.1));
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.anime-grid article:hover::after,
.new-anime-list article:hover::after,
.character-grid article:hover::after,
.comments-list blockquote:hover::after {
  opacity: 1;
}
```