/* --- Configurações Gerais e Fundo Estilo Pergaminho --- */
body {
    background-color: #f7f5f0;
    color: #2c3e2e;
    font-family: 'Georgia', 'Times New Roman', serif;
    margin: 0;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: radial-gradient(rgba(212, 175, 55, 0.05) 1px, transparent 0);
    background-size: 24px 24px;
}

/* --- Título Principal (Estilo Realeza de Elfhame) --- */
h1 {
    font-size: 2.5rem;
    color: #1b3322;
    text-align: center;
    letter-spacing: 1px;
    margin-bottom: 40px;
    border-bottom: 2px solid #d4af37;
    padding-bottom: 15px;
    text-transform: uppercase;
}

/* --- Container da Lista --- */
ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    max-width: 500px;
}

/* --- Itens da Lista (Estilo Cards Delicados) --- */
li {
    background-color: #ffffff;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #e2ded4;
    border-left: 5px solid #8fa88b;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

li:hover {
    transform: translateY(-3px);
    border-left-color: #d4af37;
    box-shadow: 0 6px 12px rgba(212, 175, 55, 0.15);
}

/* --- Links (Removendo o roxo padrão) --- */
a {
    display: block;
    padding: 20px;
    color: #3a5a40;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
}

a:hover {
    color: #b58900;
}

/* --- Marcador Sutil Elementar (Opcional) --- */
a::before {
    content: "✦ ";
    color: #d4af37;
    margin-right: 8px;
    font-size: 0.9rem;
}
