/* Horoskop Dnes — static build */
:root {
  --bg: #fbfaff;
  --fg: #1a1426;
  --muted: #6b6480;
  --border: #ebe7f3;
  --card: rgba(255, 255, 255, 0.75);
  --primary: #6b3fd4;
  --primary-2: #4a37b8;
  --gold: #d4af37;
  --gold-2: #b8923a;
  --indigo: #3a2db8;
  --secondary: #f1edfa;
  --shadow-soft: 0 10px 40px -15px rgba(50, 20, 90, 0.18);
  --shadow-glow: 0 20px 60px -20px rgba(107, 63, 212, 0.45);
  --shadow-gold: 0 10px 40px -10px rgba(212, 175, 55, 0.45);
  --gradient-primary: linear-gradient(135deg, #6b3fd4, #3a2db8);
  --gradient-gold: linear-gradient(135deg, #e8c46b, #b8923a);
  --gradient-hero: linear-gradient(135deg, #f3edff 0%, #ece4ff 50%, rgba(245, 230, 200, 0.4) 100%);
  --gradient-card: linear-gradient(145deg, rgba(255,255,255,0.85), rgba(255,255,255,0.55));
}
.dark {
  --bg: #14101e;
  --fg: #f1ecf8;
  --muted: #9b94ad;
  --border: rgba(255,255,255,0.1);
  --card: rgba(255,255,255,0.04);
  --primary: #a78bea;
  --secondary: #241d36;
  --gradient-hero: linear-gradient(135deg, #1d1730 0%, #1a1538 50%, #221733 100%);
  --gradient-card: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  letter-spacing: -0.02em;
  font-weight: 500;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
.glass {
  background: var(--gradient-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.5);
}
.dark .glass { border-color: rgba(255,255,255,0.08); }
.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.gradient-text-gold {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.bg-hero { background: var(--gradient-hero); }
.shadow-soft { box-shadow: var(--shadow-soft); }
.shadow-glow { box-shadow: var(--shadow-glow); }

/* HEADER */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 1rem 0; transition: padding .3s;
}
.header.scrolled { padding: .5rem 0; }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  border-radius: 1rem; padding: .75rem 1.25rem; transition: all .3s;
}
.header.scrolled .header-inner { background: var(--gradient-card); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.5); box-shadow: var(--shadow-soft); }
.dark .header.scrolled .header-inner { border-color: rgba(255,255,255,0.08); }
.logo { display: flex; align-items: center; gap: .6rem; }
.logo-mark {
  width: 36px; height: 36px; border-radius: 12px;
  background: var(--gradient-primary);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 18px; box-shadow: var(--shadow-glow);
}
.logo-text { font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.1rem; line-height: 1; }
.logo-sub { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
.nav { display: flex; gap: .25rem; }
.nav a { padding: .5rem 1rem; font-size: .875rem; font-weight: 500; color: var(--fg); opacity: .8; border-radius: 999px; transition: all .2s; }
.nav a:hover, .nav a.active { background: var(--secondary); opacity: 1; }
.icon-btn {
  width: 40px; height: 40px; border-radius: 999px;
  background: var(--gradient-card); border: 1px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(20px);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: transform .2s; color: var(--fg);
}
.dark .icon-btn { border-color: rgba(255,255,255,0.08); }
.icon-btn:hover { transform: scale(1.1); }
.header-actions { display: flex; gap: .5rem; align-items: center; }
.menu-btn { display: none; }
.mobile-menu { display: none; margin-top: .5rem; padding: .75rem; border-radius: 1rem; }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: .75rem 1rem; border-radius: .75rem; font-size: .875rem; font-weight: 500; }
.mobile-menu a:hover { background: var(--secondary); }

@media (max-width: 960px) {
  .nav { display: none; }
  .menu-btn { display: flex; }
}

/* HERO */
.hero { position: relative; padding: 8rem 0 5rem; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 3rem; align-items: center; }
@media (max-width: 960px) { .hero-grid { grid-template-columns: 1fr; } .orbit-wrap { display: none; } }

.blob { position: absolute; border-radius: 999px; filter: blur(80px); pointer-events: none; }
.blob.b1 { top: 5rem; left: -5rem; width: 24rem; height: 24rem; background: rgba(107, 63, 212, 0.2); animation: float-slow 12s ease-in-out infinite; }
.blob.b2 { top: 10rem; right: 0; width: 31rem; height: 31rem; background: rgba(212, 175, 55, 0.2); animation: glow-pulse 4s ease-in-out infinite; }
.blob.b3 { bottom: 0; left: 33%; width: 20rem; height: 20rem; background: rgba(58, 45, 184, 0.2); animation: float 6s ease-in-out infinite; }

.star {
  position: absolute; width: 4px; height: 4px; border-radius: 999px;
  background: rgba(26, 20, 38, 0.4); animation: glow-pulse 4s ease-in-out infinite;
}
.dark .star { background: rgba(255,255,255,0.5); }

.badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .5rem 1rem; border-radius: 999px;
  background: var(--gradient-card); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.5);
  font-size: .75rem; font-weight: 500; letter-spacing: .04em;
  margin-bottom: 1.5rem;
}
.dark .badge { border-color: rgba(255,255,255,0.08); }
.badge .dot { color: var(--gold); }

h1.hero-title { font-size: clamp(2.5rem, 6vw, 4.5rem); line-height: 1.05; }
.hero-sub { margin-top: 1.5rem; font-size: 1.125rem; color: var(--muted); max-width: 36rem; line-height: 1.6; }

.cta-row { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: .75rem; }
.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: 1rem 1.75rem; border-radius: 999px;
  background: var(--gradient-primary); color: #fff; font-weight: 500;
  box-shadow: var(--shadow-glow); transition: all .3s; border: none; cursor: pointer;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-glass {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: 1rem 1.75rem; border-radius: 999px;
  background: var(--gradient-card); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.5); font-weight: 500;
  transition: all .2s;
}
.dark .btn-glass { border-color: rgba(255,255,255,0.08); }
.btn-glass:hover { background: var(--secondary); }

.stats { margin-top: 2.5rem; display: flex; align-items: center; gap: 1.5rem; color: var(--muted); font-size: .875rem; }
.stats .num { font-family: 'Fraunces', serif; font-size: 1.5rem; color: var(--fg); }
.stats .lbl { font-size: 10px; letter-spacing: .15em; text-transform: uppercase; }
.stats .sep { width: 1px; height: 40px; background: var(--border); }

/* Orbit */
.orbit-wrap { position: relative; height: 520px; display: flex; align-items: center; justify-content: center; }
.orbit { position: relative; width: 500px; height: 500px; }
.orbit-center {
  position: absolute; inset: 0; margin: auto; width: 128px; height: 128px;
  border-radius: 999px; background: var(--gradient-primary); box-shadow: var(--shadow-glow);
  display: flex; align-items: center; justify-content: center; color: #fff;
  font-family: 'Fraunces', serif; font-size: 3rem;
}
.orbit-center::before {
  content: ''; position: absolute; inset: -3rem; border-radius: 999px;
  background: var(--gradient-primary); filter: blur(60px); opacity: .6; z-index: -1;
  animation: glow-pulse 4s ease-in-out infinite;
}
.orbit-ring { position: absolute; inset: 0; border-radius: 999px; border: 1px solid rgba(26,20,38,0.1); animation: spin-slow 60s linear infinite; }
.dark .orbit-ring { border-color: rgba(255,255,255,0.1); }
.orbit-sign {
  position: absolute; top: 50%; left: 50%;
  width: 56px; height: 56px; margin: -28px 0 0 -28px;
  border-radius: 999px; background: var(--gradient-card); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; box-shadow: var(--shadow-soft);
  transition: all .3s;
}
.dark .orbit-sign { border-color: rgba(255,255,255,0.08); }
.orbit-sign:hover { transform: scale(1.25) translate(var(--tx), var(--ty)) !important; box-shadow: var(--shadow-glow); }

/* Sections */
.section { padding: 5rem 0; position: relative; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; margin-bottom: 3rem; }
.eyebrow { font-size: .75rem; text-transform: uppercase; letter-spacing: .25em; color: var(--primary); margin-bottom: .75rem; }
h2.section-title { font-size: clamp(2rem, 4vw, 3rem); max-width: 36rem; line-height: 1.1; }
.section-sub { color: var(--muted); max-width: 24rem; }

/* Zodiac grid */
.zodiac-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media (max-width: 1024px) { .zodiac-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .zodiac-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; } }

.zodiac-card {
  position: relative; overflow: hidden;
  border-radius: 1.5rem; padding: 1.5rem;
  background: var(--gradient-card); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: var(--shadow-soft);
  transition: all .3s;
  display: block;
}
.dark .zodiac-card { border-color: rgba(255,255,255,0.08); }
.zodiac-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-glow); }
.zodiac-card::before {
  content: ''; position: absolute; top: -2.5rem; right: -2.5rem; width: 10rem; height: 10rem;
  border-radius: 999px; background: var(--gradient-primary);
  opacity: 0; filter: blur(40px); transition: opacity .5s;
}
.zodiac-card:hover::before { opacity: 0.3; }
.zodiac-icon {
  position: relative; width: 56px; height: 56px; border-radius: 1rem;
  background: rgba(107, 63, 212, 0.1); border: 1px solid rgba(107, 63, 212, 0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.875rem; color: var(--primary);
  transition: transform .3s;
}
.zodiac-card:hover .zodiac-icon { transform: scale(1.1); }
.zodiac-card-head { display: flex; justify-content: space-between; align-items: flex-start; }
.zodiac-card h3 { font-size: 1.5rem; margin-top: 1.25rem; position: relative; }
.zodiac-card .dates { font-size: 11px; text-transform: uppercase; letter-spacing: .15em; color: var(--muted); margin-top: .25rem; }
.zodiac-card p { font-size: .875rem; color: var(--muted); margin-top: .75rem; line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.zodiac-card .read-more { display: inline-flex; align-items: center; gap: .35rem; margin-top: 1.25rem; color: var(--primary); font-size: .875rem; font-weight: 500; }

.arrow { display: inline-block; width: 14px; height: 14px; }
.arrow-lg { width: 20px; height: 20px; color: var(--muted); transition: all .3s; }
.zodiac-card:hover .arrow-lg { color: var(--primary); transform: rotate(45deg); }

/* Extras */
.extras-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
@media (max-width: 720px) { .extras-grid { grid-template-columns: 1fr; } }
.extra-card {
  position: relative; overflow: hidden;
  border-radius: 1.5rem; padding: 2rem;
  background: var(--gradient-card); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: var(--shadow-soft); display: flex; gap: 1.25rem; transition: all .3s;
}
.dark .extra-card { border-color: rgba(255,255,255,0.08); }
.extra-card:hover { box-shadow: var(--shadow-glow); }
.extra-icon {
  width: 56px; height: 56px; border-radius: 1rem;
  background: var(--gradient-primary); color: #fff;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  box-shadow: var(--shadow-glow);
}
.extra-tag { font-size: 10px; text-transform: uppercase; letter-spacing: .2em; color: var(--gold-2); margin-bottom: .25rem; }
.extra-card h3 { font-size: 1.5rem; }
.extra-card p { color: var(--muted); margin-top: .5rem; line-height: 1.6; }

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 960px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card {
  border-radius: 1.5rem; overflow: hidden;
  background: var(--gradient-card); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.5); box-shadow: var(--shadow-soft);
  transition: all .3s;
}
.dark .blog-card { border-color: rgba(255,255,255,0.08); }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-glow); }
.blog-img { position: relative; height: 12rem; display: flex; align-items: center; justify-content: center; }
.blog-img.g1 { background: linear-gradient(135deg, rgba(107,63,212,0.3), rgba(58,45,184,0.3)); }
.blog-img.g2 { background: linear-gradient(135deg, rgba(212,175,55,0.4), rgba(107,63,212,0.3)); }
.blog-img.g3 { background: linear-gradient(135deg, rgba(58,45,184,0.4), rgba(212,175,55,0.3)); }
.blog-img .symbol {
  width: 8rem; height: 8rem; border-radius: 999px;
  background: rgba(0,0,0,0.05); backdrop-filter: blur(10px);
  border: 1px solid rgba(0,0,0,0.1);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif; font-size: 3rem; color: rgba(0,0,0,0.4);
  transition: transform .3s;
}
.dark .blog-img .symbol { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.1); color: rgba(255,255,255,0.4); }
.blog-card:hover .symbol { transform: scale(1.1); }
.blog-cat {
  position: absolute; top: 1rem; left: 1rem;
  padding: .25rem .75rem; border-radius: 999px;
  background: rgba(255,255,255,0.7); backdrop-filter: blur(10px);
  font-size: 10px; text-transform: uppercase; letter-spacing: .15em; font-weight: 500;
}
.blog-body { padding: 1.5rem; }
.blog-body h3 { font-size: 1.25rem; line-height: 1.3; transition: color .2s; }
.blog-card:hover h3 { color: var(--primary); }
.blog-body p { font-size: .875rem; color: var(--muted); margin-top: .75rem; line-height: 1.6;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.blog-meta { margin-top: 1.25rem; display: flex; justify-content: space-between; font-size: .75rem; color: var(--muted); }
.blog-meta .read { color: var(--primary); font-weight: 500; }

/* Footer */
.footer { margin-top: 5rem; border-top: 1px solid var(--border); background: rgba(241, 237, 250, 0.3); }
.dark .footer { background: rgba(255,255,255,0.02); }
.footer-grid { padding: 4rem 0; display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 3rem; }
@media (max-width: 960px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }
.footer h4 { font-family: 'Fraunces', serif; font-size: .75rem; text-transform: uppercase; letter-spacing: .15em; margin-bottom: 1rem; font-weight: 500; }
.footer p { color: var(--muted); font-size: .875rem; line-height: 1.6; max-width: 22rem; }
.footer ul { list-style: none; }
.footer li { margin-bottom: .75rem; font-size: .875rem; color: var(--muted); }
.footer li a:hover { color: var(--fg); }
.socials { margin-top: 1.5rem; display: flex; gap: .75rem; }
.social-btn {
  width: 40px; height: 40px; border-radius: 999px;
  background: var(--gradient-card); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center; transition: all .2s;
}
.dark .social-btn { border-color: rgba(255,255,255,0.08); }
.social-btn:hover { background: var(--primary); color: #fff; }
.newsletter { display: flex; gap: .5rem; margin-top: 1rem; }
.newsletter input {
  flex: 1; padding: .75rem 1rem; border-radius: 999px;
  background: var(--bg); border: 1px solid var(--border); font-size: .875rem;
  color: var(--fg); font-family: inherit;
}
.newsletter input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(107,63,212,0.2); }
.newsletter button {
  width: 48px; height: 48px; border-radius: 999px; border: none;
  background: var(--gradient-primary); color: #fff; cursor: pointer;
  box-shadow: var(--shadow-glow); display: flex; align-items: center; justify-content: center;
  transition: transform .2s;
}
.newsletter button:hover { transform: scale(1.05); }
.newsletter-msg { margin-top: .75rem; font-size: .75rem; color: var(--primary); }
.footer-bottom {
  padding: 2rem 0; border-top: 1px solid var(--border);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  font-size: .75rem; color: var(--muted);
}
.footer-bottom .links { display: flex; gap: 1.5rem; }

/* Detail page */
.detail-hero {
  position: relative; overflow: hidden;
  border-radius: 2rem; padding: 3.5rem;
  background: var(--gradient-card); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.5); box-shadow: var(--shadow-soft);
  margin-top: 2rem;
}
.dark .detail-hero { border-color: rgba(255,255,255,0.08); }
@media (max-width: 720px) { .detail-hero { padding: 2rem; } }
.detail-hero::before { content:''; position: absolute; top: -5rem; right: -5rem; width: 24rem; height: 24rem; border-radius: 999px; background: var(--gradient-primary); opacity: .2; filter: blur(60px); }
.detail-hero::after { content:''; position: absolute; bottom: -5rem; left: -5rem; width: 20rem; height: 20rem; border-radius: 999px; background: rgba(212,175,55,0.2); filter: blur(60px); }
.detail-hero-inner { position: relative; display: grid; grid-template-columns: auto 1fr; gap: 2rem; align-items: center; }
@media (max-width: 720px) { .detail-hero-inner { grid-template-columns: 1fr; } }
.detail-symbol {
  width: 160px; height: 160px; border-radius: 1.5rem;
  background: var(--gradient-primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; box-shadow: var(--shadow-glow);
}
.detail-meta { font-size: .75rem; text-transform: uppercase; letter-spacing: .25em; color: var(--primary); margin-bottom: .5rem; }
.detail-hero h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
.detail-hero p { margin-top: 1rem; font-size: 1.125rem; color: var(--muted); max-width: 40rem; line-height: 1.7; }

.detail-grid { margin-top: 2rem; display: grid; grid-template-columns: 1.6fr 1fr; gap: 1.5rem; }
@media (max-width: 960px) { .detail-grid { grid-template-columns: 1fr; } }
.detail-card {
  position: relative; overflow: hidden;
  border-radius: 1.5rem; padding: 1.75rem;
  background: var(--gradient-card); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.5); box-shadow: var(--shadow-soft);
  margin-bottom: 1.25rem;
}
.dark .detail-card { border-color: rgba(255,255,255,0.08); }
.detail-card .row { display: flex; gap: 1rem; align-items: flex-start; }
.detail-card .ic {
  width: 48px; height: 48px; border-radius: 1rem;
  background: var(--gradient-primary); color: #fff;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  box-shadow: var(--shadow-glow);
}
.detail-card h2 { font-size: 1.5rem; }
.detail-card .body { color: var(--muted); margin-top: .5rem; line-height: 1.7; }

.aside-card {
  border-radius: 1.5rem; padding: 1.75rem;
  background: var(--gradient-card); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.5); box-shadow: var(--shadow-soft);
  margin-bottom: 1.25rem;
}
.dark .aside-card { border-color: rgba(255,255,255,0.08); }
.aside-card .lbl { font-size: .75rem; text-transform: uppercase; letter-spacing: .2em; color: var(--muted); margin-bottom: 1rem; }
.lucky-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.lucky-grid .num { font-family: 'Fraunces', serif; font-size: 2.25rem; margin-top: .25rem; }
.lucky-color { display: flex; align-items: center; gap: .5rem; margin-top: .5rem; }
.lucky-color .swatch { width: 24px; height: 24px; border-radius: 999px; border: 1px solid var(--border); box-shadow: var(--shadow-soft); }
.bars { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.bar-row { font-size: .75rem; color: var(--muted); }
.bar-row .head { display: flex; justify-content: space-between; margin-bottom: .5rem; }
.bar-row .head .v { color: var(--fg); font-weight: 500; }
.bar { height: 8px; border-radius: 999px; background: var(--secondary); overflow: hidden; }
.bar > div { height: 100%; border-radius: 999px; background: var(--gradient-primary); }

.compat-row {
  display: flex; align-items: center; gap: .75rem;
  padding: .75rem; border-radius: 1rem; transition: background .2s;
}
.compat-row:hover { background: var(--secondary); }
.compat-icon {
  width: 44px; height: 44px; border-radius: .75rem;
  background: rgba(107,63,212,0.1); border: 1px solid rgba(107,63,212,0.2);
  display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1.25rem;
  transition: transform .2s;
}
.compat-row:hover .compat-icon { transform: scale(1.1); }
.compat-row .name { font-weight: 500; }
.compat-row .sub { font-size: .75rem; color: var(--muted); }
.compat-row .tag { margin-left: auto; font-size: .75rem; font-weight: 500; }

.back-link { display: inline-flex; align-items: center; gap: .5rem; font-size: .875rem; color: var(--muted); margin-bottom: 1rem; }
.back-link:hover { color: var(--fg); }

/* Animations */
@keyframes float { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-20px) rotate(5deg); } }
@keyframes float-slow { 0%,100% { transform: translate(0,0); } 50% { transform: translate(30px,-40px); } }
@keyframes glow-pulse { 0%,100% { opacity: .5; transform: scale(1); } 50% { opacity: .8; transform: scale(1.1); } }
@keyframes fade-up { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes spin-slow { to { transform: rotate(360deg); } }
.animate-fade-up { animation: fade-up .7s ease-out both; }

.page-head { padding-top: 8rem; padding-bottom: 1rem; }
.page-head h1 { font-size: clamp(2.5rem, 5vw, 3.75rem); }
.page-head .lead { margin-top: 1rem; color: var(--muted); font-size: 1.125rem; max-width: 36rem; }

.list-card { display: grid; grid-template-columns: auto 1fr; gap: 1.25rem; align-items: flex-start;
  border-radius: 1.5rem; padding: 1.75rem; margin-bottom: 1rem;
  background: var(--gradient-card); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.5); box-shadow: var(--shadow-soft);
}
.dark .list-card { border-color: rgba(255,255,255,0.08); }
.list-card .ic-lg { width: 64px; height: 64px; border-radius: 1.25rem; background: var(--gradient-primary); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 2rem; box-shadow: var(--shadow-glow); }
.list-card h2 { font-size: 1.5rem; }
.list-card .meta { font-size: 11px; text-transform: uppercase; letter-spacing: .15em; color: var(--muted); margin-left: .5rem; }
.list-card p { color: var(--muted); margin-top: .5rem; line-height: 1.7; }
