/* Estilos base para un diseño retro estilo terminal de los 80s */
html, body {
    height: 100%;
    margin: 0;
    font-family: 'Courier New', monospace;
    background-color: black;
    color: #00FF00;
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Contenedor principal */
.container {
    flex-grow: 1;
    padding: 20px;
}

/* Banner superior */
#banner {
    width: 100%;
    padding: 20px 10px;
    border-bottom: 2px solid #00FF00;
    text-transform: uppercase;
    font-size: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.banner-content img {
    width: 120px;
    height: auto;
    image-rendering: pixelated;
    border: 2px solid #00FF00;
}

.banner-content h1 {
    font-size: 22px;
    text-align: center;
    margin-top: 10px;
}

/* Navegación estilo retro */
nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 2px solid #00FF00;
}

nav a {
    color: #00FF00;
    text-decoration: none;
    padding: 5px 10px;
    font-size: 18px;
    border: 1px solid #00FF00;
    background-color: black;
    transition: all 0.3s;
}

nav a:hover {
    background-color: #00FF00;
    color: black;
    text-decoration: none;
}

/* Sección de contenido */
.section {
    border: 2px solid #00FF00;
    padding: 20px;
    margin: 20px auto;
    max-width: 800px;
    background-color: black;
    text-align: left;
}

h1, h2, h3 {
    color: #00FF00;
}

p, li {
    font-size: 16px;
    color: #00FF00;
}

/* Imágenes pixeladas */
.footer-content img, .banner-content img {
    max-width: 100%;
    height: auto;
    image-rendering: pixelated;
    border: 2px solid #00FF00;
    padding: 5px;
}

.dragonlance-icon {
    max-width: 100%;
    height: 250px;
    image-rendering: pixelated;
    border: 2px solid #00FF00;
    padding: 5px;
}

.map {

    max-width: 100%;
    height: auto;
    image-rendering: pixelated;
    border: 2px solid #00FF00;
    padding: 5px;

}


.pixel-art {
    max-width: 100%;
    height: 250px;
    image-rendering: pixelated;
    border: 2px solid #00FF00;
    padding: 5px;
}

/* Estilo para listas */
ul {
    list-style-type: none;
    padding: 0;
}

li::before {
    content: '> ';
    color: #00FF00;
}

/* Reproductor de audio */
.audio-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    max-width: 400px;
    margin: auto;
    padding: 15px;
    border: 2px solid #00FF00;
}

button {
    background-color: #00FF00;
    color: black;
    border: none;
    padding: 10px;
    cursor: pointer;
}

/* Footer */
footer {
    background-color: black;
    color: #00FF00;
    padding: 15px;
    font-size: 12px;
    text-align: center;
    border-top: 2px solid #00FF00;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.lance-icon {
    width: 40px;
    height: 40px;
    image-rendering: pixelated;
    border: 2px solid #00FF00;
}

/* Media Queries para hacerlo responsivo */
@media (max-width: 768px) {
    .section {
        max-width: 95%;
        padding: 15px;
    }
    
    nav {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .section {
        max-width: 100%;
        padding: 10px;
    }
    
    nav a {
        font-size: 14px;
    }
    
    footer {
        font-size: 10px;
    }
}
