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

:root {
  --primary: #7C5CFC;
  --primary-light: #9B7FFF;
  --primary-dark: #4C1D95;
  --secondary: #4A6CF7;
  --bg-primary: #F8F4FF;
  --bg-secondary: #FFFFFF;
  --bg-dark: #1A1A2E;
  --text-primary: #1A1A2E;
  --text-secondary: #2D2D44;
  --text-light: #FFFFFF;
  --text-muted: #E9E4FF;
  --border-light: #F0EBFF;
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 25px rgba(0, 0, 0, 0.15);
  --gradient-hero: linear-gradient(135deg, #7C5CFC 0%, #4A6CF7 100%);
  --gradient-header: linear-gradient(135deg, #4C1D95 0%, #2D2D44 100%);
  --gradient-app: linear-gradient(135deg, #2D2D44 0%, #4C1D95 100%);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --transition-fast: all 0.3s ease;
  --transition-slow: all 0.5s ease;
}

/* Dark mode variables */
@media (prefers-color-scheme: dark) {
  :root {
    --bg-primary: #12121F;
    --bg-secondary: #1E1E35;
    --text-primary: #E9E4FF;
    --text-secondary: #C4B8E8;
    --border-light: #2D2D44;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 25px rgba(0, 0, 0, 0.5);
    --bg-primary-light: #1E1E35;
  }
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 0.5s ease, color 0.5s ease;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition-fast);
}

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

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

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

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

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

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

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

/* Scroll animation classes */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== HEADER ===== */
header {
  background: var(--gradient-header);
  padding: 1.5rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: linear-gradient(135deg, rgba(76, 29, 149, 0.95) 0%, rgba(45, 45, 68, 0.95) 100%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.logo h1 {
  color: var(--text-light);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  transition: var(--transition-fast);
}

.logo h1::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--primary-light);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.logo h1:hover::after {
  width: 100%;
}

nav ul {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
  gap: 0.5rem;
}

nav ul li a {
  color: var(--text-muted);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: var(--transition-fast);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

nav ul li a:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--text-light);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ===== MAIN ===== */
main {
  padding: 2rem 0;
}

/* ===== HERO ===== */
.hero {
  background: var(--gradient-hero);
  border-radius: var(--radius-md);
  padding: 3rem;
  margin-bottom: 3rem;
  color: var(--text-light);
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  animation: pulse 3s ease infinite;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-light);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.6s ease 0.2s both;
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.6s ease 0.4s both;
}

/* ===== SECTION TITLES ===== */
.section-title {
  color: var(--text-primary);
  font-size: 2rem;
  margin: 3rem 0 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--primary);
  display: inline-block;
  position: relative;
  transition: var(--transition-fast);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 50%;
  height: 3px;
  background: var(--primary-light);
  transition: width 0.3s ease;
}

.section-title:hover::after {
  width: 100%;
}

/* ===== GRID & CARDS ===== */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-fast);
  position: relative;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: fadeInUp 0.6s ease both;
}

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }
.card:nth-child(4) { animation-delay: 0.4s; }
.card:nth-child(5) { animation-delay: 0.5s; }
.card:nth-child(6) { animation-delay: 0.6s; }
.card:nth-child(7) { animation-delay: 0.7s; }
.card:nth-child(8) { animation-delay: 0.8s; }
.card:nth-child(9) { animation-delay: 0.9s; }
.card:nth-child(10) { animation-delay: 1s; }
.card:nth-child(11) { animation-delay: 1.1s; }
.card:nth-child(12) { animation-delay: 1.2s; }

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

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

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

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

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

.card-body {
  padding: 1rem;
}

.card-body h3 {
  color: var(--text-primary);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.card-body h3:hover {
  color: var(--primary);
}

.card-body p {
  color: var(--text-primary);
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

/* ===== TAGS ===== */
.tag {
  display: inline-block;
  background: var(--border-light);
  color: var(--text-secondary);
  padding: 0.2rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  margin: 0.2rem 0.2rem 0 0;
  transition: var(--transition-fast);
  cursor: pointer;
}

.tag:hover {
  background: var(--primary);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(124, 92, 252, 0.3);
}

/* ===== DETAIL SECTION ===== */
.detail-section {
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  padding: 2rem;
  margin-bottom: 3rem;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: fadeInUp 0.8s ease;
}

.detail-section h3 {
  color: var(--text-primary);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 10px;
}

.detail-section h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.detail-section h4 {
  color: var(--text-secondary);
  font-size: 1.2rem;
  margin: 1.5rem 0 0.8rem;
  transition: color 0.3s ease;
}

.detail-section h4:hover {
  color: var(--primary);
}

.detail-section p {
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.8;
}

/* ===== CHARACTERS ===== */
.characters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

.character-card {
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition-fast);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: scaleIn 0.6s ease both;
}

.character-card:nth-child(1) { animation-delay: 0.1s; }
.character-card:nth-child(2) { animation-delay: 0.2s; }
.character-card:nth-child(3) { animation-delay: 0.3s; }
.character-card:nth-child(4) { animation-delay: 0.4s; }

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

.character-card img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid var(--primary);
  transition: var(--transition-fast);
  animation: float 3s ease-in-out infinite;
}

.character-card:hover img {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(124, 92, 252, 0.4);
}

.character-card h3 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.character-card p {
  color: var(--text-primary);
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

/* ===== PLATFORM FEATURES ===== */
.platform-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.feature-item {
  background: var(--bg-primary);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  border-left: 4px solid var(--primary);
  transition: var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg, transparent, rgba(124, 92, 252, 0.1));
  transition: width 0.5s ease;
}

.feature-item:hover::before {
  width: 100%;
}

.feature-item:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-md);
}

.feature-item h4 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.feature-item p {
  color: var(--text-primary);
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

/* ===== APP DOWNLOAD ===== */
.app-download {
  background: var(--gradient-app);
  border-radius: var(--radius-md);
  padding: 3rem;
  text-align: center;
  color: var(--text-light);
  margin: 3rem 0;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease;
}

.app-download::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  animation: pulse 4s ease infinite;
}

.app-download h2 {
  color: var(--text-light);
  font-size: 2rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.app-download p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  background: var(--primary);
  color: var(--text-light);
  padding: 0.8rem 2rem;
  border-radius: var(--radius-lg);
  margin: 0.5rem;
  font-weight: 600;
  border: 2px solid transparent;
  transition: var(--transition-fast);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.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;
  z-index: -1;
}

.btn:hover {
  background: var(--bg-secondary);
  color: var(--primary-dark);
  text-decoration: none;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(124, 92, 252, 0.3);
}

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

.btn-outline {
  background: transparent;
  border: 2px solid var(--text-light);
}

.btn-outline:hover {
  background: var(--text-light);
  color: var(--primary-dark);
  border-color: var(--text-light);
}

/* ===== COMMENTS ===== */
.comments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.comment-card {
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: fadeInUp 0.6s ease both;
  position: relative;
  overflow: hidden;
}

.comment-card:nth-child(1) { animation-delay: 0.05s; }
.comment-card:nth-child(2) { animation-delay: 0.1s; }
.comment-card:nth-child(3) { animation-delay: 0.15s; }
.comment-card:nth-child(4) { animation-delay: 0.2s; }
.comment-card:nth-child(5) { animation-delay: 0.25s; }
.comment-card:nth-child(6) { animation-delay: 0.3s; }
.comment-card:nth-child(7) { animation-delay: 0.35s; }
.comment-card:nth-child(8) { animation-delay: 0.4s; }
.comment-card:nth-child(9) { animation-delay: 0.45s; }
.comment-card:nth-child(10) { animation-delay: 0.5s; }
.comment-card:nth-child(11) { animation-delay: 0.55s; }
.comment-card:nth-child(12) { animation-delay: 0.6s; }
.comment-card:nth-child(13) { animation-delay: 0.65s; }
.comment-card:nth-child(14) { animation-delay: 0.7s; }
.comment-card:nth-child(15) { animation-delay: 0.75s; }

.comment-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  right: 10px;
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.1;
  font-family: Georgia, serif;
}

.comment-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.comment-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.comment-user {
  color: var(--primary);
  font-weight: 600;
  transition: color 0.3s ease;
}

.comment-user:hover {
  color: var(--primary-light);
}

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

.comment-text {
  color: var(--text-primary);
}

/* ===== SIDEBAR ===== */
.sidebar {
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  padding: 2rem;
  margin: 3rem 0;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: fadeInRight 0.8s ease;
}

.sidebar h3 {
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 10px;
}

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

.rank-item {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-primary);
  transition: var(--transition-fast);
  cursor: pointer;
}

.rank-item:hover {
  background: var(--bg-primary);
  padding-left: 1rem;
  padding-right: 1rem;
  border-radius: 8px;
}

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

.rank-number {
  color: var(--primary);
  font-weight: 700;
  margin-right: 1rem;
  transition: transform 0.3s ease;
}

.rank-item:hover .rank-number {
  transform: scale(1.2);
}

/* ===== STATS ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.stat-box {
  background: var(--bg-primary);
  padding: 1.5rem;
  border-radius: var(--radius-sm);
  text-align: center;
  transition: var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.stat-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.stat-box:hover::before {
  transform: scaleX(1);
}

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

.stat-number {
  font-size: 2rem;
  color: var(--primary-dark);
  font-weight: 700;
  transition: color 0.3s ease;
}

.stat-box:hover .stat-number {
  color: var(--primary);
}

.stat-label {
  color: var(--text-primary);
  margin-top: 0.5rem;
}

/* ===== FOOTER ===== */
footer {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 3rem 0 1rem;
  margin-top: 3rem;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary));
  background-size: 200% 100%;
  animation: shimmer 3s ease infinite;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer-links a {
  color: var(--text-muted);
  transition: var(--transition-fast);
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-light);
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: var(--text-light);
  text-decoration: none;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-bottom a {
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.footer-bottom a:hover {
  color: var(--text-light);
}

/* ===== HOVER EFFECTS & MICRO-INTERACTIONS ===== */
.card .tag:hover {
  background: var(--primary);
  color: #fff;
  transform: scale(1.05);
}

.card-body h3 {
  transition: color 0.3s ease;
}

.card-body h3:hover {
  color: var(--primary);
}

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

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

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 5px;
  transition: background 0.3s ease;
}

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

/* ===== SELECTION ===== */
::selection {
  background: var(--primary);
  color: var(--text-light);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
  
  .hero h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 2rem;
  }
  
  .hero h2 {
    font-size: 1.8rem;
  }
  
  .grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
  }
  
  .card img {
    height: 200px;
  }
  
  .app-download {
    padding: 2rem;
  }
  
  .detail-section {
    padding: 1.5rem;
  }
  
  nav ul {
    justify-content: center;
  }
  
  .header-inner {
    justify-content: center;
    text-align: center;
  }
  
  .logo {
    width: 100%;
    text-align: center;
  }
  
  .logo h1 {
    font-size: 1.5rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .character-card img {
    width: 120px;
    height: 120px;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .comments-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .platform-features {
    grid-template-columns: 1fr;
  }
  
  .characters-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .hero {
    padding: 1.5rem;
    border-radius: 15px;
  }
  
  .hero h2 {
    font-size: 1.5rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
  }
  
  .card img {
    height: 160px;
  }
  
  .card-body {
    padding: 0.8rem;
  }
  
  .card-body h3 {
    font-size: 1rem;
  }
  
  .card-body p {
    font-size: 0.8rem;
  }
  
  .btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .app-download {
    padding: 1.5rem;
  }
  
  .app-download h2 {
    font-size: 1.5rem;
  }
  
  .footer-links {
    gap: 1rem;
  }
  
  .footer-links a {
    font-size: 0.85rem;
  }
  
  .detail-section {
    padding: 1rem;
  }
  
  .detail-section h3 {
    font-size: 1.4rem;
  }
  
  .detail-section h4 {
    font-size: 1.1rem;
  }
  
  .character-card {
    padding: 1rem;
  }
  
  .character-card img {
    width: 100px;
    height: 100px;
  }
  
  .character-card h3 {
    font-size: 1rem;
  }
  
  .character-card p {
    font-size: 0.8rem;
  }
  
  .comment-card {
    padding: 1rem;
  }
  
  .sidebar {
    padding: 1.5rem;
  }
  
  .stat-box {
    padding: 1rem;
  }
  
  .stat-number {
    font-size: 1.2rem;
  }
}

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

/* ===== PRINT ===== */
@media print {
  header, footer, .app-download, .sidebar, .btn {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  .card, .detail-section, .comment-card, .character-card {
    box-shadow: none;
    border: 1px solid #ddd;
  }
}
```