/* style.css */

/* --- Estilos Generales --- */
body {
    /* Un fondo de patrón. Busca "tiled background gif" para más opciones */
    background-image: url('./assets/Backgrounds/lain2.jpg');
    /* Fuentes clásicas de sistema. Comic Sans es icónico para esta estética */
    font-family: 'VT323', 'Comic Sans MS', 'Chalkduster', 'cursive';
    color: #000000; /* Texto negro */
}

.retro-button {
  background-color: #C0C0C0;
  border: 2px outset #808080;
  padding: 5px 10px;
  font-family: 'Comic Sans MS', 'Chalkduster', 'cursive';
  cursor:pointer;
}

.retro-button:active {
  border: 10px inset #808080;
}

img[alt="Play"],
img[alt="Pause"] {
  cursor: pointer;
}



a {
    color: #0000FF; /* Enlaces en azul brillante */
    text-decoration: underline;
}

a:visited {
    color: #800080; /* Enlaces visitados en morado */
}

a:hover {
    color: #FF0000; /* Al pasar el ratón, se ponen rojos */
    text-decoration: none;
}

hr {
    border: 1px solid #000000;
}

/* --- Contenedor Principal --- */
.main-container {
    width: 70%;
    margin: 20px auto; /* Centrar la tabla */
    border: 4px outset #C0C0C0; /* Borde estilo 3D clásico de Windows 95 */
    background-color: #DFDFDF; /* Fondo gris claro */
    box-shadow: 5px 5px 0px #000; /* Sombra sólida para darle profundidad */
}

.header {
    text-align: center;
    /* Fondo gradiante vaporwave de arrba a abajo */

    background: linear-gradient(to bottom, #ec2bd9, #cee933); /* Rosa a cian */
    border-bottom: 4px outset #C0C0C0; /* Borde inferior estilo 3D */
    padding: 20px;
    color: #FFFFFF; /* Texto blanco */
}

.header h1 {
    margin: 0;
    font-size: 2em;
    text-shadow: 2px 2px 0px #000000; /* Sombra para el texto */
}

/* --- Columnas --- */
.sidebar {
    width: 15%;
    vertical-align: top; /* Alinear contenido arriba */
    padding: 15px;
    border-right: 4px outset #C0C0C0;
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 80px auto;
    position: relative;
}
.sidebar2 {
    width: 15%;
    vertical-align: top; /* Alinear contenido arriba */
    padding: 15px;
    border-left: 4px outset #C0C0C0;
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 80px auto;
}

.main-feed {
    width: 60%;
    vertical-align: top;
    padding: 15px;
    position: relative;
    font-size: 0.92em;
}

/* --- Contenido Específico --- */
.friend-space {
    text-align: center;
}

.friend-space img {
    width: 60px;
    height: 60px;
    border: 2px solid #000;
}

.blog-post {
    background-color: #fff;
    border: 2px solid #3b6ea5; /* Borde azul tipo libreta */
    padding: 10px 18px;
    margin-top: 10px;
    position: relative;
    box-shadow: 0 2px 8px #b0c4de33;
    /* Líneas horizontales tipo libreta */
    background-image: repeating-linear-gradient(
        to bottom,
        #fff 0px,
        #fff 23px,
        #b0c4de 24px,
        #fff 25px
    );
}

h1, h2, h3, h4 {
    font-family: 'Comic Sans MS', cursive;
}

.blog-post p {
    font-family: 'VT323', monospace;
    color: #1a237e;
    font-size: 1.18em;
    margin-left: 8px;
    margin-right: 8px;
    line-height: 1.7;
    letter-spacing: 1px;
}

#reloj-digital {
    margin-top: 20px;
    padding: 16px 0;
    background: #000;
    color: #00FF00; /* Verde fosforito, como las terminales antiguas */
    font-family: 'VT323', monospace;
    font-size: 2em;
    text-align: center;
    border: 3px solid #00FF00;
    border-radius: 6px;
    box-shadow: 0 0 16px #00FF00, 0 0 4px #000;
    text-shadow: 0 0 8px #00FF00, 0 0 2px #000;
    letter-spacing: 2px;
}

.sidebar ul {
    list-style: none;
    padding-left: 0;
}
.sidebar ul li img {
    height: 32px;
    width: auto;
    vertical-align: middle;
    margin-right: 4px;
}

.portal-img-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-top: 20px;
    margin-bottom: 10px;
    height: 90px; /* ajusta según el espacio que desees */
}
.portal-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}