/* Follometry – Shared Stylesheet */

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

/* Design Tokens */
:root {
  --violet: #7C3AED;
  --pink:   #EC4899;
  --bg:     #0F0F1A;
  --card:   #1A1A2E;
  --text:   #F0EEFF;
  --muted:  rgba(240,238,255,0.55);
  --radius: 20px;
}

/* Base */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
}

a { color: #a78bfa; text-underline-offset: 3px; }
a:hover { color: var(--text); }

/* Top Navigation */
.topnav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  background: rgba(15,15,26,0.92);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  flex-wrap: wrap;
  gap: 8px;
}
.nav-brand {
  font-weight: 800;
  font-size: 1.05rem;
  text-decoration: none;
  background: linear-gradient(90deg, #7C3AED, #EC4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links { display: flex; gap: 2px; flex-wrap: wrap; }
.nav-links a {
  color: rgba(240,238,255,0.55);
  text-decoration: none;
  font-size: 0.85rem;
  padding: 6px 12px;
  border-radius: 8px;
  transition: all 0.15s;
}
.nav-links a:hover,
.nav-links a.active { color: #F0EEFF; background: rgba(255,255,255,0.07); }

/* Language Switch */
.lang-switch { display: flex; justify-content: center; gap: 8px; }
.lang-switch a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.85rem;
  padding: 4px 12px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 20px;
  transition: all 0.15s;
}
.lang-switch a.active,
.lang-switch a:hover { color: white; border-color: white; }

/* Footer */
footer {
  text-align: center;
  padding: 36px 24px;
  color: var(--muted);
  font-size: 0.85rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
footer a { color: var(--muted); text-decoration: underline; text-underline-offset: 3px; }
footer a:hover { color: var(--text); }
