<!-- I have no clue what is this CSS, good luck trying to figuring it out. Dear god -->

/* ------------------------------------------
   GENERAL – Centrar TODO en el viewport
-------------------------------------------*/

body {
  background: url("https://jaden-obsidian-star.neocities.org/wxpbg.jpeg") no-repeat center center fixed !important;
  background-size: cover !important;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh; 
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  
}

/* Wrapper para centrar la ventana */
.center-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
  background: transparent !important;
}



/* ------------------------------------------
   WINDOW
-------------------------------------------*/

.window .window-body {
  height: calc(700px - 40px);
  overflow: hidden;
  padding: 20px;
  box-sizing: border-box;
  background: #ececec;
}


/* ------------------------------------------
   GRID PRINCIPAL
-------------------------------------------*/

.layout-grid {
  display: grid;
  grid-template-columns: 250px 1fr;
  grid-template-rows: auto 1fr auto;
  height: 100%;
  gap: 10px;
}


/* ------------------------------------------
   COLUMNA IZQUIERDA
-------------------------------------------*/

.left-column {
  grid-row: 1 / span 3;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

/* Avatar */
.avatar-box {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 3px solid #ffffff55;
  background: #dcdcdc;
  margin-bottom: 10px;
  box-shadow: inset 0 0 8px #00000022;
}

/* Nombre */
.name-box {
  width: 100%;
  text-align: center;
  background: white;
  padding: 5px;
  border-radius: 5px;
  box-shadow: inset 0 0 0 1px #d0d0d0;
}

/* Social media dentro de la columna izquierda */
.left-column .social-box {
  width: 100%;
  background: white;
  padding: 10px;
  border-radius: 6px;
  box-shadow: inset 0 0 0 1px #d0d0d0;
  text-align: center;
}

.left-column .social-box button {
  margin: 5px 0;
  width: 90%;
}


/* ------------------------------------------
   COLUMNA DERECHA
-------------------------------------------*/

.right-column {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Caja Win7 */
.box {
  background: white;
  padding: 15px;
  border-radius: 6px;
  box-shadow: inset 0 0 0 1px #d0d0d0;
}


/* ------------------------------------------
   ACCOUNT INFO + ABOUT
-------------------------------------------*/

.account-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Bloques internos */
.about-me {
  padding: 12px;
}

#div5 {
  padding: 12px;
  background: #ffffff;
  border-radius: 6px;
  box-shadow: inset 0 0 0 1px #d0d0d0;
}


/* ------------------------------------------
   LIKES / DISLIKES
-------------------------------------------*/

.likes-dislikes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Scroll interno */
.scroll-box {
  max-height: 180px;
  overflow-y: auto;
}

/* Scroll estilo Win7 */
.scroll-box::-webkit-scrollbar {
  width: 10px;
}

.scroll-box::-webkit-scrollbar-track {
  background: #f0f0f0;
}

.scroll-box::-webkit-scrollbar-thumb {
  background: #c6c6c6;
  border-radius: 5px;
}


/* ------------------------------------------
   BOTONES SOCIALES EN COLUMNA IZQUIERDA
-------------------------------------------*/

#div10 {
  display: none; /* lo ocultamos para moverlo a la otra columna */
}





