/* Reset básico */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Evitar scroll horizontal y fondo */
html, body {
  overflow-x: hidden;
  width: 100%;
  height: 100vh;
  background: #0C1912 url(https://files.catbox.moe/7zggqg.webp) no-repeat center center fixed;
  background-size: cover;
  cursor: url('twox.png'), auto;
  font-family: 'Orbitron', sans-serif;
  color: #00ff00;
}
img, video, iframe, .icon {
  max-width: 100%;
  height: auto;
  display: block;
}


/* Sidebar */
.sidebg {
  position: fixed;
  top: 0;
  left: 0;
  width: 200px;
  height: 100vh;
  background-image: url('https://wamoeeweb.neocities.org/neonverdgr.png');
  background-repeat: repeat-y;
  background-position: top right;
  background-color: #0C1912;
  padding: 1rem 12px 1rem 1rem;
  overflow-y: auto;
  box-sizing: border-box;
  z-index: 1000;
}

.side {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 15px;
  padding-right: 12px;
  box-sizing: border-box;
}

.avatar {
  height: auto;
  width: 512px;
  display: block;
  background-image: url('https://wamoeeweb.neocities.org/biohazard-512.png');
  background-size: cover; /* o 'cover' si prefieres que llene todo */
  background-repeat: no-repeat;
  background-position: center;

}


.avatar-text {
  text-align: center;
  font-size: 14px;
  font-family: 'Orbitron', sans-serif;
  color: #00ff00;
  margin-bottom: 1rem;
}

/* Navegación */
.sideheaders {
  font-weight: normal;
  font-size: 28px;
}

.side ul {
  padding-left: 2.5rem;
}

.side li {
  list-style-image: url('https://wamoeeweb.neocities.org/skullgr.gif');
  font-size: 16px;
  margin-bottom: 0.5rem;
}

.side a {
  color: #00ff00;
  text-decoration: none;
}

.side a:hover, .side a:active {
  font-weight: bold;
}


.container {
  margin-left: 220px;
  padding: 2rem;
  max-width: calc(100% - 220px);
  overflow-wrap: break-word;
  word-break: break-word;
}

.right {
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}


/* Header */
.headerwrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.title {
  font-weight: normal;
  font-size: 46px;
  margin-left: -1rem;
  word-break: break-word; /* evita que el título se salga */
}

/* Box */
.boxgap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.box {
  display: flex;
  flex-direction: row;
  background-color: #0C1912;
  border: 3px solid #00ff00;
  padding: 1rem;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.left {
  border-right: 3px solid #0C1912;
  padding: 0.7rem;
  text-align: center;
  min-width: 120px;
}

.icon {
  border: 2px solid #0C1912;
  max-width: 100%;
  height: auto;
  display: block;
}

..right {
  padding: 1rem;
  flex: 1;
}

.botonera {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 160px;
}

.botonera a.social-card {
  display: block;
  padding: 10px 15px;
  border: 2px solid #00ff00; /* borde verde */
  border-radius: 5px;
  background: transparent;
  color: #00ff00; /* texto verde */
  text-align: center;
  text-decoration: none;
  font-family: 'Orbitron', sans-serif;
  font-size: 16px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.botonera a.social-card:hover {
  background-color: #00ff00;  /* fondo verde */
  color: black;               /* texto blanco */
  border-color: #00ff00;      /* borde verde (igual) */
}


/* Responsive */
@media (max-width: 768px) {
  .sidebg {
    position: relative;
    width: 100%;
    height: auto;
    padding: 1rem;
    background-position: right top;
    background-repeat: repeat-y;
    overflow: visible;
    z-index: auto;
  }

  .container {
    margin-left: 0;
    padding: 1rem;
    max-width: 100vw;
  }

  .side {
    width: 100%;
    padding-right: 0;
  }

  .box {
    flex-direction: column;
    border-left: 3px solid #00ff00;
    border-right: 3px solid #00ff00;
    border-top: 3px solid #00ff00;
    border-bottom: 3px solid #00ff00;
    padding-left: 1rem;
  }

  .left, .right {
    padding: 0.5rem;
    border: none;
  }

  .icon {
    max-width: 80px;
    margin: 0 auto 1rem auto;
  }

  .title {
    font-size: 32px;
    margin-left: 0;
  }
