/* 1. FONDO Y ESTRELLAS */
body {
    background-color: #0d0d2b;
    background-image: url('https://www.transparenttextures.com/patterns/stardust.png');
    color: #e0e0e0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 20px;
    line-height: 1.6;
}

/* 2. EL TÍTULO QUE BRILLA */
h1 {
    text-align: center;
    color: #ffffff;
    text-shadow: 0 0 5px #fff, 0 0 10px #ffeb3b, 0 0 20px #ffeb3b, 0 0 40px #fbc02d;
    margin-top: 50px;
}

/* 3. EL MENÚ MÍSTICO */
.contenedor-menu {
    text-align: center;
    margin: 30px 0;
}

.caja-menu {
    display: inline-block;
    background: rgba(0, 0, 0, 0.7);
    padding: 15px;
    border: 2px double #8a2be2;
    border-radius: 15px;
    box-shadow: 0 0 15px #8a2be2;
}

.menu-link {
    color: #ffeb3b; 
    text-decoration: none;
    font-weight: bold;
    margin: 0 15px;
    text-shadow: 0 0 5px #000;
    transition: 0.3s;
}

.menu-link:hover {
    color: #ffffff;
    text-shadow: 0 0 10px #8a2be2;
}

/* 4. ESTILO PARA TEXTOS Y PÁRRAFOS */
p {
    max-width: 800px;
    margin: 20px auto;
    text-align: center;
}
