```css
:root {
  --primary: #6C5CE7;
  --primary-light: #A29BFE;
  --secondary: #FD79A8;
  --accent: #00CEC9;
  --bg: #0F0F1A;
  --bg-card: rgba(255, 255, 255, 0.06);
  --bg-card-hover: rgba(255, 255, 255, 0.12);
  --text: #E8E8F0;
  --text-muted: #A0A0B8;
  --text-bright: #FFFFFF;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-hover: 0 16px 48px rgba(108, 92, 231, 0.3);
  --radius: 20px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --gradient: linear-gradient(135deg, #6C5CE7, #FD79A8, #00CEC9);
  --gradient-soft: linear-gradient(135deg, rgba(108, 92, 231, 0.3), rgba(253, 121, 168, 0.3), rgba(0, 206, 201, 0.3));
  --glass: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
}

[data-theme="light"] {
  --bg: #F5F6FA;
  --bg-card: rgba(0, 0, 0, 0.04);
  --bg-card-hover: rgba(0, 0, 0, 0.08);
  --text: #2D3436;
  --text-muted: #636E72;
  --text-bright: #2D3436;
  --border: rgba(0, 0, 0, 0.08);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 16px 48px rgba(108, 92, 231, 0.2);
  --glass: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(0, 0, 0, 0.08);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) var(--bg);
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background 0.5s ease, color 0.5s ease;
  min-height: 100vh;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: var(--gradient-soft);
  filter: blur(120px);
  opacity: 0.3;
  z-index: -1;
  pointer-events: none;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

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

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

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

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

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

ul, ol {
  list-style: none;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: rgba(15, 15, 26, 0.8);
  border-bottom: 1px solid var(--glass-border);
  transition: all 0.3s ease;
}

[data-theme="light"] header {
  background: rgba(245, 246, 250, 0.85);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}

.nav-container h1 {
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px;
  white-space: nowrap;
  animation: gradientShift 6s ease infinite;
  background-size: 200% 200%;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.nav-container h1 a {
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.nav-links a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: 0;
  transition: opacity var(--transition);
  z-index: -1;
  border-radius: 50px;
}

.nav-links a:hover {
  color: var(--text-bright);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.nav-links a:hover::before {
  opacity: 0.15;
}

/* Main */
main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

section {
  animation: fadeInUp 0.8s ease both;
}

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

section h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 32px;
  position: relative;
  display: inline-block;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
  line-height: 1.3;
}

section h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60%;
  height: 3px;
  background: var(--gradient);
  border-radius: 2px;
}

/* Movie Grid */
.movie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}

.movie-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 20px;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: var(--glass-shadow);
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  scroll-margin: 100px;
}

.movie-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.8s ease;
}

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

.movie-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-light);
  background: var(--glass);
}

.movie-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  transition: transform var(--transition);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

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

.movie-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-bright);
  transition: color var(--transition);
}

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

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

.movie-card p:last-of-type {
  margin-bottom: 0;
}

/* Featured Grid */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.featured-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: var(--glass-shadow);
  transition: all var(--transition);
  cursor: pointer;
  scroll-margin: 100px;
}

.featured-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--secondary);
}

.featured-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 20px;
  transition: transform var(--transition);
}

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

.featured-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-bright);
}

.featured-card p {
  color: var(--text-muted);
  margin-bottom: 8px;
  line-height: 1.7;
}

.featured-card p:first-of-type {
  font-size: 0.95rem;
  border-left: 3px solid var(--primary);
  padding-left: 12px;
  margin-bottom: 16px;
  color: var(--text);
}

/* Detail Section */
#detail {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: var(--glass-shadow);
  scroll-margin: 100px;
}

#detail article {
  max-width: 900px;
  margin: 0 auto;
}

#detail h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 28px 0 12px;
  color: var(--primary-light);
  position: relative;
  padding-left: 16px;
}

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

#detail p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 12px;
  text-align: justify;
}

/* Cast Grid */
.cast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.cast-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 24px;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: var(--glass-shadow);
  transition: all var(--transition);
  cursor: pointer;
  scroll-margin: 100px;
}

.cast-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent);
}

.cast-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
  border: 3px solid var(--gradient);
  padding: 3px;
  background: var(--gradient);
  transition: transform var(--transition);
}

.cast-card:hover img {
  transform: scale(1.05) rotate(5deg);
}

.cast-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-bright);
}

.cast-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 6px;
  line-height: 1.5;
}

/* Platform Intro */
#platform-intro {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: var(--glass-shadow);
  scroll-margin: 100px;
}

#platform-intro p {
  margin-bottom: 16px;
  line-height: 1.8;
  color: var(--text-muted);
}

#platform-intro ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  margin: 24px 0;
}

#platform-intro li {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 16px;
  font-size: 0.9rem;
  transition: all var(--transition);
  cursor: pointer;
}

#platform-intro li:hover {
  transform: translateX(4px);
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

#platform-intro li strong {
  color: var(--primary-light);
  margin-right: 8px;
}

/* App Download */
#app-download {
  background: var(--gradient);
  border-radius: var(--radius-lg);
  padding: 48px;
  color: white;
  position: relative;
  overflow: hidden;
  scroll-margin: 100px;
  box-shadow: var(--shadow-hover);
}

#app-download::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(45deg);
  animation: shimmer 3s ease infinite;
}

@keyframes shimmer {
  0%, 100% { transform: rotate(45deg) translateX(0); }
  50% { transform: rotate(45deg) translateX(20px); }
}

#app-download h2 {
  color: white;
  -webkit-text-fill-color: white;
  position: relative;
  z-index: 1;
}

#app-download h2::after {
  background: rgba(255, 255, 255, 0.5);
}

#app-download p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

#app-download ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin: 24px 0;
  position: relative;
  z-index: 1;
}

#app-download li {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.9rem;
  transition: all var(--transition);
}

#app-download li:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
}

.download-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
  position: relative;
  z-index: 1;
}

.download-buttons a {
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition);
  background: white;
  color: var(--primary);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.download-buttons a:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.download-buttons a:nth-child(2) {
  background: transparent;
  color: white;
  border: 2px solid white;
  box-shadow: none;
}

.download-buttons a:nth-child(2):hover {
  background: rgba(255, 255, 255, 0.1);
}

.download-buttons a:nth-child(3) {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: none;
}

.download-buttons a:nth-child(3):hover {
  background: rgba(255, 255, 255, 0.3);
}

/* User Reviews */
.reviews-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.review-item {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 24px;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: var(--glass-shadow);
  transition: all var(--transition);
  cursor: pointer;
  scroll-margin: 100px;
}

.review-item:hover {
  transform: translateY(-4px) rotate(0.5deg);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent);
}

.review-item p:first-child {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.review-item strong {
  color: var(--primary-light);
  font-size: 1rem;
}

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

.review-item p:last-child {
  color: var(--text);
  line-height: 1.7;
}

/* Aside */
aside {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

aside section {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 24px;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: var(--glass-shadow);
  transition: all var(--transition);
  scroll-margin: 100px;
}

aside section:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}

aside h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--primary-light);
  background: none;
  -webkit-text-fill-color: var(--primary-light);
}

aside h2::after {
  display: none;
}

aside ol, aside ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

aside li {
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  transition: all var(--transition);
  font-size: 0.9rem;
  cursor: pointer;
}

aside li:hover {
  transform: translateX(4px);
  background: var(--gradient-soft);
  border-color: var(--primary);
}

aside li a {
  color: var(--text);
  font-weight: 500;
}

aside li a:hover {
  color: var(--primary-light);
}

/* Footer */
footer {
  margin-top: 80px;
  padding: 48px 24px 24px;
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-top: 1px solid var(--glass-border);
}

footer section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

#friend-links {
  margin-bottom: 32px;
}

#friend-links h2 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--primary-light);
}

#friend-links ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

#friend-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid var(--glass-border);
  transition: all var(--transition);
  background: var(--glass);
}

#friend-links a:hover {
  color: var(--primary-light);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

#copyright {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

#copyright p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 8px;
}

#copyright a {
  color: var(--primary-light);
}

#copyright a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 1024px) {
  .nav-container {
    padding: 0 16px;
    gap: 16px;
  }

  .nav-links a {
    padding: 6px 12px;
    font-size: 0.85rem;
  }

  main {
    padding: 24px 16px;
    gap: 40px;
  }

  section h2 {
    font-size: 1.8rem;
  }

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

  .featured-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
  }

  .cast-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }

  #detail, #platform-intro {
    padding: 28px;
  }

  #app-download {
    padding: 32px;
  }
}

@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    height: auto;
    padding: 16px;
    gap: 12px;
  }

  .nav-links {
    justify-content: center;
    width: 100%;
    gap: 6px;
  }

  .nav-links a {
    padding: 6px 10px;
    font-size: 0.8rem;
  }

  main {
    padding: 16px 12px;
    gap: 32px;
  }

  section h2 {
    font-size: 1.5rem;
  }

  .movie-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
  }

  .movie-card {
    padding: 12px;
  }

  .movie-card h3 {
    font-size: 1rem;
  }

  .movie-card p {
    font-size: 0.75rem;
  }

  .featured-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .featured-card {
    padding: 20px;
  }

  .featured-card h3 {
    font-size: 1.2rem;
  }

  .cast-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .cast-card {
    padding: 16px;
  }

  #detail, #platform-intro {
    padding: 20px;
    border-radius: var(--radius);
  }

  #detail h3 {
    font-size: 1.2rem;
  }

  #app-download {
    padding: 24px;
    border-radius: var(--radius);
  }

  #app-download h2 {
    font-size: 1.5rem;
  }

  .download-buttons {
    flex-direction: column;
  }

  .download-buttons a {
    text-align: center;
    width: 100%;
  }

  aside {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  aside section {
    padding: 16px;
  }

  .reviews-list {
    grid-template-columns: 1fr;
  }

  .review-item {
    padding: 16px;
  }

  footer {
    padding: 32px 16px 16px;
  }

  footer section {
    padding: 0 12px;
  }

  #friend-links ul {
    gap: 8px;
  }

  #friend-links a {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
}

@media (max-width: 480px) {
  .nav-container h1 {
    font-size: 1.4rem;
  }

  .nav-links a {
    font-size: 0.75rem;
    padding: 4px 8px;
  }

  .movie-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .movie-card {
    padding: 10px;
  }

  .movie-card img {
    margin-bottom: 10px;
  }

  .movie-card h3 {
    font-size: 0.9rem;
  }

  .movie-card p {
    font-size: 0.7rem;
  }

  section h2 {
    font-size: 1.3rem;
  }

  .featured-card {
    padding: 16px;
  }

  .featured-card img {
    margin-bottom: 12px;
  }

  .featured-card h3 {
    font-size: 1.1rem;
  }

  .featured-card p {
    font-size: 0.85rem;
  }

  .cast-card img {
    width: 60px;
    height: 60px;
  }

  .cast-card h3 {
    font-size: 1rem;
  }

  .cast-card p {
    font-size: 0.8rem;
  }

  #detail p {
    font-size: 0.9rem;
  }

  #platform-intro ul {
    grid-template-columns: 1fr;
  }

  #app-download ul {
    grid-template-columns: 1fr;
  }

  .review-item p:first-child {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

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

:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Dark mode toggle support */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #0F0F1A;
    --bg-card: rgba(255, 255, 255, 0.06);
    --bg-card-hover: rgba(255, 255, 255, 0.12);
    --text: #E8E8F0;
    --text-muted: #A0A0B8;
    --text-bright: #FFFFFF;
    --border: rgba(255, 255, 255, 0.08);
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
  }
}

@media (prefers-color-scheme: light) {
  :root:not([data-theme="dark"]) {
    --bg: #F5F6FA;
    --bg-card: rgba(0, 0, 0, 0.04);
    --bg-card-hover: rgba(0, 0, 0, 0.08);
    --text: #2D3436;
    --text-muted: #636E72;
    --text-bright: #2D3436;
    --border: rgba(0, 0, 0, 0.08);
    --glass: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(0, 0, 0, 0.08);
  }
}

/* Animation for scroll */
@media (prefers-reduced-motion: no-preference) {
  section {
    animation: fadeInUp 0.8s ease both;
  }

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

  .featured-card:nth-child(1) { animation-delay: 0.2s; }
  .featured-card:nth-child(2) { animation-delay: 0.4s; }
  .featured-card:nth-child(3) { animation-delay: 0.6s; }
  .featured-card:nth-child(4) { animation-delay: 0.8s; }
  .featured-card:nth-child(5) { animation-delay: 1s; }
  .featured-card:nth-child(6) { animation-delay: 1.2s; }

  .cast-card:nth-child(1) { animation-delay: 0.1s; }
  .cast-card:nth-child(2) { animation-delay: 0.2s; }
  .cast-card:nth-child(3) { animation-delay: 0.3s; }
  .cast-card:nth-child(4) { animation-delay: 0.4s; }
  .cast-card:nth-child(5) { animation-delay: 0.5s; }
  .cast-card:nth-child(6) { animation-delay: 0.6s; }
}

/* Print */
@media print {
  header, footer, aside, .download-buttons {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  section {
    animation: none;
  }
}
```