```css
:root {
  --primary: #6B4CFF;
  --primary-light: #B794F6;
  --primary-dark: #4A2DBD;
  --bg: #F8F4FF;
  --bg-card: #FFFFFF;
  --text: #1A1A2E;
  --text-secondary: #2D2D44;
  --text-muted: #6B7280;
  --border: #E4D9FF;
  --border-light: #F0E8FF;
  --shadow: 0 8px 20px rgba(26, 26, 46, 0.08);
  --shadow-hover: 0 12px 28px rgba(26, 26, 46, 0.15);
  --radius: 20px;
  --radius-sm: 16px;
  --radius-xs: 12px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --navbar-bg: rgba(26, 26, 46, 0.92);
  --footer-bg: #1A1A2E;
  --footer-text: #F5F0FF;
  --footer-link: #B9A6FF;
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.3);
  --gradient-text: linear-gradient(135deg, #B794F6, #7F9CF5);
  --gradient-bg: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-accent: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --code-bg: #f8f9fa;
  --scrollbar-thumb: #c4b5fd;
  --scrollbar-track: #f0e8ff;
  --nav-link: #F5F0FF;
  --nav-link-hover: #FFFFFF;
  --nav-border-hover: #B794F6;
  --badge-bg: #6B4CFF;
  --badge-text: #FFFFFF;
  --rating-bg: #E9DFFF;
  --rating-text: #1A1A2E;
  --sidebar-title-border: #E4D9FF;
  --sidebar-item-border: #F0E8FF;
  --aside-stats-bg: #1A1A2E;
  --aside-stats-text: #FFFFFF;
  --aside-stats-subtext: #F5F0FF;
  --intro-highlight-bg: #EDE4FF;
  --intro-highlight-text: #1A1A2E;
  --comment-bg: #F8F4FF;
  --comment-time: #2D2D44;
  --btn-primary-bg: #6B4CFF;
  --btn-primary-hover: #4A2DBD;
  --btn-primary-text: #FFFFFF;
  --card-hover-border: #B794F6;
  --card-hover-shadow: 0 16px 32px rgba(107, 76, 255, 0.15);
  --img-bg: #E0D4FF;
  --role-card-bg: #FFFFFF;
  --role-card-border: #E4D9FF;
  --anime-card-bg: #F8F4FF;
  --anime-card-border: #E4D9FF;
  --anime-card-hover-bg: #FFFFFF;
  --anime-card-hover-border: #B794F6;
  --anime-card-hover-shadow: 0 12px 24px rgba(107, 76, 255, 0.15);
}

/* 暗色模式 */
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0f0f1a;
    --bg-card: #1a1a2e;
    --text: #e0e0e0;
    --text-secondary: #c0c0c0;
    --text-muted: #a0a0a0;
    --border: #2d2d44;
    --border-light: #3b3b5e;
    --shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 12px 28px rgba(0, 0, 0, 0.5);
    --navbar-bg: rgba(10, 10, 20, 0.92);
    --footer-bg: #0d0d1a;
    --footer-text: #e0e0e0;
    --footer-link: #b9a6ff;
    --glass-bg: rgba(26, 26, 46, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --nav-link: #c0c0c0;
    --nav-link-hover: #ffffff;
    --nav-border-hover: #b794f6;
    --badge-bg: #6b4cff;
    --badge-text: #ffffff;
    --rating-bg: #2d2d44;
    --rating-text: #e0e0e0;
    --sidebar-title-border: #2d2d44;
    --sidebar-item-border: #3b3b5e;
    --aside-stats-bg: #0d0d1a;
    --aside-stats-text: #ffffff;
    --aside-stats-subtext: #c0c0c0;
    --intro-highlight-bg: #2d2d44;
    --intro-highlight-text: #e0e0e0;
    --comment-bg: #1a1a2e;
    --comment-time: #a0a0a0;
    --btn-primary-bg: #6b4cff;
    --btn-primary-hover: #8b6cff;
    --btn-primary-text: #ffffff;
    --card-hover-border: #b794f6;
    --card-hover-shadow: 0 16px 32px rgba(107, 76, 255, 0.25);
    --img-bg: #2d2d44;
    --role-card-bg: #1a1a2e;
    --role-card-border: #2d2d44;
    --anime-card-bg: #1a1a2e;
    --anime-card-border: #2d2d44;
    --anime-card-hover-bg: #2d2d44;
    --anime-card-hover-border: #b794f6;
    --anime-card-hover-shadow: 0 12px 24px rgba(107, 76, 255, 0.25);
    --scrollbar-thumb: #4a4a6a;
    --scrollbar-track: #1a1a2e;
  }
}

* {
  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-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  transition: background-color 0.3s ease, color 0.3s ease;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(107, 76, 255, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(183, 148, 246, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

a {
  color: #4A6CF7;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

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

header, nav, main, section, article, aside, footer {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
  background-color: var(--img-bg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* 顶部导航 */
.navbar {
  background: var(--navbar-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  color: var(--footer-text);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.logo h1 {
  font-size: 1.8rem;
  color: var(--footer-text);
  font-weight: 800;
  letter-spacing: 1px;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
  transition: transform 0.3s ease;
}

.logo h1:hover {
  transform: scale(1.02);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
}

.nav-links a {
  color: var(--nav-link);
  font-weight: 500;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--nav-border-hover);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  border-bottom-color: var(--nav-border-hover);
  color: var(--nav-link-hover);
  text-decoration: none;
  transform: translateY(-1px);
}

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

/* 主体网格 */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 30px;
  margin-top: 30px;
}

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

/* 卡片通用 */
.card {
  background-color: var(--bg-card);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  margin-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-bg);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

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

h2 {
  font-size: 1.8rem;
  color: var(--text);
  border-left: 6px solid var(--primary);
  padding-left: 16px;
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.3;
  position: relative;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 22px;
  width: 60px;
  height: 3px;
  background: var(--gradient-accent);
  border-radius: 2px;
  opacity: 0.6;
}

h3 {
  font-size: 1.3rem;
  color: var(--text-secondary);
  margin: 20px 0 12px;
  font-weight: 700;
}

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

.anime-card {
  background: var(--anime-card-bg);
  border-radius: var(--radius-sm);
  padding: 12px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
  border: 1px solid var(--anime-card-border);
  position: relative;
  overflow: hidden;
}

.anime-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(107, 76, 255, 0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.anime-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--anime-card-hover-shadow);
  background: var(--anime-card-hover-bg);
  border-color: var(--anime-card-hover-border);
}

.anime-card:hover::after {
  opacity: 1;
}

.anime-card img {
  border-radius: 12px;
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
  background-color: var(--img-bg);
  transition: transform 0.3s ease;
}

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

.anime-card h4 {
  font-size: 1.1rem;
  color: var(--text);
  margin: 10px 0 6px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.anime-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  position: relative;
  z-index: 1;
}

.badge {
  display: inline-block;
  background: var(--badge-bg);
  color: var(--badge-text);
  padding: 2px 12px;
  border-radius: 30px;
  font-size: 0.85rem;
  margin: 4px 2px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.badge:hover {
  background: var(--primary-dark);
  transform: scale(1.05);
}

.rating {
  font-weight: bold;
  color: var(--rating-text);
  background: var(--rating-bg);
  padding: 2px 10px;
  border-radius: 20px;
  display: inline-block;
  position: relative;
  z-index: 1;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.rating:hover {
  transform: scale(1.1);
}

.sidebar-card {
  background-color: var(--bg-card);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(107, 76, 255, 0.05);
}

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

.sidebar-card h3 {
  border-bottom: 2px solid var(--sidebar-title-border);
  padding-bottom: 8px;
  color: var(--text);
  font-weight: 700;
  margin-bottom: 16px;
}

.sidebar-list {
  list-style: none;
  padding: 0;
}

.sidebar-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--sidebar-item-border);
  color: var(--text-secondary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: padding-left 0.3s ease, background-color 0.3s ease;
}

.sidebar-list li:hover {
  padding-left: 8px;
  background: rgba(107, 76, 255, 0.05);
  border-radius: 8px;
}

.sidebar-list li:last-child {
  border-bottom: none;
}

.footer {
  background-color: var(--footer-bg);
  color: var(--footer-text);
  padding: 40px 0 20px;
  margin-top: 50px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-bg);
  opacity: 0.5;
}

.footer a {
  color: var(--footer-link);
  transition: color 0.3s ease, opacity 0.3s ease;
}

.footer a:hover {
  color: var(--footer-text);
  opacity: 0.9;
}

.footer .links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}

.copyright {
  font-size: 0.9rem;
  color: var(--footer-text);
  opacity: 0.8;
  border-top: 1px solid;
  border-color: rgba(183, 148, 246, 0.2);
  padding-top: 20px;
  margin-top: 20px;
}

.btn {
  display: inline-block;
  background: var(--btn-primary-bg);
  color: var(--btn-primary-text);
  padding: 12px 28px;
  border-radius: 60px;
  font-weight: 600;
  border: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 8px 8px 0 0;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-align: center;
  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: var(--btn-primary-hover);
  color: var(--btn-primary-text);
  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);
}

.comment-item {
  background: var(--comment-bg);
  border-radius: var(--radius-xs);
  padding: 14px;
  margin-bottom: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 3px solid var(--primary);
}

.comment-item:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(107, 76, 255, 0.1);
}

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

.comment-item .time {
  color: var(--comment-time);
  font-size: 0.8rem;
  margin-left: 10px;
  opacity: 0.8;
}

.intro-highlight {
  background: var(--intro-highlight-bg);
  padding: 18px;
  border-radius: var(--radius-sm);
  color: var(--intro-highlight-text);
  margin: 20px 0;
  border: 1px solid rgba(107, 76, 255, 0.1);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.intro-highlight:hover {
  transform: scale(1.01);
}

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

.role-card {
  background: var(--role-card-bg);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
  border: 1px solid var(--role-card-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

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

.role-card img {
  border-radius: 50%;
  width: 90px;
  height: 90px;
  object-fit: cover;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

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

.aside-stats {
  background: var(--aside-stats-bg);
  color: var(--aside-stats-text);
  padding: 16px;
  border-radius: var(--radius-sm);
  position: relative;
  overflow: hidden;
}

.aside-stats::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(183, 148, 246, 0.2) 0%, transparent 70%);
  animation: pulse 3s ease-in-out infinite;
}

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

.aside-stats p {
  color: var(--aside-stats-subtext);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.aside-stats h3 {
  color: var(--aside-stats-text);
  position: relative;
  z-index: 1;
}

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

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

::-webkit-scrollbar-thumb {
  background: var(--scrollbar-thumb);
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

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

/* 响应式 */
@media (max-width: 1200px) {
  .container {
    padding: 0 15px;
  }
  
  .content-grid {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .navbar .container {
    flex-direction: column;
    gap: 10px;
  }
  
  .nav-links {
    justify-content: center;
    gap: 15px;
  }
  
  .nav-links a {
    font-size: 0.9rem;
  }
  
  .logo h1 {
    font-size: 1.5rem;
  }
  
  h2 {
    font-size: 1.4rem;
  }
  
  h3 {
    font-size: 1.1rem;
  }
  
  .card {
    padding: 16px;
  }
  
  .anime-grid {
    gap: 12px;
  }
  
  .content-grid {
    margin-top: 20px;
  }
  
  .btn {
    display: block;
    width: 100%;
    margin: 8px 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }
  
  .nav-links {
    gap: 10px;
    font-size: 0.85rem;
  }
  
  .anime-grid {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 10px;
  }
  
  .anime-card {
    padding: 8px;
  }
  
  .anime-card h4 {
    font-size: 0.95rem;
  }
  
  .sidebar-card {
    padding: 14px;
  }
  
  .role-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 12px;
  }
  
  .footer .links {
    gap: 15px;
    font-size: 0.9rem;
  }
}

/* 动画效果 */
@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.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

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

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

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

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

.card:nth-child(5) {
  animation-delay: 0.4s;
}

.card:nth-child(6) {
  animation-delay: 0.5s;
}

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

.anime-card:nth-child(1) { animation-delay: 0s; }
.anime-card:nth-child(2) { animation-delay: 0.05s; }
.anime-card:nth-child(3) { animation-delay: 0.1s; }
.anime-card:nth-child(4) { animation-delay: 0.15s; }
.anime-card:nth-child(5) { animation-delay: 0.2s; }
.anime-card:nth-child(6) { animation-delay: 0.25s; }
.anime-card:nth-child(7) { animation-delay: 0.3s; }
.anime-card:nth-child(8) { animation-delay: 0.35s; }
.anime-card:nth-child(9) { animation-delay: 0.4s; }
.anime-card:nth-child(10) { animation-delay: 0.45s; }
.anime-card:nth-child(11) { animation-delay: 0.5s; }
.anime-card:nth-child(12) { animation-delay: 0.55s; }
.anime-card:nth-child(13) { animation-delay: 0.6s; }
.anime-card:nth-child(14) { animation-delay: 0.65s; }
.anime-card:nth-child(15) { animation-delay: 0.7s; }
.anime-card:nth-child(16) { animation-delay: 0.75s; }

.sidebar-card {
  animation: slideInRight 0.5s ease both;
}

.sidebar-card:nth-child(1) { animation-delay: 0.1s; }
.sidebar-card:nth-child(2) { animation-delay: 0.2s; }
.sidebar-card:nth-child(3) { animation-delay: 0.3s; }
.sidebar-card:nth-child(4) { animation-delay: 0.4s; }
.sidebar-card:nth-child(5) { animation-delay: 0.5s; }

.comment-item {
  animation: fadeIn 0.5s ease both;
}

.comment-item:nth-child(1) { animation-delay: 0s; }
.comment-item:nth-child(2) { animation-delay: 0.05s; }
.comment-item:nth-child(3) { animation-delay: 0.1s; }
.comment-item:nth-child(4) { animation-delay: 0.15s; }
.comment-item:nth-child(5) { animation-delay: 0.2s; }
.comment-item:nth-child(6) { animation-delay: 0.25s; }
.comment-item:nth-child(7) { animation-delay: 0.3s; }
.comment-item:nth-child(8) { animation-delay: 0.35s; }
.comment-item:nth-child(9) { animation-delay: 0.4s; }
.comment-item:nth-child(10) { animation-delay: 0.45s; }

/* 滚动动画 */
@media (prefers-reduced-motion: no-preference) {
  .card, .anime-card, .sidebar-card, .comment-item, .role-card {
    opacity: 0;
    animation-fill-mode: both;
  }
  
  .card.visible, .anime-card.visible, .sidebar-card.visible, .comment-item.visible, .role-card.visible {
    animation-play-state: running;
  }
}

/* 毛玻璃效果 */
.navbar {
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
}

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

/* 渐变Banner效果 */
.banner-gradient {
  background: linear-gradient(135deg, rgba(107, 76, 255, 0.1) 0%, rgba(183, 148, 246, 0.1) 100%);
  border: 1px solid rgba(107, 76, 255, 0.1);
}

/* 焦点可见性 */
:focus-visible {
  outline: 3px solid rgba(107, 76, 255, 0.5);
  outline-offset: 2px;
  border-radius: 4px;
}

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

/* 打印样式 */
@media print {
  .navbar, .sidebar-card, .footer, .btn, .aside-stats {
    display: none !important;
  }
  
  .content-grid {
    display: block;
  }
  
  .card {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ddd;
  }
}
```