```css
/* ========== RESET & BASE ========== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: linear-gradient(135deg, #0a0a18 0%, #14142a 100%);
  color: #e0e0f0;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

ul {
  list-style: none;
}

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

.section-title {
  color: #f0f0ff;
  font-size: 1.8rem;
  border-left: 5px solid #8b5cf6;
  padding-left: 15px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

/* ========== HEADER ========== */
header {
  background: rgba(13, 13, 32, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(45, 45, 85, 0.6);
  padding: 0 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background 0.3s ease;
}

header nav {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 10px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-text {
  font-size: 28px;
  font-weight: 800;
  color: #f0f0ff;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #a78bfa, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-badge {
  background: linear-gradient(135deg, #8b5cf6, #6d28d9);
  color: #fff;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  font-weight: 500;
}

.nav-links a {
  color: #d0d0e8;
  font-size: 16px;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #a78bfa, #8b5cf6);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-links a:hover {
  color: #a78bfa;
}

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

/* ========== HERO / TITLE ========== */
.hero-section {
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(45, 45, 85, 0.6);
  padding-bottom: 10px;
  animation: fadeSlideIn 0.8s ease both;
}

.hero-title {
  font-size: 2.2rem;
  color: #f0f0ff;
  margin: 0 0 8px 0;
  letter-spacing: 1px;
  font-weight: 800;
  background: linear-gradient(135deg, #f0f0ff 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  color: #b0b0d0;
  font-size: 1rem;
  margin: 0;
  letter-spacing: 0.5px;
}

/* ========== CARD GRID ========== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

/* ========== COMIC CARD ========== */
.comic-card {
  background: rgba(28, 28, 62, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(45, 45, 85, 0.6);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  animation: fadeSlideIn 0.6s ease both;
  position: relative;
}

.comic-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 30px rgba(139, 92, 246, 0.15);
  border-color: rgba(139, 92, 246, 0.5);
}

.comic-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.comic-info {
  padding: 12px;
}

.comic-title {
  color: #f0f0ff;
  font-size: 1.1rem;
  margin: 0 0 5px;
  font-weight: 700;
  transition: color 0.3s ease;
}

.comic-card:hover .comic-title {
  color: #a78bfa;
}

.comic-meta {
  color: #b0b0d0;
  font-size: 0.85rem;
  margin: 2px 0;
  line-height: 1.4;
}

.chapter-badge {
  display: inline-block;
  background: rgba(45, 45, 85, 0.8);
  color: #a78bfa;
  font-size: 0.7rem;
  padding: 3px 8px;
  border-radius: 20px;
  margin-top: 6px;
  font-weight: 500;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(139, 92, 246, 0.2);
}

/* ========== DUAL COLUMN LAYOUT ========== */
.dual-column {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.main-column {
  flex: 2;
  min-width: 280px;
}

.sidebar {
  flex: 1;
  min-width: 250px;
  background: rgba(20, 20, 46, 0.7);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(45, 45, 85, 0.6);
  border-radius: 20px;
  padding: 20px;
  height: fit-content;
  position: sticky;
  top: 90px;
  animation: fadeSlideIn 0.8s ease both;
}

/* ========== RECOMMEND CARDS ========== */
.recommend-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.recommend-card {
  background: rgba(26, 26, 53, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(45, 45, 85, 0.6);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeSlideIn 0.6s ease both;
}

.recommend-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(139, 92, 246, 0.12);
}

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

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

.recommend-body {
  padding: 15px;
}

.recommend-title {
  color: #f0f0ff;
  margin: 0 0 8px;
  font-size: 1.1rem;
  font-weight: 700;
}

.recommend-author {
  color: #b0b0d0;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.recommend-desc {
  color: #e0e0f0;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ========== SIDEBAR CONTENT ========== */
.sidebar-title {
  color: #f0f0ff;
  font-size: 1.3rem;
  border-bottom: 1px solid rgba(45, 45, 85, 0.6);
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.sidebar-subtitle {
  color: #a78bfa;
  font-size: 1rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.sidebar-list li {
  margin-bottom: 8px;
  color: #d0d0e8;
  font-size: 0.9rem;
  padding: 6px 10px;
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.sidebar-list li:hover {
  background: rgba(139, 92, 246, 0.1);
  transform: translateX(4px);
}

.stats-box {
  background: rgba(16, 16, 40, 0.8);
  border: 1px solid rgba(45, 45, 85, 0.5);
  padding: 15px;
  border-radius: 12px;
  margin-top: 20px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.stats-box h3 {
  color: #f0f0ff;
  font-size: 1rem;
  margin-top: 0;
  margin-bottom: 10px;
}

.stats-box p {
  color: #b0b0d0;
  margin: 5px 0;
  font-size: 0.9rem;
}

.stats-box span {
  color: #a78bfa;
  font-weight: bold;
}

/* ========== DETAIL SECTION ========== */
.detail-section {
  background: rgba(22, 22, 48, 0.7);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 30px;
  border-radius: 24px;
  margin: 50px 0;
  border: 1px solid rgba(45, 45, 85, 0.6);
  animation: fadeSlideIn 0.8s ease both;
}

.detail-content {
  color: #e0e0f0;
  font-size: 1rem;
  line-height: 1.8;
}

.detail-content p {
  margin-bottom: 15px;
  text-align: justify;
}

.tag-badge {
  display: inline-block;
  background: rgba(45, 45, 85, 0.8);
  color: #a78bfa;
  padding: 4px 10px;
  border-radius: 20px;
  margin-right: 8px;
  font-size: 0.85rem;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(139, 92, 246, 0.2);
  transition: all 0.3s ease;
}

.tag-badge:hover {
  background: rgba(139, 92, 246, 0.2);
  transform: scale(1.05);
}

/* ========== CHARACTERS ========== */
.characters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.character-card {
  background: rgba(26, 26, 53, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(45, 45, 85, 0.6);
  border-radius: 20px;
  padding: 20px 15px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeSlideIn 0.6s ease both;
}

.character-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 10px 25px rgba(139, 92, 246, 0.15);
}

.character-avatar {
  width: 100%;
  max-width: 180px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto;
  border: 3px solid rgba(139, 92, 246, 0.3);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.character-card:hover .character-avatar {
  border-color: #8b5cf6;
  transform: scale(1.05);
}

.character-name {
  color: #f0f0ff;
  margin: 12px 0 5px;
  font-size: 1.1rem;
  font-weight: 700;
}

.character-role {
  color: #a78bfa;
  font-weight: 600;
  margin: 0;
  font-size: 0.95rem;
}

.character-desc {
  color: #d0d0e8;
  font-size: 0.85rem;
  margin-top: 8px;
  line-height: 1.5;
}

/* ========== PLATFORM SECTION ========== */
.platform-section {
  background: rgba(20, 20, 46, 0.7);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 30px;
  border-radius: 24px;
  margin-bottom: 50px;
  border: 1px solid rgba(45, 45, 85, 0.6);
  animation: fadeSlideIn 0.8s ease both;
}

.platform-content {
  color: #e0e0f0;
  font-size: 1rem;
  line-height: 1.8;
}

.platform-content p {
  margin-bottom: 15px;
  text-align: justify;
}

/* ========== APP DOWNLOAD ========== */
.app-section {
  text-align: center;
  background: rgba(22, 22, 48, 0.7);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 40px 20px;
  border-radius: 28px;
  margin-bottom: 50px;
  border: 1px solid rgba(45, 45, 85, 0.6);
  animation: fadeSlideIn 0.8s ease both;
  position: relative;
  overflow: hidden;
}

.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.08) 0%, transparent 60%);
  animation: rotateGradient 20s linear infinite;
  pointer-events: none;
}

@keyframes rotateGradient {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.app-title {
  color: #f0f0ff;
  font-size: 2rem;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.app-subtitle {
  color: #b0b0d0;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 10px auto 30px;
  position: relative;
  z-index: 1;
}

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

.btn-download {
  background: linear-gradient(135deg, #7c3aed, #6d28d9);
  color: #ffffff;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
  display: inline-block;
  border: none;
  cursor: pointer;
}

.btn-download:hover {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.5);
}

/* ========== COMMENTS ========== */
.comments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.comment-card {
  background: rgba(26, 26, 53, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(45, 45, 85, 0.6);
  border-radius: 16px;
  padding: 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeSlideIn 0.6s ease both;
}

.comment-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.1);
}

.comment-author {
  color: #a78bfa;
  font-weight: 600;
  margin: 0 0 5px;
  font-size: 0.95rem;
}

.comment-text {
  color: #e0e0f0;
  margin: 0 0 10px;
  font-size: 0.9rem;
  line-height: 1.6;
}

.comment-date {
  color: #8888aa;
  font-size: 0.75rem;
}

/* ========== FOOTER ========== */
footer {
  background: rgba(10, 10, 24, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(45, 45, 85, 0.6);
  padding: 30px 20px;
  margin-top: 30px;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.footer-links {
  color: #8888aa;
  margin: 0 0 10px;
  font-size: 0.9rem;
}

.footer-links a {
  color: #a78bfa;
  margin: 0 5px;
  transition: text-decoration 0.2s ease;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-info {
  color: #8888aa;
  font-size: 0.85rem;
}

.footer-info p {
  margin: 0 0 5px;
}

.footer-info a {
  color: #a78bfa;
  transition: text-decoration 0.2s ease;
}

.footer-info a:hover {
  text-decoration: underline;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 5px rgba(139, 92, 246, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
  }
}

/* Scroll animation - cards fade in on scroll */
@media (prefers-reduced-motion: no-preference) {
  .comic-card, .recommend-card, .character-card, .comment-card {
    animation: fadeSlideIn 0.6s ease both;
    animation-timeline: view();
    animation-range: entry 0% entry 100%;
  }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .card-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
  }
  
  .recommend-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
  }
  
  .dual-column {
    flex-direction: column;
  }
  
  .sidebar {
    position: static;
    width: 100%;
  }
}

@media (max-width: 768px) {
  header {
    padding: 0 15px;
  }
  
  header nav {
    flex-direction: column;
    padding: 15px 0;
    gap: 15px;
  }
  
  .nav-links {
    justify-content: center;
    gap: 10px 15px;
  }
  
  .nav-links a {
    font-size: 14px;
  }
  
  .hero-title {
    font-size: 1.5rem;
  }
  
  .card-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 12px;
  }
  
  .comic-title {
    font-size: 1rem;
  }
  
  .comic-meta {
    font-size: 0.75rem;
  }
  
  .recommend-grid {
    grid-template-columns: 1fr;
  }
  
  .detail-section, .platform-section, .app-section {
    padding: 20px;
    border-radius: 16px;
  }
  
  .app-title {
    font-size: 1.5rem;
  }
  
  .app-subtitle {
    font-size: 1rem;
  }
  
  .btn-download {
    padding: 12px 28px;
    font-size: 1rem;
  }
  
  .characters-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
  }
  
  .comments-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }
  
  .hero-title {
    font-size: 1.3rem;
  }
  
  .hero-subtitle {
    font-size: 0.85rem;
  }
  
  .card-grid {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
  }
  
  .comic-info {
    padding: 8px;
  }
  
  .comic-title {
    font-size: 0.9rem;
  }
  
  .comic-meta {
    font-size: 0.7rem;
  }
  
  .chapter-badge {
    font-size: 0.6rem;
    padding: 2px 6px;
  }
  
  .section-title {
    font-size: 1.4rem;
  }
  
  .detail-content, .platform-content {
    font-size: 0.9rem;
  }
  
  .app-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-download {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}

/* ========== DARK MODE ENHANCEMENT ========== */
@media (prefers-color-scheme: dark) {
  body {
    background: linear-gradient(135deg, #0a0a18 0%, #14142a 100%);
  }
  
  .comic-card, .recommend-card, .character-card, .comment-card {
    background: rgba(28, 28, 62, 0.8);
  }
  
  .sidebar, .detail-section, .platform-section, .app-section {
    background: rgba(20, 20, 46, 0.8);
  }
}

/* ========== 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;
  }
}

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

::-webkit-scrollbar-track {
  background: #0a0a18;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #2d2d55, #8b5cf6);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
}

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

/* ========== FOCUS VISIBLE ========== */
:focus-visible {
  outline: 2px solid #8b5cf6;
  outline-offset: 2px;
  border-radius: 4px;
}
```