body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f4f9;
    margin: 0;
    padding: 20px;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}

h1 { text-align: center; color: #333; }

/* Estructura del Menú */
.menu-container {
    display: flex;
    justify-content: center;
}

.main-menu {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.menu-item {
    position: relative;
    width: 200px;
    text-align: center;
}

/* Estilo Base de los Botones */
.menu-item > a {
    display: block;
    padding: 20px 10px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 10px;
    transition: transform 0.2s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.menu-item > a:hover {
    transform: translateY(-5px);
    filter: brightness(1.1);
}

/* --- LÓGICA MULTICOLOR --- */
/* Asignamos colores cíclicos a los elementos principales */
.menu-item:nth-child(10n+1) > a { background-color: #FF5733; } /* Naranja */
.menu-item:nth-child(10n+2) > a { background-color: #C70039; } /* Rojo */
.menu-item:nth-child(10n+3) > a { background-color: #900C3F; } /* Vino */
.menu-item:nth-child(10n+4) > a { background-color: #581845; } /* Morado */
.menu-item:nth-child(10n+5) > a { background-color: #28B463; } /* Verde */
.menu-item:nth-child(10n+6) > a { background-color: #2E86C1; } /* Azul */
.menu-item:nth-child(10n+7) > a { background-color: #D4AC0D; } /* Dorado */
.menu-item:nth-child(10n+8) > a { background-color: #8E44AD; } /* Violeta */
.menu-item:nth-child(10n+9) > a { background-color: #E67E22; } /* Zanahoria */
.menu-item:nth-child(10n+10) > a { background-color: #1ABC9C; } /* Turquesa */

/* Submenú */
.submenu {
    display: none;
    list-style: none;
    padding: 0;
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    z-index: 100;
}

.menu-item:hover .submenu {
    display: block;
}

.submenu li a {
    display: block;
    background: #fff;
    color: #333;
    padding: 10px;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    font-size: 0.9em;
}

.submenu li a:hover {
    background-color: #f0f0f0;
    color: #000;
}

/* Botón Admin */
.btn-admin {
    background: #333;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}