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

:root {
  --text-primary: #2A2342;
  --text-secondary: #6B6580;
  --accent-primary: #6C5CE7;
  --accent-secondary: #8E44AD;
  --accent-warm: #D4965C;
  --deep-purple: #4A148C;
  --border-radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(108, 92, 231, 0.08);
  --shadow-md: 0 4px 20px rgba(108, 92, 231, 0.12);
  --shadow-lg: 0 8px 36px rgba(108, 92, 231, 0.15);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --bg-stage-0: #F3EEF8;
  --bg-stage-1: #EDE4F5;
  --bg-stage-2: #E8DAEF;
  --bg-stage-3: #DFCFEC;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  line-height: 1.7;
  color: var(--text-primary);
  background: linear-gradient(to bottom, #F3EEF8, #DFCFEC);
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
}body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(108, 92, 231, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 85% 60%, rgba(142, 68, 173, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 50% 90%, rgba(212, 150, 92, 0.03) 0%, transparent 40%);
  pointer-events: none;
  z-index: -1;
}

.scroll-indicator {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 3px;
  z-index: 1000;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.1s;
}

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

.hero {
  text-align: center;
  padding: 80px 20px 60px;
  position: relative;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.hero h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.2rem, 6vw, 3.5rem);
  font-weight: 800;
  color: var(--deep-purple);
  letter-spacing: -1px;
  margin-bottom: 12px;
  text-shadow: 0 3px 16px rgba(74, 20, 140, 0.2);
}

.hero .subtitle {
  font-size: clamp(0.95rem, 2vw, 1.3rem);
  color: var(--accent-primary);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.hero .tagline {
  font-size: clamp(0.85rem, 1.8vw, 1rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 30px;
}

.hero-lotus {
  text-align: center;
  margin: 20px auto;
  opacity: 0;
  animation: fadeIn 0.8s ease forwards 0.5s;
}

.hero-lotus img {
  width: 400px;
  height: 225px;
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px auto;
  max-width: 400px;
  gap: 12px;
  opacity: 0;
  animation: fadeIn 0.6s ease forwards 0.3s;
}

.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--accent-primary), transparent);
}

.divider span { font-size: 1.3rem; color: var(--accent-primary); }

.translate-wrap {
  text-align: center;
  padding: 10px 0;
  opacity: 0;
  animation: fadeIn 0.6s ease forwards 0.2s;
}.article-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  line-height: 1.8;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.5s;
}

.article-title-block {
  text-align: center;
  margin: 40px 0 30px;
  padding: 36px 30px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  border-left: 6px solid var(--accent-primary);
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.8s;
}

.article-title-block h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: var(--deep-purple);
  margin-bottom: 12px;
  line-height: 1.3;
}

.article-title-block .author {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--accent-secondary);
  font-size: 1.1rem;
  margin: 10px 0;
}

.article-title-block .copyright {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-top: 10px;
}

.authors-note {
  max-width: 700px;
  margin: 20px auto 30px;
  padding: 16px 24px;
  background: rgba(212, 150, 92, 0.1);
  border-left: 4px solid var(--accent-warm);
  border-radius: 0 var(--border-radius-lg) var(--border-radius-lg) 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-style: italic;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 1s;
}

.nav-link {
  text-align: center;
  margin: 25px 0;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 1.1s;
}

.nav-link a {
  color: var(--accent-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 12px 28px;
  background: rgba(108, 92, 231, 0.1);
  border-radius: 9999px;
  transition: var(--transition);
  display: inline-block;
}

.nav-link a:hover {
  background: rgba(108, 92, 231, 0.2);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.article-text p {
  margin-bottom: 1.2em;
  font-size: 1.05rem;
  text-align: justify;
}

.quote-inline {
  display: block;
  margin: 20px 0;
  padding: 20px 28px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-left: 4px solid var(--accent-warm);
  border-radius: 0 var(--border-radius-lg) var(--border-radius-lg) 0;
  font-style: italic;
  color: var(--text-primary);
  font-size: 1rem;
  line-height: 1.7;
  box-shadow: var(--shadow-sm);
}

.indented-quote {
  margin: 30px 0;
  padding: 28px 36px;
  background: rgba(142, 68, 173, 0.05);
  border-left: 4px solid var(--accent-secondary);
  border-radius: 0 var(--border-radius-lg) var(--border-radius-lg) 0;
  font-style: italic;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
}

.note-ref {
  color: var(--accent-primary);
  font-weight: bold;
  font-size: 0.95rem;
}

.end-text {
  text-align: center;
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--deep-purple);
  font-size: 1.4rem;
  margin-top: 50px;
  font-weight: bold;
}.bottom-nav {
  text-align: center;
  margin: 30px 0 50px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 1.4s;
}

.bottom-nav a {
  color: var(--accent-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 28px;
  background: rgba(108, 92, 231, 0.1);
  border-radius: 9999px;
  transition: var(--transition);
  max-width: 320px;
  margin: 0 auto;
}

.bottom-nav a:hover {
  background: rgba(108, 92, 231, 0.2);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.footer {
  text-align: center;
  padding: 50px 20px;
  margin-top: 50px;
  background: linear-gradient(to bottom, transparent, rgba(108, 92, 231, 0.08));
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 1.7s;
}

.footer .motto {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer .freefind-search { margin: 20px auto; }
.footer .freefind-search form { display: inline-flex; gap: 8px; }

.footer .freefind-search input[type="text"] {
  padding: 10px 20px;
  border: 2px solid rgba(108, 92, 231, 0.25);
  border-radius: 9999px;
  outline: none;
  font-size: 0.95rem;
  width: 280px;
  background: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.footer .freefind-search input[type="text"]:focus {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 4px rgba(108, 92, 231, 0.15);
}

.footer .freefind-search button[type="submit"] {
  padding: 10px 28px;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
}

.footer .freefind-search button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.footer-copyright {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 18px;
}@media (max-width: 768px) {
  .hero { padding: 50px 16px 40px; }
  .hero h1 { font-size: 2rem; }
  .article-title-block h1 { font-size: 1.5rem; }
  .article-title-block { padding: 24px 20px; }
  .hero-lotus img { width: 100%; height: auto; max-width: 400px; }
  .article-container { padding: 0 16px; }
  .indented-quote { padding: 20px; }
  .quote-inline { padding: 16px 20px; }
  .footer .freefind-search form { flex-direction: column; align-items: center; }
  .footer .freefind-search input[type="text"] { width: 90%; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.6rem; }
  .article-title-block h1 { font-size: 1.3rem; }
  .article-title-block { padding: 20px; }
  .indented-quote { padding: 16px; }
  .quote-inline { padding: 14px 16px; }
  .bottom-nav { gap: 10px; }
  .footer .freefind-search button[type="submit"] { width: 100%; }
}