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;
}

.doom-slayer-img {
    max-width: 300px;
    height: auto;
    border: 4px solid #ff0000;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(255,0,0,.5);
}

.texto-slayer {
    max-width: 500px;
    color: white;
}

.texto-slayer 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-slayer 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;
}

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

.fogo::before,
.fogo::after {
    content: "";
    position: absolute;
    inset: -15px;
    border-radius: 12px;
    z-index: -1;
}

.fogo::before {
    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;
}

.fogo::after {
    background: radial-gradient(circle,
        rgba(255,255,255,.4) 10%,
        rgba(255,120,0,.6) 40%,
        transparent 80%);
    filter: blur(30px);
    animation: fogo2 2s infinite alternate;
}

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

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

@keyframes fogo2 {
    0% {
        transform: scale(.95);
        opacity: .5;
    }

    100% {
        transform: scale(1.15);
        opacity: .9;
    }
}

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