/* --- 1. FONDO DE TODA LA PANTALLA --- */
body {
    /* Cambia este enlace por el GIF o imagen de tu fondo exterior general */
    background-image: url('https://gifdb.com/images/thumbnail/pink-black-scene-glitter-background-hyr4uogbg5hdl152.gif');
    background-repeat: repeat;
    background-attachment: fixed;
    background-color: #000000;
    font-family: 'VT323', monospace;
    font-size: 18px;
    color: #ffffff;
    margin: 0;
    padding: 20px 10px;
}

/* --- 2. FONDO Y CAJA DEL CENTRO (CONTENEDOR DIRECTOR) --- */
.contenedor-director {
    max-width: 1100px;
    width: 95%;
    margin: 0 auto;
    
    /* PÓN EL NOMBRE DE TU GIF AQUÍ: */
    background-image: url('https://i.pinimg.com/1200x/74/36/29/743629548876352a10e28fbe892dbe96.jpg'); 
    background-repeat: repeat; /* Para que el GIF se repita y cubra toda la caja */
    background-attachment: scroll;
    
    background-color: #111116; /* Color de respaldo si tarda en cargar */
    border: 2px dashed #ff99cc;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    box-sizing: border-box;
}

/* BANNER SUPERIOR */
.banner {
    text-align: center;
    margin-bottom: 20px;
}

.banner img {
    max-width: 100%;
    height: auto;
    border: 2px solid #ff99cc;
    border-radius: 5px;
}

/* --- 3. ESTRUCTURA EN 3 COLUMNAS FLEX --- */
.contenido-flex-principal {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.columna-izquierda,
.columna-derecha {
    width: 220px;
    flex-shrink: 0;
}

.columna-centro {
    flex-grow: 1;
}

/* --- 4. ESTILO DE LAS CAJAS INTERNAS --- */
.caja-estilo, 
.bloque-menu {
    background-color: #1a1a24;
    border: 2px solid #ff007f;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    box-sizing: border-box;
}

/* Títulos con cajita rosa arriba */
.caja-estilo h2,
.caja-estilo h3,
.bloque-menu h3 {
    background-color: #ff007f;
    color: #ffffff;
    text-align: center;
    padding: 6px;
    margin: -15px -15px 15px -15px;
    border-radius: 5px 5px 0 0;
    width: calc(100% + 30px);
    box-sizing: border-box;
    font-size: 20px;
}

/* Caja especial con borde punteado dentro de bienvenida */
.caja-destacada {
    border: 2px dashed #ff99cc;
    padding: 10px;
    border-radius: 6px;
}

/* Enlaces rosas */
.bloque-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bloque-menu li {
    margin-bottom: 8px;
}

.bloque-menu a, 
.caja-estilo a {
    color: #ff99cc;
    text-decoration: none;
}

.bloque-menu a:hover, 
.caja-estilo a:hover {
    color: #ff007f;
}