/* RESET SUAVE */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  min-height: 100vh;
  overflow-x: hidden; /* fuera scroll lateral */
}

body {
  font-family: "Jersey 10", sans-serif;
  color: #ffffff;
  background: #000; /* casi no se ve por el video, pero queda de backup */
}

/* VIDEO DE FONDO */
.video-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* FONDITO FLOTEANDO (decor) */
.bg-decor::before,
.bg-decor::after {
  content: "";
  position: fixed;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  filter: blur(24px);
  opacity: 0.8;
  z-index: -1;
}
.bg-decor::before {
  top: 5%;
  left: 5%;
  background: #ffb3c6;
}
.bg-decor::after {
  bottom: 5%;
  right: 8%;
  background: #b5f3ff;
}

/* CONTENEDOR GENERAL (tipo .container de isobel) */
.page-wrapper {
  max-width: 1100px;
  margin: 90px auto 120px;
  padding: 0 16px 100px;
}

/* HEADER */
.site-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 40px;
}

.logo {
  font-size: 3.3rem;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  margin-left: -60px; /* 0 = bien a la izquierda */
}

.logo a {
  color: #000;
  text-decoration: none;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.25);
}

/* NAV */
.nav-box {
  padding: 14px 28px;
  border: 3px solid #ED7542;
  border-radius: 10px;
  display: inline-block;
  backdrop-filter: blur(6px);
  background: rgba(0,0,0,0.35);

  /* TU ZONA DE CONTROL PERSONAL */
  position: relative;
  left: 180px;    /* mueve derecha/izquierda */
  top: 0;     /* mueve arriba/abajo */
}

.main-nav {
  display: flex;
  gap: 10px;
}

.main-nav a {
  text-decoration: none;
  font-size: 1.1rem;
  padding: 6px 12px;
  border-radius: 12px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(3px);
  transition: 0.15s ease;
}

.main-nav a:hover {
  background: #f54927;
  border-color: #f54927;
  transform: translateY(-2px);
}

/* LAYOUT PRINCIPAL: 2 COLUMNAS  */
.main-layout {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

/* COLUMNA IZQUIERDA: SIDEBAR / BOX 1 */
.left-sidebar {
  width: 380px;
  background: rgba(0, 0, 0, 0.58);
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(4px);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-left: -200px;

}

/* Contenido de la sidebar */
.profile-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.profile-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.profile-text {
  display: flex;
  flex-direction: column;
}

.username {
  font-size: 2rem;
  font-weight: 600;
  color: #baff64;
  margin-bottom: 2px;
  text-align: center;
}

.handle {
  font-size: 1rem;
  color: #9affc4;
  opacity: 0.9;
  text-align: center;
}

.bio {
  font-size: 1.3rem;
  line-height: 1.45;
  color: #f54927;
  opacity: 0.95;
  text-align: center;
}

.song-intro {
  color: #f54927;
  font-weight: 500;
  font-size: 1.1rem;
}

.song-title {
  font-size: 1rem;
  font-weight: 700;
  color: #F5BB27;
}

/* soundcloud */
.sc-wrapper {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.sc-wrapper iframe {
  display: block;
}

/* chatbox */
.section-title {
  font-size: 1.4rem;
  margin: 6px 0 8px;
  color: #baffbe;
  text-align: center;
}





/* COLUMNA DERECHA (BOX 2) */
.center-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.center-box {
  background: rgba(0, 0, 0, 0.58);              /* mismo vidrio que la sidebar */
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(4px);
  padding: 16px 18px;                            /* espacio interno */
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* PANEL CENTRAL TIPO "UPDATE BOX" + "BULLETIN BOARD" */
.center-panel {
  margin-top: 0.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap; /* en pantallas chicas se apilan */
}

/* cada columna (updates / bullet board) */
.center-panel-column {
  flex: 1 1 230px;
  background: rgba(4, 7, 20, 0.85);
  border: 1px solid #baff64;
  border-radius: 10px;
  padding: 0.8rem 1rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.55);
}

/* títulos de cada panel */
.panel-title {
  font-size: 1rem;
  text-transform: lowercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  color: #baff64;
}

/* lista de ítems dentro de cada panel */
.panel-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
}

.panel-list li {
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

/* mini etiquetas tipo “new!”, “web”, etc. */
.panel-tag {
  display: inline-block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.1rem 0.3rem;
  border-radius: 6px;
  border: 1px solid #baff64;
  margin-right: 0.35rem;
}

.bottom-space {
  height: 80px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .main-layout {
    flex-direction: column;
  }

  .left-sidebar {
    width: 100%;
  }

  .center-column {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .logo {
    font-size: 2.6rem;
  }

  .nav-box {
    padding: 8px 14px;
  }

  .main-nav {
    flex-wrap: wrap;
  }
}

/* -------------------------- */
/* PANEL CENTRAL: UPDATES     */
/* -------------------------- */

.center-panel {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;           /* en pantallas chicas se apilan */
}

/* cada columna (updates / bullet board) */
.center-panel-column {
  flex: 1 1 220px;           /* crece, pero tiene un ancho mínimo */
  background: rgba(4, 7, 20, 0.85);  /* oscuro translúcido tipo glass */
  border: 1px solid #baff64;        /* tu verde neón */
  border-radius: 10px;
  padding: 0.8rem 1rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.55);
}
/* CAJA CENTRAL tipo "bulletin board" */
.center-box {
  background: rgba(0, 0, 0, 0.58);          /* mismo vibe que la sidebar */
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(4px);
  padding: 18px 20px 22px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.55);
}

/* título [bulletin board] arriba */
.center-box-title {
  font-size: 1.35rem;
  text-align: center;
  margin-bottom: 12px;
  color: #baff64;
  letter-spacing: 0.08em;
}

/* títulos de cada panel */
.panel-title {
  font-size: 1rem;
  text-transform: lowercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  color: #baff64;
}

/* lista de ítems dentro de cada panel */
.panel-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
}

.panel-list li {
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

/* mini etiquetas tipo “new!”, “web”, etc. */
.panel-tag {
  display: inline-block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.1rem 0.3rem;
  border-radius: 6px;
  border: 1px solid #baff64;
  margin-right: 0.35rem;
}
.updates-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 1rem;
  color: #fff;
  line-height: 1.4;
}

.updates-list li {
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.update-date {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.7;
  display: block;
  margin-bottom: 4px;
}


/*JOURNAL*/
/* JOURNAL / MICROBLOG */





.journal-title {
  font-size: 1.4rem;
  margin-bottom: 14px;
  color: #222;
}

.status-entry {
  margin-bottom: 18px;
}

.status-meta {
  font-size: 0.8rem;
  color: #777;
  margin-bottom: 4px;
}

.status-text {
  font-size: 0.95rem;
  line-height: 1.5;
}

.panel-link {
  color: #baff64;
  text-decoration: none;
}

.panel-link:hover {
  text-decoration: underline;
}

.snippet-frame {
  width: 100%;
  height: 260px;        /* puedes subir/bajar este número */
  border: none;
  border-radius: 12px;
  background: transparent;
}

/* ===========================
   JOURNAL / MICROBLOG
   =========================== */

/* Layout de la página de journal */
.journal-page {
  max-width: 950px;
  margin: 110px auto 120px;
  padding: 0 24px 80px;
}

/* Título grande de la página */
.journal-page-title {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
  color: #baff64;
  letter-spacing: 0.08em;
  text-shadow: 0 0 10px rgba(0,0,0,0.8);
}



/* Lista de entradas */
.statuses {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Cada entrada */
.status {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.status:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* La línea de arriba: usuario + tiempo */
.status-meta {
  font-size: 1.00rem;
  margin-bottom: 4px;
}

.status-username a {
  color: #b28dff;
  text-decoration: none;
  font-weight: 600;
}

.status-username a:hover {
  text-decoration: underline;
}

.status-meta .time {
  color: #c2c2c2;
  margin-left: 6px;
}

/* Texto de la entrada */
.status-text {
  font-size: 1.00rem;
  line-height: 1.5;
  color: #fdfdfd;
}

/* Links dentro del texto del status */
.status-text a {
  color: #e6a8ff;
  text-decoration: underline;
}
.status-text a:hover {
  color: #fff0ff;
}






/* Versión “reducida” para el snippet del home */
body.snippet-body {
  background: transparent;       /* que el body del iframe NO sea negro */
}

body.snippet-body .journal-box {
  padding: 16px 20px;
  border-radius: 18px;
  max-height: 240px;
  overflow-y: auto;

  /* 💚 fondo verde translúcido */
  background: rgba(120, 255, 180, 0.18);
  border: none;
}


/* Scroll finito dentro del snippet */
body.snippet-body .journal-box::-webkit-scrollbar {
  width: 6px;
}
body.snippet-body .journal-box::-webkit-scrollbar-track {
  background: transparent;
}
body.snippet-body .journal-box::-webkit-scrollbar-thumb {
  background: rgba(186, 255, 100, 0.6);
  border-radius: 999px;
}

/* El título "⋆˚꩜｡journal⋆˚꩜｡" en el home ya lo tenés,
   solo hacemos el link más lindo */
.panel-link {
  color: #baff64;
  text-decoration: none;
}
.panel-link:hover {
  text-decoration: underline;
}


/* Caja que envuelve el snippet (adentro del iframe) */
.snippet-frame-box {
  background: transparent;
  border: none;
  border-radius: 18px;   /* podés dejarlo para esquinas suaves */
  padding: 0;            /* si lo querés bien pegado; si no, probá 10px */
  color: #e6e6e6;
}


/* Iframe en el home */
.snippet-frame {
  width: 100%;
  height: 260px;
  border: none;
  border-radius: 12px;
  background: transparent;
}






/* iframe adentro del journal */
.journal-iframe {
  width: 100%;
  height: 400px;   /* subí o bajá este número según cuántos posts tengas */
  border: none;
  border-radius: 24px;
}

/* Estilo de las entradas */
.status {
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.status:last-child {
  border-bottom: none;
}

.status-username a {
  color: #c7b4ff;
  text-decoration: none;
  font-weight: 600;
}

.status-username a:hover {
  text-decoration: underline;
}

.time {
  color: #baff64;
  margin-left: 8px;
  font-size: 0.85rem;
}

.status-text {
  margin-top: 6px;
  line-height: 1.5;
  font-size: 0.95rem;
}

/* Caja grande del journal (versión final, SOLO en journal.html) */
.journal-page .journal-box {
  max-width: 1100px;
  margin: 80px auto 40px;
  padding: 20px 26px 24px;
  border-radius: 24px;

  /* fondo translúcido verde suave */
  background: rgba(120, 255, 180, 0.10);

  /* sin borde duro */
  border: none;

  /* glow suave */
  box-shadow: 0 0 25px rgba(120, 255, 150, 0.25);

  /* efecto vidrio */
  backdrop-filter: blur(8px);
}

/* cajita verde dentro del snippet del home */
.snippet-inner {
  background: rgba(120, 255, 180, 0.18); /* verde translúcido */
  border-radius: 18px;
  padding: 16px 20px;
  border: none;
}

/* por si quedó algún borde loco alrededor del iframe */
.snippet-frame-box,
.snippet-frame {
  border: none !important;
  box-shadow: none !important;
}

