
/* === FASE 9 – UX & VISUAL POLISH === */

body {
    line-height: 1.7;
}

section {
    margin-bottom: 4rem;
}

h1, h2, h3 {
    letter-spacing: 0.05em;
}

a {
    transition: color 0.3s ease, transform 0.3s ease;
}

a:hover {
    transform: translateY(-1px);
}

.nav a {
    padding: 0.6rem 1rem;
}

.card, .box, .wiki-entry {
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.35);
}

.hero-content {
    animation: heroFade 1.2s ease-out both;
}

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