html {
    padding: 20px;
    border: 10px solid #1C1C1C;
    background: linear-gradient(180deg, #6B8E23 0%, #556B2F 100%);
}

* {
    font-family: monospace;
}

body {
    font-size: 20px;
    color: white;
}


.botao-voltar {
    display: inline-block;
    margin: 20px;
    padding: 12px 20px;
    background: #8B0000;
    color: white;
    text-decoration: none;
    border: 2px solid #ff0000;
    border-radius: 8px;
    font-size: 20px;
    font-weight: bold;
    transition: .3s;
    box-shadow: 0 0 10px rgba(255,0,0,.4);
}

.botao-voltar:hover {
    background: #ff0000;
    color: black;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255,0,0,.8);
}


.container-slayer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}


.fogo {
    position: relative;
    display: inline-block;
    z-index: 1;
}


.fogo::before {
    content: "";
    position: absolute;
    inset: -15px;
    border-radius: 12px;

    background: radial-gradient(circle,
    rgba(255,255,0,.9) 5%,
    rgba(255,140,0,.8) 35%,
    rgba(255,0,0,.7) 70%,
    transparent 100%);

    filter: blur(18px);
    animation: fogo 1.5s infinite alternate;
    z-index: -1;
}


.doom-img {
    position: relative;
    z-index: 2;
    max-width: 300px;
    height: auto;

    border: 4px solid #ff0000;
    border-radius: 8px;

    box-shadow: 0 0 15px rgba(255,0,0,.5);
}


.texto {
    max-width: 500px;
}


.texto h2 {
    color: #ff0000;
    font-size: 38px;
    margin-bottom: 20px;
    text-shadow: 0 0 10px #ff0000;
}


.frase {
    color: #ffcc00;
    font-size: 24px;
    font-style: italic;
    margin-bottom: 20px;
}


.texto p {
    font-size: 22px;
    line-height: 1.7;
}


.titulo-inicio {
    color: #ff0000;
    text-decoration: underline #363636;
    font-size: 36px;
}


.titulo-historia {
    color: #ffcc00;
    text-decoration: underline #363636;
    font-size: 30px;
}


.titulo-armas {
    color: #FF8C00;
    text-decoration: underline #363636;
    font-size: 30px;
}


.titulo-curiosidades {
    color: #ffd700;
    text-decoration: underline #363636;
    font-size: 30px;
}


.lista-jogos {
    list-style: none;
    padding: 0;
    max-width: 600px;
}


.lista-jogos li {
    display: flex;
    justify-content: space-between;
    align-items: center;

    background-color: #1a1a1a;

    color: white;

    padding: 12px 20px;

    margin-bottom: 10px;

    border: 2px solid #4a0000;

    border-radius: 6px;

    transition: all .3s ease;
}


.lista-jogos li:hover {
    background-color: #330000;

    border-color: #ff0000;

    transform: translateX(10px) scale(1.02);

    box-shadow: 0 0 15px rgba(255,0,0,.4);
}


.lista-jogos span {
    font-weight: bold;
}


@keyframes fogo {

    0% {
        transform: scale(1);
        opacity: .7;
    }

    100% {
        transform: scale(1.08);
        opacity: 1;
    }

}


body p {
    color: white;
    line-height: 1.8;
}