/* Adicione ao final do seu style.css existente */

/* Textura de fundo */
body {
    background: url('img/a.jpg') repeat;
    background-size: 300px; /* Ajuste conforme sua imagem */
}

/* Borda decorativa em capítulos */
#cap26162033, #cap26154219, #cap26160997 {
    border-image: url('img/b.png') 30 round;
    border-width: 15px;
    padding: 2em;
}

/* Ícones estilizados */
h2::before {
    content: url('img/i.png');
    margin-right: 10px;
    vertical-align: middle;
}

a {
    padding-left: 20px;
    background: url('img/s.png') no-repeat left center;
    background-size: 12px;
}

/* Efeito de folha antiga */
p {
    position: relative;
    padding: 10px 20px;
}

p::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,228,196,0.3);
    border-radius: 2px;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.1);
}

/* Detalhes em elementos específicos */
em {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="20"><text x="0" y="15" fill="rgba(255,222,173,0.5)" font-family="Cinzel">»</text></svg>') 
    repeat;
}

strong {
    text-shadow: 1px 1px 2px rgba(139,69,19,0.3);
    position: relative;
}

strong::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #8b4513, transparent);
}