*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, sans-serif;
    background:#111827;
    color:white;
}

.juegos{
    padding:60px 5%;
}

.titulo{
    text-align:center;
    margin-bottom:40px;
}

.titulo h1{
    font-size:3rem;
    color:#dc2626;
    margin-bottom:15px;
}

.titulo p{
    max-width:800px;
    margin:auto;
    font-size:1.1rem;
    color:#d1d5db;
}

.filtros{
    display:flex;
    justify-content:center;
    gap:15px;
    margin-bottom:40px;
    flex-wrap:wrap;
}

.filtros button{
    border:none;
    padding:12px 25px;
    background:#1f2937;
    color:white;
    cursor:pointer;
    border-radius:30px;
    transition:0.3s;
}

.filtros button:hover,
.filtros button.activo{
    background:#dc2626;
}

.contenedor-juegos{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.tarjeta{
    background:#1f2937;
    border-radius:15px;
    overflow:hidden;
    transition:0.3s;
}

.tarjeta:hover{
    transform:translateY(-10px);
    box-shadow:0 0 20px rgba(220,38,38,0.5);
}

.tarjeta img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.contenido{
    padding:20px;
}

.contenido h2{
    color:#dc2626;
    margin-bottom:10px;
}

.contenido p{
    margin-bottom:10px;
    color:#d1d5db;
}

.botones{
    display:flex;
    gap:10px;
    margin-top:15px;
}

.btn{
    text-decoration:none;
    background:#dc2626;
    color:white;
    padding:10px 18px;
    border-radius:8px;
    transition:0.3s;
}

.btn:hover{
    background:#b91c1c;
}

.secundario{
    background:#374151;
}

.secundario:hover{
    background:#4b5563;
}

@media(max-width:768px){

    .titulo h1{
        font-size:2rem;
    }

}