body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #ffffff;
    background-color: #000;
}

header {
    background-color: #333;
    color: #fff;
    padding: 1rem;
    text-align: center;
    font-size: 1rem;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

nav ul li {
    margin: 0.5rem;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

nav ul li a:hover {
    color: #1e90ff;
}

.banner img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 15px;
}

.contenido {
    padding: 2rem;
}

.titulo-seccion {
    background-color: #555;
    color: #000;
    padding: 1rem;
    text-align: center;
    margin: 1rem 0;
    border: 2px solid #000;
    border-radius: 15px;
}

.titulo-seccion h1, .titulo-seccion h2 {
    font-size: 2rem;
}

.sobre-juego {
    display: flex;
    flex-wrap: wrap;
    background-color: #000;
    padding: 1rem;
    margin-top: 2rem;
    align-items: center;
    border-radius: 15px;
    text-align: center;
}

.sobre-juego .texto, .sobre-juego .imagenes {
    flex: 1 1 100%;
    padding: 1rem;
}

.sobre-juego .imagenes img {
    width: 100%;
    height: auto;
    margin: 1rem;
    border-radius: 25px;
}

.caracteristica {
    display: flex;
    flex-wrap: wrap;
    background-color: #000;
    padding: 1rem;
    margin-top: 1rem;
    justify-content: center;
    border-radius: 15px;
    text-align: center;
    align-items: center;
}

.caracteristica .texto, .caracteristica .imagen {
    flex: 1 1 100%;
    padding: 1rem;
}

.caracteristica .imagen img {
    width: 100%;
    height: auto;
    margin: 1rem auto;
    border-radius: 25px;
}

.historia-texto {
    font-size: 1.5rem;
    text-align: center;
    margin: 2rem auto;
    padding: 1rem;
    background-color: #000;
    color: #fff;
    border-left: 4px solid orange;
    border-right: 4px solid orange;
    border-radius: 15px;
    max-width: 90%;
}

.historia-imagen img {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 0 auto;
    padding: 1rem;
    border: 2px solid orange;
    border-radius: 25px;
}

.historia-imagen {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem auto;
}

.historia-destacada {
    color: orange;
    font-weight: bold;
    font-size: 1.5rem;
    text-align: center;
    margin: 2rem auto;
    padding: 1rem;
    background-color: #000;
    border: 2px solid orange;
    border-radius: 15px;
    max-width: 90%;
}

.noticias-contenido {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background-color: #000;
    padding: 1rem;
    margin: 1rem;
    border-radius: 15px;
}

.noticias-imagen {
    flex: 1 1 100%;
    text-align: center;
}

.noticias-imagen img {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 1rem;
    padding: 1rem;
    border-radius: 25px;
}

.noticias-texto {
    flex: 1 1 100%;
    padding: 1rem;
    text-align: center;
}

.noticias-texto .noticia {
    margin: 0.5rem 1rem;
    padding: 0.5rem;
    background-color: #222;
    color: #fff;
    border: 1px solid #444;
    border-radius: 15px;
}

.noticias-texto .noticia h2 {
    font-size: 1rem;
}

.noticias-texto .noticia p {
    font-size: 1rem;
    color: #ccc;
}

.revisa-juegos-contenido {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background-color: #000;
    padding: 0.5rem;
    margin: 0.5rem;
    border-radius: 15px;
}

.revisa-juegos-imagen, .revisa-juegos-imagen-2 {
    flex: 1 1 100%;
    text-align: center;
}

.revisa-juegos-imagen img, .revisa-juegos-imagen-2 img {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 1rem auto;
    padding: 0.5rem;
    border-radius: 25px;
}

.equipo-imagen {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem auto;
}

.equipo-imagen img {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 0 auto;
    border-radius: 25px;
}

@media (min-width: 768px) {
    .equipo-imagen img {
        width: 50%;
    }
}

@media (min-width: 1024px) {
    .equipo-imagen img {
        width: 40%;
    }
}

.social-media-texto {
    text-align: center;
    margin: 2rem 0;
}

.social-media-texto h3 {
    font-size: 1.5rem;
    color: #fff;
}

.social-media {
    display: flex;
    justify-content: center;
    margin: 1rem 0;
}

.social-media a {
    margin: 0 0.5rem;
}

.social-media img {
    width: 32px;
    height: 32px;
    border-radius: 15px;
}

.contact-form {
    background-color: #222;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 600px;
    border: 1px solid #444;
    text-align: center;
    border-radius: 15px;
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-form label {
    display: block;
    font-size: 1rem;
    margin: 0.5rem 0;
    color: #ccc;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 0.5rem;
    margin: 0.5rem 0;
    border: 1px solid #555;
    border-radius: 15px;
    background-color: #333;
    color: #fff;
}

.contact-form button {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 15px;
    background-color: #1e90ff;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #00f;
}

#formMessage {
    margin-top: 1rem;
    color: #1e90ff;
}

@media (max-width: 768px) {
    .banner img,
    .sobre-juego .imagenes img,
    .caracteristica .imagen img,
    .historia-imagen img,
    .noticias-imagen img,
    .revisa-juegos-imagen img,
    .revisa-juegos-imagen-2 img,
    .equipo-imagen img {
        width: 90%;
        height: auto;
        margin: 1rem auto;
        padding: 1rem;
        border-radius: 15px;
    }

    .sobre-juego, .caracteristica, .historia-texto, .historia-destacada, .noticias-contenido, .revisa-juegos-contenido, .contact-form {
        display: block;
        padding: 1rem;
        margin: 1rem auto;
        max-width: 100%;
        text-align: center;
    }

    .sobre-juego .texto, .sobre-juego .imagenes,
    .caracteristica .texto, .caracteristica .imagen,
    .noticias-imagen, .noticias-texto,
    .revisa-juegos-imagen, .revisa-juegos-imagen-2,
    .contact-form input, .contact-form textarea {
        flex: 1 1 100%;
        width: 100%;
        margin: 0.5rem 0;
        padding: 0.5rem;
        border-radius: 15px;
    }

    .social-media img {
        width: 24px;
        height: 24px;
        margin: 0.5rem;
    }

    .contact-form button {
        width: 100%;
        padding: 0.75rem 1.5rem;
        border-radius: 15px;
    }
}

@media (min-width: 768px) {
    .sobre-juego, .caracteristica, .noticias-contenido, .revisa-juegos-contenido {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }

    .sobre-juego .texto, .sobre-juego .imagenes,
    .caracteristica .texto, .caracteristica .imagen,
    .noticias-imagen, .noticias-texto,
    .revisa-juegos-imagen, .revisa-juegos-imagen-2 {
        flex: 1 1 50%;
        text-align: center;
    }

    .historia-texto, .historia-destacada {
        margin: 2rem 12rem;
    }

    .historia-imagen img {
        width: 70%;
        margin: 2rem auto;
    }

    .equipo-imagen img {
        width: 50%;
        margin: 3rem auto;
    }

    .revisa-juegos-imagen img, .revisa-juegos-imagen-2 img {
        width: 40%;
    }
}

@media (min-width: 1024px) {
    .sobre-juego .texto, .sobre-juego .imagenes,
    .caracteristica .texto, .caracteristica .imagen {
        flex: 1 1 30%;
    }

    .equipo-imagen img {
        width: 40%;
    }
}