:root {
  --maple: #C2410C;
  --ink: #292524;
  --autumn: #FB923C;
  --night: #120c0a;
  --night-light: #1c1412;
  --parchment: #f5f0e8;
  --text-main: #f5f0e8;
  --text-muted: #a8a29e;
  --shadow-maple: 0 0 30px rgba(194, 65, 12, 0.35);
  --shadow-ink: 0 8px 30px rgba(0, 0, 0, 0.5);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Noto Sans SC", system-ui, -apple-system, sans-serif;
  background: var(--night);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }

.font-calligraphy { font-family: "Ma Shan Zheng", cursive; }
.font-wei { font-family: "ZCOOL XiaoWei", serif; }

/* Header & Nav */
#main-header {
  background: linear-gradient(180deg, rgba(18,12,10,0.95) 0%, rgba(18,12,10,0.75) 60%, transparent 100%);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(251,146,60,0.1);
}
#main-header.scrolled {
  background: rgba(18,12,10,0.96);
  border-bottom-color: rgba(251,146,60,0.25);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Ma Shan Zheng", cursive;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  color: var(--text-main);
}
.nav-brand img { height: 42px; width: auto; filter: drop-shadow(0 0 8px rgba(194,65,12,0.5)); }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  position: relative;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.3s;
  padding: 0.25rem 0;
}
.nav-links a:hover, .nav-links a.active { color: var(--autumn); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--maple);
  border-radius: 2px;
}
.nav-cta {
  padding: 0.55rem 1.25rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--maple), #9a3412);
  color: #fff !important;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(194,65,12,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(194,65,12,0.5); }

.hamburger { display: flex; flex-direction: column; gap: 5px; padding: 8px; z-index: 60; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--autumn); transition: 0.3s; border-radius: 2px; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 40; opacity: 0; transition: opacity 0.3s;
}
.nav-overlay:not(.hidden) { opacity: 1; }
.mobile-nav {
  position: fixed; top: 0; right: 0; bottom: 0; width: 280px;
  background: rgba(28,20,18,0.98); backdrop-filter: blur(12px);
  border-left: 1px solid rgba(251,146,60,0.15);
  z-index: 50; transform: translateX(100%); transition: transform 0.3s ease;
  display: flex; flex-direction: column;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem; border-bottom: 1px solid rgba(251,146,60,0.15);
  font-family: "Ma Shan Zheng", cursive; font-size: 1.35rem; color: var(--autumn);
}
.nav-close { font-size: 1.25rem; color: var(--text-muted); }
.mobile-nav-links { display: flex; flex-direction: column; gap: 0.5rem; padding: 1rem 1.25rem; }
.mobile-nav-links a {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.85rem 1rem; border-radius: 0.5rem;
  font-size: 1.05rem; color: var(--text-main);
  transition: background 0.2s, color 0.2s;
}
.mobile-nav-links a:hover, .mobile-nav-links a.active { background: rgba(194,65,12,0.12); color: var(--autumn); }
.mobile-cta {
  margin-top: 0.75rem; justify-content: center;
  background: linear-gradient(135deg, var(--maple), #9a3412);
  color: #fff !important; font-weight: 700;
}

/* Hero */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background: radial-gradient(ellipse at 70% 30%, rgba(194,65,12,0.18) 0%, transparent 55%),
              radial-gradient(ellipse at 30% 80%, rgba(251,146,60,0.1) 0%, transparent 45%),
              var(--night);
  overflow: hidden; padding-top: 72px;
}
.hero-maple {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(194,65,12,0.12) 0%, transparent 25%),
    radial-gradient(circle at 80% 70%, rgba(251,146,60,0.08) 0%, transparent 30%);
  animation: mapleDrift 12s ease-in-out infinite alternate;
}
@keyframes mapleDrift {
  0% { transform: translate(0,0) scale(1); opacity: 0.7; }
  100% { transform: translate(-20px, 10px) scale(1.05); opacity: 1; }
}
.hero-fog {
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='200' height='200' viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
}
.hero-grid {
  position: relative; z-index: 10;
  display: grid; grid-template-columns: 1fr; gap: 2rem;
  align-items: center; min-height: calc(100vh - 72px);
}
@media (min-width: 768px) {
  .hero-grid { grid-template-columns: 1.1fr 0.9fr; }
}
.hero-content { padding: 2rem 0; }
.hero-badge-row { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1.25rem; }
.capsule-badge {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.35rem 0.85rem; border-radius: 9999px;
  border: 1px solid rgba(251,146,60,0.35);
  background: rgba(194,65,12,0.12);
  color: var(--autumn); font-size: clamp(0.75rem, 1.5vw, 0.85rem); font-weight: 500;
  backdrop-filter: blur(4px);
}
.hero-title {
  font-family: "Ma Shan Zheng", cursive;
  font-size: clamp(3rem, 10vw, 6.5rem);
  line-height: 1.05;
  background: linear-gradient(135deg, #fff 0%, var(--autumn) 50%, var(--maple) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  text-shadow: 0 10px 40px rgba(194,65,12,0.25);
  animation: titleFloat 4s ease-in-out infinite;
}
@keyframes titleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-subtitle {
  font-family: "ZCOOL XiaoWei", serif;
  font-size: clamp(1.15rem, 3vw, 1.75rem);
  color: var(--autumn); margin-top: 0.75rem;
}
.hero-desc {
  max-width: 520px; margin-top: 1.25rem;
  color: var(--text-muted); font-size: clamp(0.95rem, 2vw, 1.05rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.hero-visual {
  position: relative; display: flex; justify-content: center; align-items: center;
  min-height: 320px;
}
.hero-logo {
  position: relative; z-index: 5;
  width: clamp(220px, 45vw, 380px); max-width: 100%; height: auto;
  filter: drop-shadow(0 0 40px rgba(194,65,12,0.45));
  animation: logoPulse 3s ease-in-out infinite;
}
@keyframes logoPulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 30px rgba(194,65,12,0.4)); }
  50% { transform: scale(1.03); filter: drop-shadow(0 0 55px rgba(251,146,60,0.55)); }
}
.hero-ring {
  position: absolute; width: clamp(280px, 55vw, 480px); height: clamp(280px, 55vw, 480px);
  border: 1px solid rgba(251,146,60,0.2); border-radius: 50%;
  animation: ringRotate 12s linear infinite;
}
.hero-ring-2 {
  width: clamp(340px, 65vw, 560px); height: clamp(340px, 65vw, 560px);
  border-color: rgba(194,65,12,0.12);
  animation-direction: reverse; animation-duration: 16s;
}
@keyframes ringRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.scroll-hint {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  color: var(--autumn); font-size: 1.75rem; opacity: 0.7;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Buttons */
.btn-maple-glow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 1.75rem; border-radius: 9999px;
  background: linear-gradient(135deg, var(--maple), #9a3412);
  color: #fff; font-weight: 700; font-size: clamp(0.95rem, 2vw, 1.05rem);
  box-shadow: 0 0 25px rgba(194,65,12,0.45), inset 0 1px 0 rgba(255,255,255,0.15);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-maple-glow:hover { transform: translateY(-2px); box-shadow: 0 0 35px rgba(251,146,60,0.55), inset 0 1px 0 rgba(255,255,255,0.2); }
.btn-seal {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1.65rem; border-radius: 0.5rem;
  border: 2px solid var(--maple);
  background: rgba(194,65,12,0.08);
  color: var(--autumn); font-weight: 700;
  box-shadow: inset 0 0 20px rgba(194,65,12,0.1);
  transition: transform 0.2s, background 0.2s;
}
.btn-seal:hover { background: rgba(194,65,12,0.18); transform: translateY(-2px); }
.btn-ink-sm {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  padding: 0.45rem 1rem; border-radius: 9999px;
  border: 1px solid rgba(251,146,60,0.35);
  color: var(--autumn); font-size: 0.85rem; font-weight: 500;
  transition: background 0.2s;
}
.btn-ink-sm:hover { background: rgba(194,65,12,0.12); }

/* Sections */
.section { padding: 5rem 0; }
@media (min-width: 768px) { .section { padding: 6.5rem 0; } }
.section-parchment { background: var(--parchment); color: var(--ink); }
.section-ink { background: var(--night-light); }
.section-download {
  background: radial-gradient(ellipse at center, rgba(194,65,12,0.12) 0%, transparent 65%), var(--night);
}
.section-contact { background: var(--night-light); }
.section-header { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.section-label {
  display: inline-block; padding: 0.25rem 0.9rem; border-radius: 9999px;
  border: 1px solid var(--maple); color: var(--maple);
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.05em; margin-bottom: 0.75rem;
}
.section-parchment .section-label { color: var(--maple); border-color: var(--maple); }
.section-title {
  font-family: "Ma Shan Zheng", cursive;
  font-size: clamp(1.85rem, 5vw, 3rem);
  color: var(--text-main); margin-bottom: 0.5rem;
}
.section-parchment .section-title { color: var(--ink); }
.section-subtitle { color: var(--text-muted); font-size: clamp(0.95rem, 2vw, 1.1rem); }
.section-parchment .section-subtitle { color: #57534e; }

/* Intro */
.intro-grid {
  display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center;
}
@media (min-width: 768px) { .intro-grid { grid-template-columns: 1.2fr 0.8fr; } }
.intro-text h3 {
  font-family: "ZCOOL XiaoWei", serif; font-size: clamp(1.35rem, 3vw, 1.75rem);
  color: var(--ink); margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem;
}
.intro-text h3 i { color: var(--maple); }
.intro-text p { color: #44403c; margin-bottom: 1rem; font-size: clamp(0.95rem, 2vw, 1.05rem); }
.intro-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.25rem; }
.intro-tag {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.4rem 0.85rem; border-radius: 9999px;
  background: rgba(194,65,12,0.08); border: 1px solid rgba(194,65,12,0.15);
  color: var(--maple); font-size: 0.85rem; font-weight: 500;
}
.stats-board {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  padding: 1.5rem; border-radius: 1rem;
  background: linear-gradient(145deg, rgba(194,65,12,0.08), rgba(251,146,60,0.05));
  border: 1px solid rgba(194,65,12,0.15);
}
.stat-cell {
  text-align: center; padding: 1.25rem 0.75rem; border-radius: 0.75rem;
  background: rgba(255,255,255,0.55);
}
.stat-number {
  display: block; font-family: "Ma Shan Zheng", cursive;
  font-size: clamp(1.5rem, 3vw, 2rem); color: var(--maple);
}
.stat-label { font-size: 0.85rem; color: #57534e; }

/* Features Accordion */
.features-accordion {
  display: flex; gap: 0.75rem; overflow-x: auto;
  padding-bottom: 1rem; scroll-snap-type: x mandatory;
}
.feature-panel {
  flex: 0 0 auto; width: 80px; min-height: 420px;
  border-radius: 1rem; overflow: hidden;
  background: var(--night); border: 1px solid rgba(251,146,60,0.15);
  transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  scroll-snap-align: start; position: relative;
}
@media (min-width: 768px) { .feature-panel { width: 100px; } }
.feature-panel.active { width: clamp(280px, 55vw, 560px); }
.feature-tab {
  position: absolute; top: 0; left: 0; bottom: 0; width: 80px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.75rem; background: rgba(194,65,12,0.08);
  border-right: 1px solid rgba(251,146,60,0.1);
}
@media (min-width: 768px) { .feature-tab { width: 100px; } }
.feature-num {
  font-family: "Ma Shan Zheng", cursive; font-size: 2rem; color: var(--maple);
}
.feature-title-sm {
  writing-mode: vertical-rl; text-orientation: upright;
  font-size: 0.95rem; color: var(--autumn); letter-spacing: 0.15em; font-weight: 500;
}
.feature-body {
  margin-left: 80px; opacity: 0; transition: opacity 0.3s 0.15s;
  display: flex; flex-direction: column; height: 100%;
}
@media (min-width: 768px) { .feature-body { margin-left: 100px; } }
.feature-panel.active .feature-body { opacity: 1; }
.feature-body img { width: 100%; height: 240px; object-fit: cover; }
.feature-info { padding: 1.25rem; flex: 1; }
.feature-info h3 { font-family: "ZCOOL XiaoWei", serif; font-size: 1.35rem; color: var(--autumn); margin-bottom: 0.5rem; }
.feature-info p { color: var(--text-muted); font-size: 0.95rem; }

/* Activities */
.activities-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}
@media (min-width: 768px) { .activities-grid { grid-template-columns: repeat(3, 1fr); } }
.activity-card { padding: 1.75rem; border-radius: 1rem; }
.seal-card {
  background: rgba(194,65,12,0.08); border: 2px solid rgba(194,65,12,0.25);
  box-shadow: inset 0 0 30px rgba(194,65,12,0.06);
}
.ink-card {
  background: rgba(41,37,36,0.5); border: 1px solid rgba(251,146,60,0.15);
  color: var(--text-main);
}
.activity-card h3 {
  font-family: "ZCOOL XiaoWei", serif; font-size: 1.35rem;
  color: var(--maple); margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem;
}
.ink-card h3 { color: var(--autumn); }
.activity-card ul { display: flex; flex-direction: column; gap: 0.55rem; }
.activity-card li {
  position: relative; padding-left: 1.1rem; color: #44403c; font-size: 0.95rem;
}
.ink-card li { color: var(--text-muted); }
.activity-card li::before {
  content: ""; position: absolute; left: 0; top: 0.55rem;
  width: 6px; height: 6px; border-radius: 50%; background: var(--maple);
}

/* Download */
.download-guide {
  display: flex; justify-content: space-between; gap: 1rem;
  max-width: 800px; margin: 0 auto 2rem; position: relative;
}
.download-step { text-align: center; flex: 1; position: relative; z-index: 2; }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--maple); color: #fff; font-weight: 700; font-size: 1.1rem;
  box-shadow: 0 0 15px rgba(194,65,12,0.45);
}
.step-line {
  position: absolute; top: 22px; left: 50%; width: 100%; height: 2px;
  background: rgba(251,146,60,0.2); z-index: -1;
}
.step-line span {
  display: block; height: 100%; width: 0; background: var(--maple);
  transition: width 0.8s ease;
}
.download-step:nth-child(1) .step-line span { width: 100%; }
.download-step:nth-child(2) .step-line span { width: 100%; transition-delay: 0.3s; }
.download-step:nth-child(3) .step-line { display: none; }
.download-step h4 { font-size: 1rem; margin-top: 0.75rem; color: var(--text-main); }
.download-step p { font-size: 0.85rem; color: var(--text-muted); }
.download-progress {
  max-width: 600px; margin: 0 auto 2.5rem;
}
.progress-track { height: 6px; background: rgba(251,146,60,0.15); border-radius: 999px; overflow: hidden; }
.progress-bar { width: 75%; height: 100%; background: linear-gradient(90deg, var(--maple), var(--autumn)); border-radius: 999px; animation: progressShine 2s ease-in-out infinite; }
@keyframes progressShine { 0%, 100% { opacity: 0.8; } 50% { opacity: 1; } }
.progress-text { display: block; text-align: center; margin-top: 0.5rem; font-size: 0.85rem; color: var(--autumn); }
.download-platforms {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; max-width: 800px; margin: 0 auto;
}
@media (min-width: 768px) { .download-platforms { grid-template-columns: repeat(4, 1fr); } }
.platform-btn {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 1rem 1.25rem; border-radius: 0.75rem;
  background: rgba(41,37,36,0.6); border: 1px solid rgba(251,146,60,0.2);
  color: var(--text-main); transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.platform-btn:hover { transform: translateY(-3px); border-color: var(--maple); box-shadow: 0 10px 25px rgba(194,65,12,0.2); }
.platform-btn i { font-size: 1.5rem; color: var(--autumn); }
.platform-btn b { display: block; font-size: 1rem; }
.platform-btn small { display: block; font-size: 0.75rem; color: var(--text-muted); }

/* Contact */
.contact-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}
@media (min-width: 768px) { .contact-grid { grid-template-columns: repeat(3, 1fr); } }
.contact-card {
  text-align: center; padding: 1.75rem; border-radius: 1rem;
  background: rgba(41,37,36,0.5); border: 1px solid rgba(251,146,60,0.15);
  transition: transform 0.2s, border-color 0.2s;
}
.contact-card:hover { transform: translateY(-5px); border-color: var(--maple); }
.qr-wrap {
  width: 150px; height: 150px; margin: 0 auto 1rem; border-radius: 0.75rem;
  overflow: hidden; border: 3px solid rgba(251,146,60,0.25);
}
.qr-wrap img { width: 100%; height: 100%; object-fit: cover; }
.contact-card h3 { font-family: "ZCOOL XiaoWei", serif; font-size: 1.15rem; color: var(--autumn); margin-bottom: 0.35rem; }
.contact-card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1rem; }

/* Footer */
.footer { background: var(--night); border-top: 1px solid rgba(251,146,60,0.1); padding: 2.5rem 0; }
.footer-inner { text-align: center; }
.footer-brand {
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
  font-family: "Ma Shan Zheng", cursive; font-size: 1.35rem; color: var(--autumn); margin-bottom: 1rem;
}
.footer-brand img { height: 36px; width: auto; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.25rem; margin-bottom: 1rem; }
.footer-links a { color: var(--text-muted); font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--autumn); }
.footer-copy { color: #57534e; font-size: 0.8rem; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Page Hero */
.page-hero {
  position: relative; min-height: 55vh;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(ellipse at 50% 30%, rgba(194,65,12,0.18) 0%, transparent 55%), var(--night);
  padding-top: 72px; text-align: center; overflow: hidden;
}
.page-hero-content { position: relative; z-index: 10; }
.page-hero-title {
  font-family: "Ma Shan Zheng", cursive;
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  background: linear-gradient(135deg, #fff 0%, var(--autumn) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  margin-top: 0.75rem;
}
.page-hero-subtitle { color: var(--text-muted); font-size: clamp(1rem, 2.5vw, 1.25rem); margin-top: 0.5rem; }

/* Toast */
.toast {
  position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%) translateY(100px);
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.25rem; border-radius: 9999px;
  background: rgba(41,37,36,0.95); border: 1px solid var(--maple);
  color: var(--autumn); font-weight: 500; z-index: 100;
  opacity: 0; transition: opacity 0.3s, transform 0.3s; pointer-events: none;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast i { color: #22c55e; }

/* Utility text-center used by Tailwind but define for safety */
.text-center { text-align: center; }

/* Friendly Links */
.section-friends {
  padding: 3rem 0;
  background: var(--night-light);
  border-top: 1px solid rgba(251, 146, 60, 0.12);
}
.section-friends .container { max-width: 1000px; }
.friends-card {
  background: rgba(41, 37, 36, 0.5);
  border: 1px solid rgba(251, 146, 60, 0.15);
  border-radius: 1rem;
  padding: 1.5rem;
}
.friends-title {
  font-family: "Ma Shan Zheng", cursive;
  font-size: 1.35rem;
  color: var(--autumn);
  margin-bottom: 1.25rem;
  text-align: center;
  letter-spacing: 2px;
}
.friends-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}
.friends-list a {
  display: inline-block;
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 0.5rem 0.9rem;
  border: 1px solid rgba(251, 146, 60, 0.2);
  border-radius: 999px;
  background: rgba(194, 65, 12, 0.08);
  transition: all 0.3s ease;
  word-break: break-all;
}
.friends-list a:hover {
  color: var(--autumn);
  border-color: var(--maple);
  background: rgba(194, 65, 12, 0.15);
  transform: translateY(-2px);
}
