```css
/* ===== CSS Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: linear-gradient(135deg, #0a0a18 0%, #14142a 50%, #0f0f24 100%);
  color: #e0e0f0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
::selection { background: rgba(139, 92, 246, 0.4); color: #fff; }

/* ===== Scrollbar ===== */
::-webkit-scrollbar { width: 10px; background: #0d0d20; }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, #8b5cf6, #6d28d9); border-radius: 10px; border: 2px solid #0d0d20; }
::-webkit-scrollbar-track { background: #0d0d20; }

/* ===== Keyframes ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(139, 92, 246, 0.3); }
  50% { box-shadow: 0 0 40px rgba(139, 92, 246, 0.6); }
}
@keyframes shimmer {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ===== Header ===== */
header {
  background: rgba(13, 13, 32, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(45, 45, 85, 0.6);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}
header:hover { border-bottom-color: rgba(139, 92, 246, 0.5); }
header h1 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f0f0ff;
  margin: 0;
  background: linear-gradient(45deg, #a78bfa, #8b5cf6, #7c3aed, #a78bfa);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 6s ease infinite;
  letter-spacing: 1px;
}
nav { display: flex; gap: 1.8rem; flex-wrap: wrap; align-items: center; }
nav a {
  color: #d0d0e8;
  font-weight: 500;
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.3s;
}
nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #8b5cf6, #a78bfa);
  transition: width 0.3s ease;
  border-radius: 2px;
}
nav a:hover { color: #a78bfa; }
nav a:hover::after { width: 100%; }

/* ===== Main Container ===== */
main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.5rem;
}
main > section, main > div { animation: fadeInUp 0.8s ease both; }
main > section:nth-child(2) { animation-delay: 0.1s; }
main > div:nth-child(3) { animation-delay: 0.2s; }
main > section:nth-child(4) { animation-delay: 0.3s; }
main > section:nth-child(5) { animation-delay: 0.4s; }
main > section:nth-child(6) { animation-delay: 0.5s; }
main > section:nth-child(7) { animation-delay: 0.6s; }

/* ===== Section Headings ===== */
section h2 {
  color: #f0f0ff;
  border-left: 6px solid #8b5cf6;
  padding-left: 0.8rem;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  position: relative;
  background: linear-gradient(90deg, rgba(139, 92, 246, 0.1), transparent);
  border-radius: 0 8px 8px 0;
  padding: 0.5rem 1rem;
}
section h2::before {
  content: '';
  position: absolute;
  left: -6px;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, #a78bfa, #6d28d9);
  border-radius: 6px 0 0 6px;
}
section h2::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0.8rem;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #8b5cf6, transparent);
  border-radius: 3px;
}

/* ===== Hot Comics Grid ===== */
#hot > div {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.5rem;
}
#hot article {
  background: rgba(26, 26, 53, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(45, 45, 85, 0.5);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}
#hot article:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(139, 92, 246, 0.2);
  border-color: rgba(139, 92, 246, 0.6);
}
#hot article img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease, filter 0.3s ease;
}
#hot article:hover img {
  transform: scale(1.05);
  filter: brightness(1.1);
}
#hot article div {
  padding: 0.8rem;
  position: relative;
  z-index: 1;
}
#hot article h3 {
  color: #f0f0ff;
  margin: 0 0 0.3rem;
  font-size: 1.2rem;
  transition: color 0.3s;
}
#hot article:hover h3 { color: #a78bfa; }
#hot article p {
  color: #b0b0d0;
  margin: 0.2rem 0;
  font-size: 0.9rem;
}
#hot article span {
  background: rgba(45, 45, 85, 0.8);
  color: #a78bfa;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  font-size: 0.8rem;
  display: inline-block;
  margin-top: 0.3rem;
  transition: all 0.3s;
}
#hot article:hover span {
  background: rgba(139, 92, 246, 0.2);
  color: #c4b5fd;
}

/* ===== Featured Section ===== */
#featured > div {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}
#featured article {
  background: rgba(28, 28, 62, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(45, 45, 85, 0.5);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
}
#featured article::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.6s ease;
  z-index: 1;
}
#featured article:hover::before { left: 100%; }
#featured article:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(139, 92, 246, 0.25);
  border-color: rgba(139, 92, 246, 0.5);
}
#featured article img {
  width: 100%;
  height: auto;
  transition: transform 0.6s ease;
}
#featured article:hover img { transform: scale(1.08); }
#featured article div {
  padding: 1rem;
  position: relative;
  z-index: 2;
}
#featured article h3 {
  color: #f0f0ff;
  margin: 0 0 0.5rem;
  font-size: 1.3rem;
}
#featured article p { color: #d0d0e8; margin-bottom: 0.5rem; }
#featured article p:last-of-type {
  color: #b0b0d0;
  font-size: 0.9rem;
}

/* ===== Detail & Aside Layout ===== */
main > div {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
#intro {
  flex: 3;
  min-width: 280px;
  background: rgba(22, 22, 48, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 1.8rem;
  border-radius: 24px;
  margin-bottom: 3rem;
  border: 1px solid rgba(45, 45, 85, 0.4);
  transition: border-color 0.3s;
}
#intro:hover { border-color: rgba(139, 92, 246, 0.4); }
#intro h2 { font-size: 2rem; margin-bottom: 1.5rem; }
#intro h3 {
  color: #f0f0ff;
  font-size: 1.5rem;
  margin: 1.5rem 0 0.8rem;
  position: relative;
  padding-left: 1rem;
}
#intro h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 1.2em;
  background: linear-gradient(180deg, #a78bfa, #6d28d9);
  border-radius: 4px;
}
#intro p { color: #e0e0f0; margin-bottom: 1rem; line-height: 1.8; }

/* ===== Aside ===== */
aside {
  flex: 1;
  min-width: 240px;
  background: rgba(20, 20, 46, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(45, 45, 85, 0.5);
  border-radius: 24px;
  padding: 1.5rem;
  height: fit-content;
  position: sticky;
  top: 100px;
  transition: border-color 0.3s;
}
aside:hover { border-color: rgba(139, 92, 246, 0.4); }
aside h2 {
  color: #f0f0ff;
  border-bottom: 2px solid #8b5cf6;
  padding-bottom: 0.5rem;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  border-left: none;
  padding-left: 0;
  background: none;
}
aside h2::before, aside h2::after { display: none; }
aside ol {
  color: #d0d0e8;
  padding-left: 1.2rem;
  counter-reset: rank;
}
aside ol li {
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(45, 45, 85, 0.3);
  transition: all 0.3s;
  counter-increment: rank;
  position: relative;
  padding-left: 2rem;
}
aside ol li::before {
  content: counter(rank);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.5rem;
  height: 1.5rem;
  background: linear-gradient(135deg, #8b5cf6, #6d28d9);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
}
aside ol li:hover { color: #a78bfa; padding-left: 2.5rem; }
aside ul { color: #d0d0e8; padding: 0; }
aside ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(45, 45, 85, 0.3);
  transition: all 0.3s;
}
aside ul li:hover { color: #a78bfa; transform: translateX(5px); }
aside p {
  color: #d0d0e8;
  padding: 0.3rem 0;
  font-size: 0.95rem;
}

/* ===== Characters ===== */
#characters > div {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.5rem;
}
#characters article {
  background: rgba(26, 26, 53, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(45, 45, 85, 0.5);
  border-radius: 16px;
  padding: 1rem;
  text-align: center;
  transition: all 0.4s ease;
}
#characters article:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 15px 40px rgba(139, 92, 246, 0.2);
  border-color: rgba(139, 92, 246, 0.5);
  background: rgba(30, 30, 60, 0.9);
}
#characters article img {
  border-radius: 50%;
  width: 100%;
  max-width: 180px;
  margin: 0 auto 1rem;
  border: 3px solid rgba(139, 92, 246, 0.3);
  transition: all 0.4s ease;
  aspect-ratio: 1;
  object-fit: cover;
}
#characters article:hover img {
  border-color: #8b5cf6;
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
  transform: scale(1.05);
}
#characters article h3 {
  color: #f0f0ff;
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}
#characters article p {
  color: #d0d0e8;
  font-size: 0.9rem;
  margin: 0.2rem 0;
}
#characters article p:last-of-type {
  color: #b0b0d0;
  font-style: italic;
  margin-top: 0.5rem;
}

/* ===== Platform Section ===== */
#platform {
  background: rgba(20, 20, 46, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 2rem;
  border-radius: 24px;
  margin: 3rem 0;
  border: 1px solid rgba(45, 45, 85, 0.4);
  transition: border-color 0.3s;
}
#platform:hover { border-color: rgba(139, 92, 246, 0.4); }
#platform p {
  color: #e0e0f0;
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}
#platform p:first-of-type::first-letter {
  font-size: 2.5rem;
  font-weight: bold;
  color: #a78bfa;
  float: left;
  margin-right: 0.5rem;
  line-height: 1;
}

/* ===== App Download ===== */
#app {
  background: linear-gradient(145deg, #1c1c3a, #181835);
  padding: 2.5rem;
  border-radius: 32px;
  text-align: center;
  margin: 3rem 0;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(139, 92, 246, 0.2);
}
#app::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
  animation: pulseGlow 4s ease infinite;
  pointer-events: none;
}
#app h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #f0f0ff;
  border-left: none;
  padding-left: 0;
  background: none;
}
#app h2::before, #app h2::after { display: none; }
#app p { color: #d0d0e8; max-width: 600px; margin: 0 auto 2rem; }
#app div {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}
#app a {
  background: linear-gradient(135deg, #7c3aed, #6d28d9);
  color: #ffffff;
  padding: 0.9rem 2.2rem;
  border-radius: 60px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}
#app a::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;
}
#app a:hover::before { left: 100%; }
#app a:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.5);
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}
#app a:active { transform: translateY(-1px); }

/* ===== Reviews ===== */
#reviews > div {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
#reviews article {
  background: rgba(26, 26, 53, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(45, 45, 85, 0.5);
  border-radius: 16px;
  padding: 1rem;
  transition: all 0.3s ease;
  position: relative;
}
#reviews article::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 10px;
  font-size: 4rem;
  color: rgba(139, 92, 246, 0.2);
  font-family: Georgia, serif;
  line-height: 1;
}
#reviews article:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.15);
  border-color: rgba(139, 92, 246, 0.4);
}
#reviews article span:first-of-type {
  color: #a78bfa;
  font-weight: bold;
  font-size: 1.1rem;
}
#reviews article span:last-of-type {
  color: #8888aa;
  font-size: 0.8rem;
  margin-left: 0.5rem;
}
#reviews article p {
  color: #e0e0f0;
  margin-top: 0.8rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* ===== Footer ===== */
footer {
  background: rgba(10, 10, 24, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 2rem;
  border-top: 1px solid rgba(45, 45, 85, 0.5);
  margin-top: 2rem;
  text-align: center;
}
footer > div {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
footer div:first-of-type {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}
footer div:first-of-type a {
  color: #a78bfa;
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
}
footer div:first-of-type a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #a78bfa;
  transition: width 0.3s;
}
footer div:first-of-type a:hover::after { width: 100%; }
footer p {
  color: #8888aa;
  margin: 0.5rem 0;
  font-size: 0.9rem;
}
footer div:last-of-type {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
footer div:last-of-type a {
  color: #a78bfa;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 0.9rem;
}
footer div:last-of-type a:hover {
  color: #c4b5fd;
  text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
  html { font-size: 15px; }
  header { padding: 0.8rem 1.5rem; }
  nav { gap: 1.2rem; }
  main { padding: 1rem; }
  #hot > div { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1rem; }
  #featured > div { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1.5rem; }
  aside { position: static; }
}

@media (max-width: 768px) {
  html { font-size: 14px; }
  header {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
  }
  nav {
    justify-content: center;
    gap: 1rem;
    width: 100%;
  }
  nav a { font-size: 0.9rem; }
  main { padding: 0.8rem; }
  section h2 { font-size: 1.6rem; }
  #hot > div { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 0.8rem; }
  #hot article h3 { font-size: 1rem; }
  #hot article p { font-size: 0.8rem; }
  #featured > div { grid-template-columns: 1fr; }
  #characters > div { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 1rem; }
  #characters article img { max-width: 150px; }
  #intro, #platform, #app { padding: 1.2rem; }
  #app div { flex-direction: column; align-items: center; }
  #app a { width: 80%; max-width: 300px; text-align: center; }
  #reviews > div { grid-template-columns: 1fr; }
  footer { padding: 1.5rem; }
  footer div:first-of-type, footer div:last-of-type { gap: 1rem; }
}

@media (max-width: 480px) {
  html { font-size: 13px; }
  header h1 { font-size: 1.5rem; }
  nav { gap: 0.6rem; }
  nav a { font-size: 0.8rem; padding: 0.2rem 0.3rem; }
  #hot > div { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 0.6rem; }
  #hot article div { padding: 0.5rem; }
  #hot article h3 { font-size: 0.9rem; }
  #hot article p { font-size: 0.7rem; }
  #hot article span { font-size: 0.7rem; padding: 0.1rem 0.4rem; }
  #featured > div { grid-template-columns: 1fr; }
  #characters > div { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
  #characters article { padding: 0.8rem; }
  #characters article img { max-width: 120px; }
  #intro h2 { font-size: 1.4rem; }
  #intro h3 { font-size: 1.2rem; }
  #app h2 { font-size: 1.6rem; }
  #app a { padding: 0.8rem 1.5rem; font-size: 0.9rem; }
}

/* ===== Dark Mode Adjustments ===== */
@media (prefers-color-scheme: dark) {
  body { background: linear-gradient(135deg, #05050f 0%, #0d0d1f 50%, #08081a 100%); }
  header, footer { background: rgba(5, 5, 15, 0.9); }
}

/* ===== Print Styles ===== */
@media print {
  header, footer, aside, #app, #reviews { display: none; }
  body { background: #fff; color: #000; }
  main { max-width: 100%; }
  section { break-inside: avoid; }
}

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

/* ===== Utility & Accessibility ===== */
:focus-visible {
  outline: 3px solid #8b5cf6;
  outline-offset: 2px;
  border-radius: 4px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
```