@import './font.css';

:root {
  --bg-deep: #0a0612;
  --bg-mid: #14092a;
  --bg-card: #1a1035;
  --gold: #d4a853;
  --gold-bright: #f0c674;
  --gold-soft: rgba(212, 168, 83, 0.3);
  --purple: #7b2d8e;
  --purple-light: #b454c8;
  --purple-soft: rgba(123, 45, 142, 0.25);
  --text: #e8dcc8;
  --text-dim: #8a7fa0;
  --border: rgba(212, 168, 83, 0.2);
  --radius: 0.5rem;
}

* {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  font-family: 'Noto Serif SC', 'HarmonyOS Sans SC Medium', serif;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  scroll-behavior: smooth;
  background: var(--bg-deep);
}

html::-webkit-scrollbar { width: 6px; }
html::-webkit-scrollbar-track { background: var(--bg-deep); }
html::-webkit-scrollbar-thumb { background: var(--gold-soft); border-radius: 3px; }

body {
  margin: 0;
  padding: 0;
  width: 100vw;
  min-height: 100vh;
  overflow-x: hidden;
  background: radial-gradient(ellipse at 50% 0%, var(--bg-mid) 0%, var(--bg-deep) 60%);
  position: relative;
}

h1, h2, h3, h4, h5, h6 { margin: 0; padding: 0; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
input, button, textarea { outline: none; font-family: inherit; }

/* 星空背景 */
.starfield {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}

.star {
  position: absolute;
  background: #fff;
  border-radius: 50%;
  opacity: 0;
  animation: twinkle var(--dur, 3s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

@keyframes twinkle {
  0%, 100% { opacity: 0; transform: scale(0.5); }
  50% { opacity: var(--brightness, 0.8); transform: scale(1); }
}

/* 星云 */
.nebula {
  position: fixed;
  top: -20%; left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 70%;
  background: radial-gradient(ellipse, rgba(123, 45, 142, 0.12) 0%, transparent 50%),
              radial-gradient(ellipse at 30% 40%, rgba(212, 168, 83, 0.06) 0%, transparent 40%),
              radial-gradient(ellipse at 70% 30%, rgba(180, 84, 200, 0.08) 0%, transparent 45%);
  z-index: 0;
  pointer-events: none;
  animation: drift 20s ease-in-out infinite alternate;
}

@keyframes drift {
  to { transform: translateX(-50%) translateY(-20px); }
}

#app {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  padding-top: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-height: 100vh;
}

#app > main {
  flex: 1;
  box-sizing: border-box;
  width: 100%;
  max-width: 888px;
}

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0;
  padding: 0 16.66px;
  display: flex;
  justify-content: center;
  width: 100vw;
  backdrop-filter: blur(20px);
  background: linear-gradient(180deg, rgba(10, 6, 18, 0.92) 0%, rgba(10, 6, 18, 0.7) 100%);
  border-bottom: 1px solid var(--gold-soft);
  z-index: 50;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 888px;
  height: 3.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo img {
  width: auto;
  height: 2rem;
  filter: drop-shadow(0 0 8px var(--gold-soft));
}

.logo a {
  font-family: 'Cinzel', serif;
  font-size: 1.15rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.desc {
  font-size: 0.8rem;
  color: var(--text-dim);
  letter-spacing: 0.15em;
  display: none;
}

@media (min-width: 640px) {
  .desc { display: block; }
}

/* Hero Symbol */
.hero-symbol {
  text-align: center;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
  text-shadow: 0 0 20px var(--gold), 0 0 40px var(--gold-soft);
  animation: symbolGlow 3s ease-in-out infinite;
}

@keyframes symbolGlow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

/* Hero Title */
.hero-title {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.8;
  text-align: center;
  padding-bottom: 1.2rem;
  background: linear-gradient(135deg, var(--gold-bright), var(--text) 50%, var(--purple-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeUp 0.8s ease-out;
  text-shadow: 0 0 30px rgba(212, 168, 83, 0.15);
}

.hero-title span {
  font-size: 1.05rem;
  font-weight: 400;
  opacity: 0.85;
}

/* Input Wrapper */
.input-wrap {
  position: relative;
}

.input-label {
  display: block;
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 0.4rem;
  opacity: 0.8;
}

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

/* Section Title */
.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--gold);
  padding: 0 1rem 1.2rem;
  animation: fadeUp 0.8s ease-out 0.2s both;
}

.title-line {
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
  position: relative;
}

.title-line::after {
  content: '◆';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.4rem;
  color: var(--gold);
  opacity: 0.6;
}

.title-line:first-child::after { right: -0.5rem; }
.title-line:last-child::after { left: -0.5rem; }

/* Textarea */
.textarea {
  width: 100%;
  min-height: 70px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(26, 16, 53, 0.5);
  padding: 0.875rem 1rem;
  font-size: 0.9rem;
  color: var(--text);
  resize: vertical;
  transition: all 0.3s;
}

.textarea::placeholder {
  color: var(--text-dim);
  font-style: italic;
}

.textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 25px var(--gold-soft), inset 0 0 15px rgba(212, 168, 83, 0.08);
  background: rgba(26, 16, 53, 0.7);
}

/* Home */
.home {
  padding: 1.5rem 0;
  width: 100%;
}

.home .text {
  padding: 0 1rem 1.5rem;
}

/* Card List */
.card-list {
  padding: 0 4rem;
  margin-left: 2rem;
  display: grid;
  grid-template-columns: repeat(22, 1fr);
  gap: 2rem 0;
  width: 100%;
}

.card {
  margin-left: -4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 6rem;
  height: 10.06rem;
  background: url('/static/images/card/bg.jpg') no-repeat;
  background-size: cover;
  border-radius: 10px;
  position: relative;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation: cardIn 0.5s ease-out both;
}

.card::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 12px;
  background: linear-gradient(135deg, transparent, var(--gold-soft), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: -1;
}

.card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  box-shadow: 0 0 0 1px var(--gold-soft);
  opacity: 0.5;
  transition: all 0.3s;
}

.card:hover {
  transform: translateY(-8px);
}

.card:hover::after {
  box-shadow: 0 0 25px var(--gold-soft), 0 0 0 1px var(--gold);
  opacity: 1;
}

.card.active {
  transform: translateY(-1.2rem);
}

.card.active::after {
  box-shadow: 0 0 35px var(--gold-bright), 0 0 60px var(--gold-soft), 0 0 0 2px var(--gold-bright);
  opacity: 1;
}

.card.active::before {
  opacity: 1;
}

@keyframes cardIn {
  from { opacity: 0; transform: translateY(30px) rotateY(90deg); }
  to { opacity: 1; transform: translateY(0) rotateY(0); }
}

/* Button */
.btn-mystic {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  height: 3rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--bg-deep);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s;
  box-shadow: 0 4px 20px var(--gold-soft);
}

.btn-mystic::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.6s;
}

.btn-mystic:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(212, 168, 83, 0.5);
}

.btn-mystic:hover:not(:disabled)::before {
  left: 100%;
}

.btn-mystic:disabled {
  background: rgba(138, 127, 160, 0.2);
  color: var(--text-dim);
  cursor: not-allowed;
  box-shadow: none;
}

.btn-mystic span {
  position: relative;
  z-index: 1;
}

.btn-mystic-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--gold);
  background: transparent;
  border: 1px solid var(--gold-soft);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s;
}

.btn-mystic-outline:hover {
  border-color: var(--gold);
  background: var(--gold-soft);
  box-shadow: 0 0 20px var(--gold-soft);
}

.btn-wrap {
  padding: 2rem 1rem;
  animation: fadeUp 0.8s ease-out 0.4s both;
}

/* Result Phase */
.card-jx {
  padding: 0 1rem 2rem;
  animation: fadeUp 0.6s ease-out;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.show-card-row {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.show-card-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.show-card-row .card-reveal {
  width: 6rem;
  height: 10.06rem;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 0 30px var(--gold-soft), 0 0 0 2px var(--gold-soft);
  animation: revealCard 0.8s ease-out both;
  transition: transform 0.3s, box-shadow 0.3s;
}

.show-card-item {
  animation: floatCard 4s ease-in-out infinite;
}
.show-card-item:nth-child(1) { animation-delay: 1s; }
.show-card-item:nth-child(2) { animation-delay: 1.3s; }
.show-card-item:nth-child(3) { animation-delay: 1.6s; }

.show-card-row .card-reveal:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 0 50px var(--gold), 0 0 0 2px var(--gold-bright);
}

.show-card-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-bright);
  letter-spacing: 0.1em;
  text-shadow: 0 0 10px var(--gold-soft);
  margin-top: 0.2rem;
}

.show-card-pos {
  font-size: 0.7rem;
  padding: 0.12rem 0.6rem;
  border-radius: 1rem;
  background: rgba(212, 168, 83, 0.15);
  color: var(--gold);
  border: 1px solid var(--gold-soft);
  letter-spacing: 0.1em;
}

.show-card-pos.reversed {
  background: rgba(229, 115, 115, 0.1);
  color: #f08080;
  border-color: rgba(229, 115, 115, 0.3);
}

.show-card-sub {
  font-size: 0.68rem;
  color: var(--text-dim);
  letter-spacing: 0.15em;
  opacity: 0.7;
}

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

.show-card-item:nth-child(1) .card-reveal { animation-delay: 0.1s; }
.show-card-item:nth-child(2) .card-reveal { animation-delay: 0.3s; }
.show-card-item:nth-child(3) .card-reveal { animation-delay: 0.5s; }

.show-card-row .card-reveal.rever {
  transform: rotate(180deg);
}

@keyframes revealCard {
  0% { opacity: 0; transform: rotateY(180deg) scale(0.8); }
  100% { opacity: 1; transform: rotateY(0) scale(1); }
}

.card-divider {
  position: relative;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
  margin: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.divider-dot {
  position: absolute;
  font-size: 0.5rem;
  color: var(--gold);
  text-shadow: 0 0 10px var(--gold);
  background: var(--bg-mid);
  padding: 0 0.5rem;
}

/* Corner Ornaments */
.corner {
  position: absolute;
  width: 12px;
  height: 12px;
  border: 1px solid var(--gold);
  opacity: 0.6;
}
.corner.tl { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.corner.tr { top: -1px; right: -1px; border-left: none; border-bottom: none; }
.corner.bl { bottom: -1px; left: -1px; border-right: none; border-top: none; }
.corner.br { bottom: -1px; right: -1px; border-left: none; border-top: none; }

/* Result Card */
.result-card {
  animation: fadeUp 0.6s ease-out both;
}

.result-card:nth-child(1) { animation-delay: 0.1s; }
.result-card:nth-child(2) { animation-delay: 0.3s; }
.result-card:nth-child(3) { animation-delay: 0.5s; }
.result-card:nth-child(4) { animation-delay: 0.7s; }

/* Alert / Result */
.alert-mystic {
  position: relative;
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--gold-soft);
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(26, 16, 53, 0.8), rgba(20, 9, 42, 0.9));
  backdrop-filter: blur(10px);
  margin-top: 1.5rem;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3), inset 0 1px 0 var(--gold-soft);
  animation: fadeUp 0.6s ease-out;
  transition: box-shadow 0.4s;
}

.alert-mystic:hover {
  box-shadow: 0 4px 40px rgba(0,0,0,0.4), 0 0 30px var(--gold-soft), inset 0 1px 0 var(--gold-soft);
}

.alert-mystic::before {
  content: '';
  position: absolute;
  top: -1px; left: 15%; right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: lineShimmer 3s ease-in-out infinite;
}

@keyframes lineShimmer {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.alert-title {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1rem;
  letter-spacing: 0.08em;
  text-shadow: 0 0 10px var(--gold-soft);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.title-icon {
  font-size: 1.2rem;
  color: var(--gold-bright);
  text-shadow: 0 0 15px var(--gold);
}

.card-section {
  margin-bottom: 0.5rem;
}

.card-section-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(212, 168, 83, 0.1);
}

.section-icon {
  font-size: 0.8rem;
  color: var(--gold);
  text-shadow: 0 0 8px var(--gold);
}

.card-section-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold-bright);
  letter-spacing: 0.05em;
}

.alert-desc {
  font-size: 0.88rem;
  line-height: 1.85;
  color: var(--text);
}

.alert-desc p {
  margin: 0;
  text-indent: 2rem;
  padding-top: 0.3rem;
}

.alert-desc p:first-child { padding-top: 0; }

.alert-desc h1, .alert-desc h2, .alert-desc h3 {
  color: var(--gold-bright);
  margin-top: 0.4rem;
  margin-bottom: 0.2rem;
  text-indent: 0;
  font-size: 0.92rem;
  font-weight: 600;
}

.alert-desc strong {
  color: var(--gold-bright);
  font-weight: 600;
}

/* Keyword Tags */
.keyword-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.5rem 0 0.75rem;
}

.keyword-tag {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  font-size: 0.72rem;
  color: var(--gold);
  background: rgba(212, 168, 83, 0.1);
  border: 1px solid rgba(212, 168, 83, 0.25);
  border-radius: 1rem;
  letter-spacing: 0.05em;
  transition: all 0.3s;
}

.keyword-tag:hover {
  background: rgba(212, 168, 83, 0.18);
  border-color: var(--gold);
  box-shadow: 0 0 12px var(--gold-soft);
}

/* Probability Block */
.probability-block {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(212, 168, 83, 0.15);
}

.prob-label {
  font-size: 0.82rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.prob-label::before {
  content: '◈';
  font-size: 0.7rem;
}

.prob-bar {
  position: relative;
  width: 100%;
  height: 16px;
  background: rgba(26, 16, 53, 0.8);
  border: 1px solid rgba(212, 168, 83, 0.3);
  border-radius: 10px;
  overflow: hidden;
}

.prob-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  border-radius: 10px;
  box-shadow: 0 0 15px var(--gold);
  transition: width 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.prob-fill::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(200%); }
}

.prob-number {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-bright);
  text-shadow: 0 0 8px var(--gold);
}

/* Analysis Sections (优势/风险/建议) */
.analysis-block {
  margin-top: 0.8rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  border-left: 3px solid;
  background: rgba(26, 16, 53, 0.5);
}

.analysis-block.advantage {
  border-color: var(--gold);
  background: rgba(212, 168, 83, 0.05);
}

.analysis-block.risk {
  border-color: #e57373;
  background: rgba(229, 115, 115, 0.05);
}

.analysis-block.advice {
  border-color: var(--purple-light);
  background: rgba(180, 84, 200, 0.05);
}

.analysis-label {
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  letter-spacing: 0.05em;
}

.analysis-block.advantage .analysis-label { color: var(--gold-bright); }
.analysis-block.risk .analysis-label { color: #f08080; }
.analysis-block.advice .analysis-label { color: var(--purple-light); }

.analysis-block p {
  text-indent: 0 !important;
  padding-top: 0.2rem !important;
  font-size: 0.85rem;
  line-height: 1.75;
}

/* Footer */
.site-footer {
  width: 100%;
  max-width: 888px;
  padding: 0 16.66px;
  margin-top: 2rem;
  padding-bottom: 2rem;
}

.footer-main {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.footer-social {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 1.5rem;
}

.social-links a {
  transition: all 0.3s;
  opacity: 0.6;
}

.social-links a:hover {
  opacity: 1;
  transform: translateY(-3px);
}

.social-links img {
  width: 2rem;
  height: 2rem;
  filter: invert(0.7) sepia(1) hue-rotate(5deg) saturate(2);
}

.footer-info p {
  font-size: 0.75rem;
  text-align: center;
  margin: 0.25rem 0;
  color: var(--text-dim);
}

.footer-info a {
  color: var(--gold);
  transition: color 0.2s;
}

.footer-info a:hover {
  color: var(--gold-bright);
}

/* Loading */
.loading-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(10, 6, 18, 0.9);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  backdrop-filter: blur(8px);
}

.loading-overlay.hidden { display: none; }

.mystic-orb {
  position: relative;
  width: 80px;
  height: 80px;
}

.orb-core {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 30px var(--gold-bright), 0 0 60px var(--gold-soft);
  animation: pulse 1.5s ease-in-out infinite;
}

.orb-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80px; height: 80px;
  border: 2px solid var(--gold-soft);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 1.5s linear infinite;
}

.orb-ring.r2 {
  width: 56px; height: 56px;
  border-color: var(--purple-soft);
  border-top-color: var(--purple-light);
  animation-duration: 1s;
  animation-direction: reverse;
}

.orb-ring.r3 {
  width: 36px; height: 36px;
  border-color: rgba(212,168,83,0.15);
  border-top-color: var(--gold-bright);
  animation-duration: 0.7s;
}

@keyframes spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.3); }
}

.loading-text {
  margin-top: 1.5rem;
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  animation: breathe 2s ease-in-out infinite;
}

.loading-subtext {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  opacity: 0.6;
  animation: breathe 2s ease-in-out infinite 0.5s;
}

@keyframes breathe {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* Responsive */
@media screen and (max-width: 888px) {
  .card-list {
    padding: 0 3rem;
    grid-template-columns: repeat(11, 1fr);
  }
}

@media screen and (max-width: 588px) {
  .card { width: 5.4rem; height: 8.6rem; }
  .show-card-row .card-reveal { width: 5.4rem; height: 8.6rem; }
  .hero-title { font-size: 1.2rem; }
  .hero-title span { font-size: 0.95rem; }
  .show-card-row { gap: 0.75rem; }
  .show-card-name { font-size: 0.75rem; }
  .show-card-pos { font-size: 0.62rem; padding: 0.1rem 0.45rem; }
  .show-card-sub { font-size: 0.6rem; }
}

.disclaimer {
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  opacity: 0.5;
  transition: opacity 0.3s;
}
.disclaimer:hover { opacity: 0.85; }

/* Utilities */
.mt-4 { margin-top: 1rem; }
.w-full { width: 100%; }
.ml-auto { margin-left: auto; }
.block { display: block; }
.w-max { width: max-content; }
