```css
/* ===== CSS Variables & Reset ===== */
:root {
  --primary: #7C5CFC;
  --primary-light: #B79CFF;
  --primary-dark: #4B2D83;
  --bg: #F8F4FF;
  --bg-dark: #12101A;
  --surface: #FFFFFF;
  --surface-dark: #1E1B2E;
  --text: #1A1A2E;
  --text-dark: #F0EBFF;
  --text-muted: #2D2D44;
  --text-muted-dark: #B0A8C9;
  --border: rgba(124, 92, 252, 0.2);
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 12px 28px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 16px;
  --radius-sm: 12px;
  --max-width: 1280px;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  :root {
    --bg: var(--bg-dark);
    --surface: var(--surface-dark);
    --text: var(--text-dark);
    --text-muted: var(--text-muted-dark);
    --border: rgba(183, 156, 255, 0.2);
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 12px 28px rgba(0, 0, 0, 0.5);
  }
  
  body {
    background-color: var(--bg);
    color: var(--text);
  }
  
  .card, .detail-section, .sidebar, .character-card, .comment-item, .footer-links a, section[style*="background"] {
    background-color: var(--surface) !important;
    color: var(--text) !important;
  }
  
  .card-title, .detail-section h3, .character-card h3, .comment-item .user, .section-title, .sidebar h3 {
    color: var(--text) !important;
  }
  
  .card-text, .card-meta, .detail-section p, .character-card p, .comment-item .time, .comment-item p, .sidebar .label, .rank-list li, .stat-item .label {
    color: var(--text-muted) !important;
  }
}

/* ===== Reset & Base ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  transition: background 0.3s ease, color 0.3s ease;
}

a {
  color: #4A4AF0;
  text-decoration: none;
  transition: color 0.2s ease, text-decoration 0.2s ease;
}

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

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

/* ===== Container ===== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* ===== Header ===== */
header {
  background: linear-gradient(135deg, #4B2D83 0%, #2D1B4E 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  max-width: var(--max-width);
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 10px;
}

.logo h1 {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 1px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  background: linear-gradient(90deg, #FFFFFF, #B79CFF);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    text-shadow: 0 0 10px rgba(183, 156, 255, 0.5);
  }
  to {
    text-shadow: 0 0 20px rgba(183, 156, 255, 0.9);
  }
}

.logo h1 span {
  color: var(--primary-light);
  -webkit-text-fill-color: var(--primary-light);
  font-size: 1.2em;
}

/* Navigation */
nav.main-nav {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

nav.main-nav::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(183, 156, 255, 0.5), transparent);
}

nav.main-nav ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

nav.main-nav ul li a {
  display: block;
  padding: 14px 24px;
  color: #F0EBFF;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

nav.main-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--primary-light);
  border-radius: 3px;
  transition: width 0.3s ease;
}

nav.main-nav ul li a:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  text-decoration: none;
}

nav.main-nav ul li a:hover::after {
  width: 100%;
}

/* ===== Main ===== */
main {
  padding: 40px 0;
  min-height: 60vh;
}

/* ===== Section Titles ===== */
.section-title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--primary);
  display: inline-block;
  position: relative;
  animation: fadeInUp 0.6s ease-out;
}

.section-title::before {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-light), transparent);
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease-out 0.1s both;
}

/* ===== Grid System ===== */
.grid {
  display: grid;
  gap: 24px;
}

.grid-6 {
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

/* ===== Cards ===== */
.card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  animation: fadeInUp 0.6s ease-out;
  border: 1px solid var(--border);
}

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

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.card:hover::before {
  transform: scaleX(1);
}

.card img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.card-body {
  padding: 16px;
}

.card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.4;
}

.card-text {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 4px;
  line-height: 1.5;
}

.card-meta {
  font-size: 13px;
  color: var(--text-muted);
  opacity: 0.8;
  margin-top: 8px;
}

/* ===== Badge ===== */
.badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #FFFFFF;
  font-size: 12px;
  padding: 2px 12px;
  border-radius: 20px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(124, 92, 252, 0.3);
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #FFFFFF;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(124, 92, 252, 0.3);
  position: relative;
  overflow: hidden;
}

.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: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #FFFFFF;
  text-decoration: none;
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(124, 92, 252, 0.4);
}

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

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  box-shadow: none;
}

.btn-outline:hover {
  background: var(--primary);
  color: #FFFFFF;
}

.btn-light {
  background: #FFFFFF;
  color: var(--primary-dark);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-light:hover {
  background: #F0EBFF;
  color: var(--primary-dark);
  transform: scale(1.05);
}

.btn-group {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

/* ===== Detail Section ===== */
.detail-section {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  animation: fadeInUp 0.6s ease-out;
}

.detail-section h3 {
  font-size: 22px;
  color: var(--text);
  margin-bottom: 16px;
  position: relative;
  padding-left: 16px;
}

.detail-section h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 20px;
  background: var(--primary);
  border-radius: 2px;
}

.detail-section p {
  margin-bottom: 14px;
  color: var(--text);
  line-height: 1.8;
}

.detail-section img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.detail-section img:hover {
  transform: scale(1.02);
}

/* ===== Character Cards ===== */
.character-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
  animation: fadeInUp 0.6s ease-out;
}

.character-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

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

.character-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
  border: 3px solid var(--primary);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(124, 92, 252, 0.3);
}

.character-card:hover img {
  transform: scale(1.05);
  border-color: var(--primary-light);
}

.character-card h3 {
  font-size: 20px;
  color: var(--text);
  margin-bottom: 8px;
}

.character-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* ===== Comments ===== */
.comment-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  animation: fadeInUp 0.6s ease-out;
}

.comment-item {
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 20px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--primary);
  transition: all 0.3s ease;
  border: 1px solid var(--border);
}

.comment-item:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-hover);
  border-left-color: var(--primary-light);
}

.comment-item .user {
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  font-size: 16px;
}

.comment-item .time {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.comment-item p {
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
}

/* ===== Sidebar ===== */
.sidebar {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  animation: fadeInUp 0.6s ease-out;
}

.sidebar h3 {
  font-size: 20px;
  color: var(--text);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--primary);
  position: relative;
}

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

.rank-list {
  list-style: none;
}

.rank-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
}

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

.rank-list li:hover {
  padding-left: 10px;
  background: rgba(124, 92, 252, 0.05);
}

.rank-num {
  font-weight: 800;
  color: var(--primary);
  margin-right: 12px;
  font-size: 18px;
  min-width: 30px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.stat-item {
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow);
}

.stat-item .num {
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

/* ===== App Download ===== */
.app-download {
  background: linear-gradient(135deg, #4B2D83, #2D1B4E);
  border-radius: 24px;
  padding: 48px 32px;
  text-align: center;
  color: #FFFFFF;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.6s ease-out;
}

.app-download::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(183, 156, 255, 0.1) 0%, transparent 50%);
  animation: rotate 20s linear infinite;
}

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

.app-download h2 {
  color: #FFFFFF;
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.app-download p {
  color: #F0EBFF;
  margin-bottom: 24px;
  font-size: 16px;
  position: relative;
  z-index: 1;
}

.app-download .btn-group {
  position: relative;
  z-index: 1;
}

/* ===== Footer ===== */
footer {
  background: linear-gradient(135deg, #2D1B4E, #1A0F30);
  color: #F0EBFF;
  padding: 40px 0 20px;
  margin-top: 40px;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(183, 156, 255, 0.3), transparent);
}

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

.footer-links a {
  color: var(--primary-light);
  transition: all 0.3s ease;
  position: relative;
}

.footer-links a:hover {
  color: #FFFFFF;
  text-decoration: none;
  transform: translateY(-2px);
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #FFFFFF;
  transition: width 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 13px;
  color: var(--primary-light);
  gap: 12px;
}

.footer-bottom a {
  color: var(--primary-light);
  margin-right: 12px;
}

.footer-bottom a:hover {
  color: #FFFFFF;
}

/* ===== Layout ===== */
.layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
}

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

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

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

/* Scroll animations */
.card, .detail-section, .character-card, .comment-item, .sidebar, .app-download {
  animation: fadeInUp 0.6s ease-out;
  animation-timeline: view();
  animation-range: entry 0% entry 50%;
}

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

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

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 4px;
}

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

/* ===== Selection ===== */
::selection {
  background: var(--primary);
  color: #FFFFFF;
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
  .container {
    padding: 0 16px;
  }
  
  .grid-6 {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
  }
}

@media (max-width: 992px) {
  .layout {
    grid-template-columns: 1fr;
  }
  
  .grid-4 {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }
  
  .detail-section {
    padding: 24px;
  }
}

@media (max-width: 768px) {
  .header-top {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  
  nav.main-nav ul {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  
  nav.main-nav ul::-webkit-scrollbar {
    display: none;
  }
  
  nav.main-nav ul li a {
    padding: 12px 16px;
    font-size: 14px;
    white-space: nowrap;
  }
  
  .section-title {
    font-size: 22px;
  }
  
  .grid-6 {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .detail-section {
    padding: 16px;
  }
  
  .character-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .comment-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .btn-group {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
  
  .app-download {
    padding: 32px 20px;
  }
  
  .app-download h2 {
    font-size: 28px;
  }
  
  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .stat-item .num {
    font-size: 24px;
  }
  
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .detail-section img {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }
  
  .grid-6 {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  
  .grid-4, .grid-3 {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  
  .character-list {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  
  .card-body {
    padding: 12px;
  }
  
  .card-title {
    font-size: 15px;
  }
  
  .card-text {
    font-size: 13px;
  }
  
  .card-meta {
    font-size: 12px;
  }
  
  .detail-section {
    padding: 12px;
  }
  
  .detail-section h3 {
    font-size: 18px;
  }
  
  .sidebar {
    padding: 16px;
  }
  
  .rank-list li {
    font-size: 13px;
  }
  
  .rank-num {
    font-size: 16px;
  }
  
  .comment-item {
    padding: 16px;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }
  
  .app-download {
    padding: 24px 16px;
    border-radius: 16px;
  }
  
  .app-download h2 {
    font-size: 24px;
  }
  
  .app-download p {
    font-size: 14px;
  }
  
  .header-top {
    padding: 12px 16px;
  }
  
  .logo h1 {
    font-size: 24px;
  }
  
  main {
    padding: 24px 0;
  }
  
  .section-title {
    font-size: 20px;
    margin-bottom: 16px;
  }
  
  .section-subtitle {
    font-size: 14px;
  }
}

/* ===== Reduced Motion ===== */
@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 ===== */
.text-center {
  text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

/* Focus styles for accessibility */
:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Print styles */
@media print {
  header, nav, footer, .app-download, .sidebar {
    display: none !important;
  }
  
  body {
    background: #FFFFFF;
    color: #000000;
  }
  
  .card, .detail-section, .character-card, .comment-item {
    box-shadow: none;
    border: 1px solid #ddd;
  }
}
```