```css
:root {
  --primary: #7c3aed;
  --primary-light: #a78bfa;
  --primary-dark: #5b21b6;
  --accent: #f59e0b;
  --accent-light: #fbbf24;
  --bg: #0f0f1a;
  --bg-secondary: rgba(255, 255, 255, 0.05);
  --bg-card: rgba(255, 255, 255, 0.08);
  --text: #f3f4f6;
  --text-secondary: #9ca3af;
  --border: rgba(255, 255, 255, 0.1);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  --glass: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --gradient: linear-gradient(135deg, #7c3aed 0%, #f59e0b 100%);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 40% 80%, rgba(167, 139, 250, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
  animation: bgFloat 20s ease-in-out infinite;
}

@keyframes bgFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(-2%, 1%) scale(1.02); }
  50% { transform: translate(1%, -1%) scale(0.98); }
  75% { transform: translate(-1%, 2%) scale(1.01); }
}

/* Header & Navigation */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(15, 15, 26, 0.8);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}

header:hover {
  background: rgba(15, 15, 26, 0.9);
}

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

.logo h1 {
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
  white-space: nowrap;
  transition: var(--transition);
}

.logo h1:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 20px rgba(124, 58, 237, 0.3));
}

nav ul {
  display: flex;
  list-style: none;
  gap: 0.5rem;
  align-items: center;
}

nav ul li a {
  color: var(--text-secondary);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  background: transparent;
  border: 1px solid transparent;
}

nav ul li a:hover {
  color: var(--text);
  background: var(--bg-secondary);
  border-color: var(--border);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: var(--transition);
  border-radius: 2px;
}

nav ul li a:hover::after {
  width: 60%;
}

/* Main content */
main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
  position: relative;
  z-index: 1;
}

/* Section styles */
section {
  margin-bottom: 4rem;
  animation: fadeInUp 0.6s ease-out;
}

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

section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  position: relative;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

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

section h2:hover::after {
  width: 100%;
}

section h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text);
}

/* Comic Grid */
.comic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  perspective: 1000px;
}

.comic-grid article {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition);
  animation: cardFloat 0.6s ease-out;
  position: relative;
}

.comic-grid article::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, transparent 50%, rgba(245, 158, 11, 0.1) 100%);
  opacity: 0;
  transition: var(--transition);
  z-index: 1;
  pointer-events: none;
}

.comic-grid article:hover::before {
  opacity: 1;
}

.comic-grid article:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 40px rgba(124, 58, 237, 0.1);
  border-color: rgba(124, 58, 237, 0.3);
}

.comic-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: var(--transition);
  filter: saturate(0.9);
}

.comic-grid article:hover img {
  transform: scale(1.05);
  filter: saturate(1.1);
}

.comic-grid article h3 {
  padding: 1rem 1rem 0.5rem;
  font-size: 1.1rem;
  transition: var(--transition);
}

.comic-grid article:hover h3 {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.comic-grid article p {
  padding: 0.25rem 1rem;
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.4;
  transition: var(--transition);
}

.comic-grid article p:last-of-type {
  padding-bottom: 1rem;
}

.comic-grid article:hover p {
  color: var(--text);
}

/* Recommend Grid */
.recommend-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.recommend-grid article {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition);
  animation: cardFloat 0.6s ease-out;
  position: relative;
}

.recommend-grid article::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.recommend-grid article:hover::after {
  transform: scaleX(1);
}

.recommend-grid article:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(245, 158, 11, 0.3);
}

.recommend-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: var(--transition);
}

.recommend-grid article:hover img {
  transform: scale(1.03);
}

.recommend-grid article h3 {
  padding: 1.25rem 1.25rem 0.5rem;
  font-size: 1.3rem;
  transition: var(--transition);
}

.recommend-grid article:hover h3 {
  color: var(--accent-light);
}

.recommend-grid article p {
  padding: 0.25rem 1.25rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

.recommend-grid article p:first-of-type {
  color: var(--text);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.recommend-grid article p:last-of-type {
  padding-bottom: 1.25rem;
}

/* Detail section */
#detail article {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 2.5rem;
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition);
  animation: cardFloat 0.6s ease-out;
}

#detail article:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border-color: rgba(124, 58, 237, 0.3);
}

#detail h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
  position: relative;
}

#detail h3::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--gradient);
  transition: var(--transition);
}

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

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

#detail article:hover p {
  color: var(--text);
}

#detail strong {
  color: var(--accent-light);
  font-weight: 600;
}

/* Character Grid */
.character-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}

.character-grid article {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition);
  animation: cardFloat 0.6s ease-out;
  position: relative;
  overflow: hidden;
}

.character-grid article::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(124, 58, 237, 0.1) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.character-grid article:hover::before {
  opacity: 1;
}

.character-grid article:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(124, 58, 237, 0.3);
}

.character-grid img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid transparent;
  background: var(--gradient);
  padding: 3px;
  transition: var(--transition);
}

.character-grid article:hover img {
  transform: scale(1.05) rotate(5deg);
  border-color: var(--primary-light);
}

.character-grid h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  transition: var(--transition);
}

.character-grid article:hover h3 {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.character-grid p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Platform section */
#platform article {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 2.5rem;
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition);
  animation: cardFloat 0.6s ease-out;
}

#platform article:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border-color: rgba(245, 158, 11, 0.3);
}

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

#platform article:hover p {
  color: var(--text);
}

#platform strong {
  color: var(--accent-light);
}

/* APP section */
#app article {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 3rem;
  text-align: center;
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition);
  animation: cardFloat 0.6s ease-out;
  position: relative;
  overflow: hidden;
}

#app article::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(124, 58, 237, 0.15) 0%, transparent 50%);
  animation: rotate 20s linear infinite;
  pointer-events: none;
}

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

#app article:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(124, 58, 237, 0.3);
}

#app p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  margin: 0.5rem;
  background: var(--gradient);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 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: var(--transition);
}

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

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
}

.btn:active {
  transform: translateY(-1px);
}

/* Comments section */
.comment-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.comment-list article {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition);
  animation: cardFloat 0.6s ease-out;
  position: relative;
}

.comment-list article::before {
  content: '"';
  position: absolute;
  top: 0;
  left: 1rem;
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.2;
  font-family: Georgia, serif;
  transition: var(--transition);
}

.comment-list article:hover::before {
  opacity: 0.4;
  transform: scale(1.1);
}

.comment-list article:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  border-color: rgba(124, 58, 237, 0.3);
}

.comment-list strong {
  color: var(--accent-light);
  font-weight: 600;
}

.comment-list time {
  color: var(--text-secondary);
  font-size: 0.85rem;
  float: right;
}

.comment-list p:last-child {
  margin-top: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.6;
  transition: var(--transition);
}

.comment-list article:hover p:last-child {
  color: var(--text);
}

/* Aside */
aside {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}

aside section {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition);
  animation: cardFloat 0.6s ease-out;
}

aside section:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  border-color: rgba(124, 58, 237, 0.3);
  transform: translateY(-5px);
}

aside h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

aside h2::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gradient);
  transition: var(--transition);
}

aside section:hover h2::after {
  width: 80px;
}

aside ol, aside ul {
  list-style-position: inside;
  color: var(--text-secondary);
}

aside ol li, aside ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  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(--text);
  padding-left: 0.5rem;
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
}

aside ul {
  list-style: none;
}

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

aside p {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  transition: var(--transition);
}

aside section:hover p {
  color: var(--text);
}

/* Footer */
footer {
  background: rgba(15, 15, 26, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 3rem 2rem;
  margin-top: 4rem;
  position: relative;
  z-index: 1;
}

footer section {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
  padding: 0;
  margin-bottom: 1rem;
}

footer h2 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

footer ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

footer ul li a {
  color: var(--text-secondary);
  text-decoration: none;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  font-size: 0.9rem;
  transition: var(--transition);
}

footer ul li a:hover {
  color: var(--text);
  background: var(--bg-card);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

footer p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

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

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 5px;
  border: 2px solid var(--bg);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
}

/* Selection */
::selection {
  background: var(--primary);
  color: white;
}

/* Focus styles */
a:focus, button:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  nav {
    padding: 0 1.5rem;
  }
  
  main, aside {
    padding: 1.5rem;
  }
  
  .comic-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  
  .recommend-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  nav {
    flex-direction: column;
    height: auto;
    padding: 1rem;
    gap: 1rem;
  }
  
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  nav ul li a {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
  }
  
  .logo h1 {
    font-size: 1.25rem;
  }
  
  main, aside {
    padding: 1rem;
  }
  
  section {
    margin-bottom: 3rem;
  }
  
  section h2 {
    font-size: 1.5rem;
  }
  
  .comic-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
  }
  
  .comic-grid img {
    height: 220px;
  }
  
  .comic-grid article p {
    font-size: 0.8rem;
    padding: 0.2rem 0.75rem;
  }
  
  .recommend-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .recommend-grid img {
    height: 180px;
  }
  
  .character-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
  }
  
  .character-grid img {
    width: 120px;
    height: 120px;
  }
  
  #detail article, #platform article {
    padding: 1.5rem;
  }
  
  #app article {
    padding: 2rem 1.5rem;
  }
  
  .btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .comment-list {
    grid-template-columns: 1fr;
  }
  
  aside {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  footer {
    padding: 2rem 1rem;
  }
  
  footer ul {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  footer ul li a {
    display: block;
  }
}

@media (max-width: 480px) {
  .comic-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 0.75rem;
  }
  
  .comic-grid img {
    height: 180px;
  }
  
  .comic-grid article h3 {
    font-size: 0.95rem;
    padding: 0.5rem 0.75rem 0.25rem;
  }
  
  .comic-grid article p {
    font-size: 0.75rem;
    padding: 0.15rem 0.75rem;
  }
  
  .comic-grid article p:last-of-type {
    padding-bottom: 0.75rem;
  }
  
  .character-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
  }
  
  .character-grid img {
    width: 100px;
    height: 100px;
  }
  
  .character-grid article {
    padding: 1rem;
  }
  
  .character-grid h3 {
    font-size: 1rem;
  }
  
  .character-grid p {
    font-size: 0.8rem;
  }
  
  section h2 {
    font-size: 1.25rem;
  }
  
  #detail article, #platform article {
    padding: 1.25rem;
  }
  
  #detail p, #platform p {
    font-size: 0.9rem;
  }
  
  .recommend-grid article h3 {
    font-size: 1.1rem;
  }
  
  .recommend-grid article p {
    font-size: 0.85rem;
  }
  
  aside section {
    padding: 1.5rem;
  }
  
  aside h2 {
    font-size: 1.25rem;
  }
}

/* Dark mode enhancement */
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0a0a14;
    --text: #e5e7eb;
  }
}

/* Card entrance animations */
@keyframes cardFloat {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Stagger animation for cards */
.comic-grid article:nth-child(1) { animation-delay: 0.1s; }
.comic-grid article:nth-child(2) { animation-delay: 0.2s; }
.comic-grid article:nth-child(3) { animation-delay: 0.3s; }
.comic-grid article:nth-child(4) { animation-delay: 0.4s; }
.comic-grid article:nth-child(5) { animation-delay: 0.5s; }
.comic-grid article:nth-child(6) { animation-delay: 0.6s; }
.comic-grid article:nth-child(7) { animation-delay: 0.7s; }
.comic-grid article:nth-child(8) { animation-delay: 0.8s; }
.comic-grid article:nth-child(9) { animation-delay: 0.9s; }
.comic-grid article:nth-child(10) { animation-delay: 1s; }
.comic-grid article:nth-child(11) { animation-delay: 1.1s; }
.comic-grid article:nth-child(12) { animation-delay: 1.2s; }
.comic-grid article:nth-child(13) { animation-delay: 1.3s; }
.comic-grid article:nth-child(14) { animation-delay: 1.4s; }
.comic-grid article:nth-child(15) { animation-delay: 1.5s; }

.recommend-grid article:nth-child(1) { animation-delay: 0.1s; }
.recommend-grid article:nth-child(2) { animation-delay: 0.2s; }
.recommend-grid article:nth-child(3) { animation-delay: 0.3s; }
.recommend-grid article:nth-child(4) { animation-delay: 0.4s; }
.recommend-grid article:nth-child(5) { animation-delay: 0.5s; }
.recommend-grid article:nth-child(6) { animation-delay: 0.6s; }

.character-grid article:nth-child(1) { animation-delay: 0.1s; }
.character-grid article:nth-child(2) { animation-delay: 0.2s; }
.character-grid article:nth-child(3) { animation-delay: 0.3s; }
.character-grid article:nth-child(4) { animation-delay: 0.4s; }
.character-grid article:nth-child(5) { animation-delay: 0.5s; }
.character-grid article:nth-child(6) { animation-delay: 0.6s; }

.comment-list article:nth-child(1) { animation-delay: 0.1s; }
.comment-list article:nth-child(2) { animation-delay: 0.2s; }
.comment-list article:nth-child(3) { animation-delay: 0.3s; }
.comment-list article:nth-child(4) { animation-delay: 0.4s; }
.comment-list article:nth-child(5) { animation-delay: 0.5s; }
.comment-list article:nth-child(6) { animation-delay: 0.6s; }
.comment-list article:nth-child(7) { animation-delay: 0.7s; }
.comment-list article:nth-child(8) { animation-delay: 0.8s; }
.comment-list article:nth-child(9) { animation-delay: 0.9s; }
.comment-list article:nth-child(10) { animation-delay: 1s; }
.comment-list article:nth-child(11) { animation-delay: 1.1s; }
.comment-list article:nth-child(12) { animation-delay: 1.2s; }
.comment-list article:nth-child(13) { animation-delay: 1.3s; }
.comment-list article:nth-child(14) { animation-delay: 1.4s; }
.comment-list article:nth-child(15) { animation-delay: 1.5s; }

/* Hover effects for aside sections */
aside section:hover {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
}

/* Footer hover effects */
footer section:hover h2 {
  filter: drop-shadow(0 0 10px rgba(124, 58, 237, 0.3));
}

/* Smooth scroll with offset for sticky header */
section[id] {
  scroll-margin-top: 80px;
}

/* Loading animation for images */
img {
  background: linear-gradient(90deg, var(--bg-secondary) 25%, var(--bg-card) 50%, var(--bg-secondary) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

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

/* Print styles */
@media print {
  header, aside, footer, .btn {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  main {
    padding: 0;
  }
  
  section {
    margin-bottom: 2rem;
  }
  
  .comic-grid, .recommend-grid, .character-grid, .comment-list {
    display: block;
  }
  
  .comic-grid article, .recommend-grid article, .character-grid article, .comment-list article {
    break-inside: avoid;
    margin-bottom: 1rem;
  }
}
```