/* base.css - Dark theme */
:root{
  --bg:#0b0b0d;
  --panel:#0f0f12;
  --muted:#bfb7a1;
  --accent:#d4af37;
  /* --link:#9fd3ff; /* lien bleu classique */
  --link: #8b0000; /* vert foncé (SeaGreen) — Pour changer en rouge foncé : #8b0000 */
}

html,body{
  height:100%;
}
	
body{
  margin:0;
  font-family: 'Georgia', serif;
  background:var(--bg);
  color:var(--muted);
  -webkit-font-smoothing:antialiased;
  
  overflow-x: hidden;
}

.site-title{
  font-size:1.2rem;
  color:var(--accent);
  font-weight:700;
}
	
a {
    color: var(--link);
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
     color: #ff5555; 
}

.arrow {
    font-size: 1.2em;
    vertical-align: middle;
    margin: 0 6px;
}

