html {
    padding: 20px;
    border: 10px solid #1C1C1C;
    background: linear-gradient(180deg, #6B8E23 0%, #556B2F 100%);
}

* {
    font-family: monospace;
}

body {
    font-size: 20px;
}

.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, 0.5);
}

.texto-slayer {
    max-width: 500px;
    color: #ffffff;
}

.texto-slayer h2 {
    color: #ff0000;
    font-size: 38px;
    margin-bottom: 20px;
    text-shadow: 0 0 10px #ff0000;
}

.texto-slayer .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-serieprincipal {
    color: #FF8C00;
    text-decoration: underline #363636;
    font-size: 28px;
}

.titulo-seriespinsoff {
    color: #FF8C00;
    text-decoration: underline #363636;
    font-size: 28px;
}

.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: #ffffff;
    padding: 12px 20px;
    margin-bottom: 10px;
    border: 2px solid #4a0000;
    border-radius: 6px;
    transition: all 0.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, 0.4);
}

.link-caveira {
    text-decoration: none;
    font-size: 1.2rem;
    transition: transform 0.2s ease;
}

.link-caveira:hover {
    transform: scale(1.3);
}
.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,0.9) 5%,
        rgba(255,140,0,0.8) 35%,
        rgba(255,0,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,0.4) 10%,
        rgba(255,120,0,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;
    }
}