:root {
  --primary: #E53935;
  --primary-dark: #B71C1C;
  --primary-light: #FF6F60;
  --secondary: #1A237E;
  --accent: #FFD600;
  --ink: #0e0719;
  --fg: #f3e9ff;
  --bg: #1a0d2e;
  --surface: #23153b;
  --muted: #9a8aba;
  --rule: #2c1d44;
  --neon: #f4c430;
}
/* game5 — Fantasy Magic 奇幻魔法 / 紫罗兰 + 金色符文 + 衬线 */

body { background: #1a0d2e; color: #f3e9ff; font-family: "Inter","Noto Sans","PingFang SC",sans-serif; -webkit-font-smoothing: antialiased; line-height: 1.7;  }
.font-display { font-family: "Cormorant Garamond","Source Han Serif","Songti SC",serif; letter-spacing: -0.012em; }
.font-headline { font-family: "Cormorant Garamond","Source Han Serif","Songti SC",serif; }

.text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 8px color-mix(in srgb, var(--primary) 30%, transparent); }
  50% { box-shadow: 0 0 24px color-mix(in srgb, var(--primary) 60%, transparent); }
}
.glow-pulse { animation: pulse-glow 2.5s ease-in-out infinite; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0e0719; }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 12px; }
::selection { background: var(--primary); color: #0e0719; }

.btn-themed { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.85rem 1.7rem; font-weight: 700; font-size: 0.88rem; letter-spacing: 0.02em;  background: var(--primary); color: #fff; border-radius: 12px; border: 1px solid var(--accent); box-shadow: 0 8px 20px -6px color-mix(in srgb, var(--primary) 50%, transparent); }
.btn-themed:hover { background: var(--primary-dark); transform: translateY(-2px); }

.card-themed { background: #23153b; border-radius: 14px; border: 1px solid color-mix(in srgb, var(--accent) 35%, var(--rule)); transition: transform .22s ease, box-shadow .22s ease; }
.card-themed:hover { transform: translateY(-3px); box-shadow: 0 16px 36px -16px color-mix(in srgb, var(--accent) 50%, transparent); }

.chip-themed { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.3rem 0.7rem; border-radius: 14px; background: color-mix(in srgb, var(--primary) 14%, transparent); color: var(--primary); }
.kicker { font-family: "Cormorant Garamond","Source Han Serif","Songti SC",serif; font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--primary); }





/* Fantasy 金色符文边框装饰 */
.rune-corner { position: relative; }
.rune-corner::before, .rune-corner::after { content: "✦"; position: absolute; color: var(--accent); font-size: 1rem; opacity: .65; }
.rune-corner::before { top: 8px; left: 8px; }
.rune-corner::after { bottom: 8px; right: 8px; }



@media print { nav, footer, .no-print { display: none !important; } body { background: #fff !important; color: #000 !important; } }
