/* Fuente base y fondo oscuro */
body {
    font-family: 'Orbitron', Arial, sans-serif;
    background-color: #0d1117; /* Negro azulado */
    background-attachment: fixed;
    background-size: cover;
    color: #f0f0f0; /* Texto principal blanco suave */
}

/* Cabecera de la tienda con color neón */
#cabecera {
    display: flex;
    width: 90%;
    background-color: #00ffff; /* Cian neón */
    margin: auto;
    text-align: center;
    justify-content: center;
    border: 4px double #00ffff;
    padding: 30px;
    color: #0d1117;
    box-shadow: 0 0 10px #00ffff;
}

/* Sección de productos/artículos */
#articulos {
    float: left;
    width: 700px;
    height: auto;
    margin: 50px 0 50px 100px;
    background-color: #161b22; /* Gris azulado oscuro */
    border: 4px double #00ffff;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    color: white;
    text-shadow: 0 0 3px #00ffff;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

/* Aside de la tienda (info adicional o filtros) */
aside {
    float: right;
    width: 700px;
    height: auto;
    margin: 50px 100px 50px 0;
    background-color: #161b22;
    border: 4px double #ff00ff; /* Magenta brillante */
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 40px;
    color: white;
    text-shadow: 0 0 3px #ff00ff;
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.3);
}

/* Pie de página */
#pie {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00ffff;
    background-color: #0d1117;
    width: 100%;
    height: 200px;
    border-top: 4px solid #00ffff;
    box-shadow: 0 0 10px #00ffff inset;
}

/* Limpieza de floats */
.clearfix {
    clear: both;
}

a {
  color: #00ffff; /* Cian neón */
  text-decoration: none;
  text-shadow: 0 0 5px #00ffff;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

a:hover {
  color: #ff00ff; /* Magenta neón al pasar el cursor */
  text-shadow: 0 0 8px #ff00ff;
}
