```css
/* ===== CSS Reset & Base ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'PingFang SC', 'Microsoft YaHei', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

:root {
  --bg-primary: #0a0a18;
  --bg-secondary: #14142a;
  --bg-card: #1c1c3e;
  --bg-card-hover: #242450;
  --border-color: #2d2d55;
  --text-primary: #e0e0f0;
  --text-secondary: #b0b0d0;
  --text-muted: #8888aa;
  --accent: #8b5cf6;
  --accent-light: #a78bfa;
  --accent-lighter: #c4b5fd;
  --accent-gradient: linear-gradient(135deg, #7c3aed, #6d28d9);
  --glass-bg: rgba(20, 20, 46, 0.7);
  --glass-border: rgba(139, 92, 246, 0.2);
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 10px 30px rgba(139, 92, 246, 0.2);
  --shadow-lg: 0 10px 40px rgba(124, 58, 237, 0.4);
  --transition: all 0.3s ease;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 15px;
  --radius-full: 50px;
}

html {
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 16px;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 20%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(124, 58, 237, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

a {
  color: var(--accent-light);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
}

a:hover {
  color: var(--accent-lighter);
  text-decoration: none;
}

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

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  position: relative;
  z-index: 1;
}

.main-content {
  flex: 1;
  min-width: 300px;
}

aside {
  width: 300px;
  flex-shrink: 0;
}

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

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

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

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

/* ===== Selection ===== */
::selection {
  background: rgba(139, 92, 246, 0.3);
  color: #fff;
}

/* ===== Top Header ===== */
.site-header {
  background: rgba(13, 13, 32, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 2px solid var(--border-color);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.logo h1 {
  font-size: 2rem;
  color: #f0f0ff;
  font-weight: 800;
  letter-spacing: 2px;
  text-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
  background: linear-gradient(135deg, #f0f0ff 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo h1 span {
  color: var(--accent-light);
  -webkit-text-fill-color: var(--accent-light);
}

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

.main-nav a {
  color: #d0d0e8;
  font-weight: 500;
  padding: 8px 15px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
}

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

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

.main-nav a:hover {
  color: var(--accent-light);
  background: rgba(167, 139, 250, 0.1);
  text-decoration: none;
  transform: translateY(-2px);
}

.main-nav a.active {
  color: var(--accent);
  background: rgba(139, 92, 246, 0.15);
  font-weight: 600;
}

.main-nav a.active::before {
  width: 60%;
}

/* ===== Section Titles ===== */
.section-title {
  font-size: 1.8rem;
  color: #f0f0ff;
  margin: 40px 0 25px;
  padding-left: 15px;
  border-left: 4px solid var(--accent);
  font-weight: 700;
  letter-spacing: 1px;
  position: relative;
  animation: fadeInUp 0.6s ease;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  margin-top: 5px;
}

/* ===== Comic Grid ===== */
.comic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}

.comic-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  animation: fadeIn 0.5s ease;
}

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

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

.comic-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: var(--shadow-md);
  border-color: rgba(139, 92, 246, 0.4);
}

.comic-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

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

.comic-info {
  padding: 15px;
  position: relative;
  z-index: 2;
}

.comic-info h3 {
  color: #f0f0ff;
  font-size: 1.1rem;
  margin-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.3s ease;
}

.comic-card:hover .comic-info h3 {
  color: var(--accent-light);
}

.comic-info p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-bottom: 4px;
  line-height: 1.4;
}

.comic-info .tag {
  display: inline-block;
  background: rgba(139, 92, 246, 0.2);
  color: var(--accent-light);
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  margin-top: 8px;
  border: 1px solid rgba(139, 92, 246, 0.3);
  transition: all 0.3s ease;
}

.comic-card:hover .tag {
  background: rgba(139, 92, 246, 0.3);
  transform: scale(1.05);
}

/* ===== Featured Grid ===== */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
}

.featured-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  animation: fadeIn 0.6s ease;
}

.featured-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.featured-card:hover::after {
  transform: scaleX(1);
}

.featured-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(139, 92, 246, 0.4);
}

.featured-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.featured-card:hover img {
  transform: scale(1.03);
}

.featured-body {
  padding: 20px;
}

.featured-body h3 {
  color: #f0f0ff;
  font-size: 1.3rem;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.featured-card:hover .featured-body h3 {
  color: var(--accent-light);
}

.featured-body p {
  color: #d0d0e8;
  font-size: 0.95rem;
  margin-bottom: 10px;
  line-height: 1.6;
}

.featured-body .meta {
  color: var(--accent-light);
  font-size: 0.85rem;
  display: inline-block;
  padding: 4px 12px;
  background: rgba(139, 92, 246, 0.1);
  border-radius: 20px;
}

/* ===== Detail Section ===== */
.detail-section {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: var(--radius-lg);
  padding: 30px;
  margin: 40px 0;
  border: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.6s ease;
}

.detail-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.detail-section h2 {
  color: #f0f0ff;
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
}

.detail-section h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: var(--accent-gradient);
  margin: 10px auto 0;
  border-radius: 2px;
}

.detail-section h3 {
  color: var(--accent-light);
  font-size: 1.3rem;
  margin: 25px 0 15px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 8px;
  position: relative;
}

.detail-section h3::before {
  content: '◆';
  color: var(--accent);
  margin-right: 8px;
  font-size: 0.8em;
}

.detail-section p {
  color: var(--text-primary);
  margin-bottom: 15px;
  text-indent: 2em;
  line-height: 1.8;
  position: relative;
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.detail-tags span {
  background: rgba(139, 92, 246, 0.15);
  color: var(--accent-light);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  border: 1px solid rgba(139, 92, 246, 0.3);
  transition: all 0.3s ease;
  cursor: default;
}

.detail-tags span:hover {
  background: rgba(139, 92, 246, 0.3);
  transform: translateY(-2px);
}

/* ===== Character Grid ===== */
.character-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.character-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  animation: fadeIn 0.5s ease;
}

.character-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.character-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(139, 92, 246, 0.4);
}

.character-card img {
  border-radius: 50%;
  margin-bottom: 15px;
  border: 3px solid var(--accent);
  transition: transform 0.4s ease, border-color 0.3s ease;
  max-width: 120px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

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

.character-card h3 {
  color: #f0f0ff;
  font-size: 1.2rem;
  margin-bottom: 5px;
  position: relative;
}

.character-card .role {
  color: var(--accent-light);
  font-size: 0.9rem;
  margin-bottom: 10px;
  position: relative;
}

.character-card p {
  color: #d0d0e8;
  font-size: 0.85rem;
  line-height: 1.6;
  position: relative;
}

/* ===== Platform Section ===== */
.platform-section {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: var(--radius-lg);
  padding: 30px;
  margin: 40px 0;
  border: 1px solid var(--glass-border);
  animation: fadeInUp 0.6s ease;
  position: relative;
  overflow: hidden;
}

.platform-section::before {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.platform-section h2 {
  color: #f0f0ff;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.platform-section h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: var(--accent-gradient);
  margin: 10px auto 0;
  border-radius: 2px;
}

.platform-section h3 {
  color: var(--accent-light);
  font-size: 1.3rem;
  margin: 20px 0 10px;
  position: relative;
  padding-left: 15px;
}

.platform-section h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 20px;
  background: var(--accent-gradient);
  border-radius: 3px;
}

.platform-section p {
  color: var(--text-primary);
  line-height: 1.8;
  margin-bottom: 15px;
  position: relative;
}

.platform-features {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.feature-item {
  background: rgba(26, 26, 53, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 10px;
  border-left: 4px solid var(--accent);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-item::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(30%, -30%);
}

.feature-item:hover {
  transform: translateX(5px);
  border-left-color: var(--accent-light);
  background: rgba(26, 26, 53, 0.9);
}

.feature-item h4 {
  color: #f0f0ff;
  margin-bottom: 10px;
  font-size: 1.1rem;
  position: relative;
}

.feature-item p {
  color: #d0d0e8;
  font-size: 0.9rem;
  line-height: 1.6;
  position: relative;
}

/* ===== App Section ===== */
.app-section {
  background: linear-gradient(135deg, rgba(26, 26, 53, 0.9), rgba(20, 20, 46, 0.9));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  margin: 40px 0;
  border: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.6s ease;
}

.app-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
  animation: pulse 4s ease-in-out infinite;
}

.app-section h2 {
  color: #f0f0ff;
  font-size: 2.2rem;
  margin-bottom: 20px;
  position: relative;
  text-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
}

.app-section p {
  color: #d0d0e8;
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.8;
  position: relative;
}

.app-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.app-btn {
  background: var(--accent-gradient);
  color: #ffffff;
  padding: 15px 35px;
  border-radius: var(--radius-full);
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.app-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.app-btn:hover::before {
  width: 300px;
  height: 300px;
}

.app-btn:hover {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
  color: #ffffff;
}

.app-btn:active {
  transform: translateY(0);
}

/* ===== Comment Section ===== */
.comment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.comment-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: all 0.3s ease;
  position: relative;
  animation: fadeIn 0.5s ease;
}

.comment-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 4rem;
  color: rgba(139, 92, 246, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

.comment-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(139, 92, 246, 0.4);
}

.comment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.comment-user {
  color: var(--accent-light);
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.comment-user::before {
  content: '👤';
  font-size: 0.9rem;
}

.comment-time {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.comment-content {
  color: var(--text-primary);
  font-size: 0.9rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ===== Sidebar ===== */
.sidebar-widget {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: fadeInRight 0.5s ease;
}

.sidebar-widget:hover {
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: var(--shadow-md);
}

.sidebar-widget h3 {
  color: #f0f0ff;
  font-size: 1.3rem;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
  position: relative;
}

.sidebar-widget h3::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--accent-light);
}

.ranking-list {
  list-style: none;
  counter-reset: rank;
}

.ranking-list li {
  counter-increment: rank;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  opacity: 0;
  animation: fadeInLeft 0.4s ease forwards;
  animation-delay: calc(var(--i, 0) * 0.05s);
}

.ranking-list li:nth-child(1) { --i: 0; }
.ranking-list li:nth-child(2) { --i: 1; }
.ranking-list li:nth-child(3) { --i: 2; }
.ranking-list li:nth-child(4) { --i: 3; }
.ranking-list li:nth-child(5) { --i: 4; }
.ranking-list li:nth-child(6) { --i: 5; }
.ranking-list li:nth-child(7) { --i: 6; }
.ranking-list li:nth-child(8) { --i: 7; }
.ranking-list li:nth-child(9) { --i: 8; }
.ranking-list li:nth-child(10) { --i: 9; }

.ranking-list li::before {
  content: counter(rank);
  background: var(--accent-gradient);
  color: #ffffff;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.ranking-list li:nth-child(1)::before {
  background: linear-gradient(135deg, #f59e0b, #f97316);
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.3);
}

.ranking-list li:nth-child(2)::before {
  background: linear-gradient(135deg, #94a3b8, #64748b);
}

.ranking-list li:nth-child(3)::before {
  background: linear-gradient(135deg, #b45309, #92400e);
}

.ranking-list li:hover {
  padding-left: 15px;
  background: rgba(139, 92, 246, 0.05);
}

.ranking-list li:hover::before {
  transform: scale(1.1);
}

.ranking-list li a {
  color: #d0d0e8;
  font-size: 0.9rem;
  flex: 1;
  transition: all 0.3s ease;
}

.ranking-list li a:hover {
  color: var(--accent-light);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.stat-item {
  background: rgba(26, 26, 53, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 15px;
  border-radius: var(--radius-sm);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.stat-item:hover {
  border-color: rgba(139, 92, 246, 0.3);
  transform: translateY(-2px);
}

.stat-item .num {
  color: var(--accent-light);
  font-size: 1.8rem;
  font-weight: bold;
  background: linear-gradient(135deg, #a78bfa, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-item .label {
  color: var(--text-secondary);
  font-size: 0.8rem;
  margin-top: 4px;
}

/* ===== Footer ===== */
.site-footer {
  background: rgba(10, 10, 24, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 2px solid var(--border-color);
  margin-top: 60px;
  padding: 40px 0 20px;
  position: relative;
  z-index: 1;
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 30px;
}

.footer-links a {
  color: var(--accent-light);
  font-size: 0.9rem;
  padding: 5px 10px;
  border-radius: 5px;
  transition: all 0.3s ease;
  position: relative;
}

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

.footer-links a:hover {
  color: var(--accent-lighter);
  background: rgba(139, 92, 246, 0.1);
  text-decoration: none;
}

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

.footer-info {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 2;
}

.footer-info a {
  color: var(--accent-light);
}

.copyright {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
  position: relative;
}

.copyright::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: var(--accent-gradient);
  border-radius: 2px;
}

/* ===== Animations ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

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

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

@keyframes pulse {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* ===== Scroll Animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .container {
    gap: 20px;
  }
  
  aside {
    width: 260px;
  }
  
  .comic-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }
  
  .featured-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
    padding: 0 15px;
  }
  
  aside {
    width: 100%;
  }
  
  .main-nav ul {
    gap: 10px;
    justify-content: center;
  }
  
  .main-nav a {
    padding: 5px 10px;
    font-size: 0.85rem;
  }
  
  .logo h1 {
    font-size: 1.5rem;
  }
  
  .comic-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
  }
  
  .featured-grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
  
  .character-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
  }
  
  .app-section {
    padding: 30px 20px;
  }
  
  .app-btn {
    padding: 12px 25px;
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.5rem;
    margin: 30px 0 20px;
  }
  
  .detail-section {
    padding: 20px;
  }
  
  .platform-section {
    padding: 20px;
  }
  
  .comment-grid {
    grid-template-columns: 1fr;
  }
  
  .platform-features {
    grid-template-columns: 1fr;
  }
  
  .sidebar-widget {
    padding: 15px;
  }
  
  .header-inner {
    justify-content: center;
    text-align: center;
  }
  
  .main-nav {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .main-nav ul {
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding-bottom: 5px;
  }
  
  .main-nav a {
    white-space: nowrap;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 14px;
  }
  
  .container {
    padding: 0 10px;
  }
  
  .featured-grid {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 1.4rem;
  }
  
  .detail-section {
    padding: 15px;
    border-radius: 10px;
  }
  
  .platform-section {
    padding: 15px;
    border-radius: 10px;
  }
  
  .app-section {
    padding: 25px 15px;
  }
  
  .app-section h2 {
    font-size: 1.8rem;
  }
  
  .comic-grid {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 10px;
  }
  
  .comic-info {
    padding: 10px;
  }
  
  .comic-info h3 {
    font-size: 0.95rem;
  }
  
  .comic-info p {
    font-size: 0.75rem;
  }
  
  .character-grid {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 10px;
  }
  
  .character-card {
    padding: 15px;
  }
  
  .character-card img {
    max-width: 80px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-links {
    gap: 10px;
  }
  
  .footer-links a {
    font-size: 0.8rem;
  }
  
  .app-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .app-btn {
    width: 100%;
    max-width: 280px;
  }
}

/* ===== Dark Mode Support ===== */
@media (prefers-color-scheme: dark) {
  :root {
    --bg-primary: #0a0a18;
    --bg-secondary: #14142a;
    --bg-card: #1c1c3e;
    --text-primary: #e0e0f0;
    --text-secondary: #b0b0d0;
    --text-muted: #8888aa;
  }
}

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

/* ===== Utility Classes ===== */
.text-gradient {
  background: linear-gradient(135deg, #a78bfa, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.fade-in {
  animation: fadeIn 0.5s ease;
}

.fade-in-up {
  animation: fadeInUp 0.6s ease;
}

/* ===== Card Hover Effects ===== */
.comic-card, .featured-card, .character-card, .comment-card {
  will-change: transform;
}

.comic-card:nth-child(1) { animation-delay: 0.05s; }
.comic-card:nth-child(2) { animation-delay: 0.1s; }
.comic-card:nth-child(3) { animation-delay: 0.15s; }
.comic-card:nth-child(4) { animation-delay: 0.2s; }
.comic-card:nth-child(5) { animation-delay: 0.25s; }
.comic-card:nth-child(6) { animation-delay: 0.3s; }
.comic-card:nth-child(7) { animation-delay: 0.35s; }
.comic-card:nth-child(8) { animation-delay: 0.4s; }

/* ===== Focus States ===== */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ===== Loading Skeleton ===== */
.skeleton {
  background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-card-hover) 50%, var(--bg-card) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

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