/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: #020412;
  background-image: url('https://the-wormhole-civilization.neocities.org/coolground.gif');
  background-size: cover;
  background-attachment: fixed;
  background-repeat: repeat;
  color: #c0ffc0;
  font-family: 'Courier Prime', monospace;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  min-height: 100vh;
}

/* container oldschool fixo */
.container {
  width: 800px;
  background-color: rgba(0, 0, 30, 0.88);
  border: 2px solid #00ffcc;
  box-shadow: 0 0 20px #00ffcc;
  margin: 30px 0;
  padding: 10px;
}

/* cabeçalho */
header {
  text-align: center;
  border-bottom: 2px solid #00ffcc;
  margin-bottom: 10px;
}
header h1 {
  font-family: 'Orbitron', sans-serif;
  color: #00ff99;
  text-shadow: 0 0 8px #00ffcc;
  font-size: 26px;
  letter-spacing: 2px;
}

/* layout: sidebar + main */
.content { display: flex; }
.sidebar {
  width: 200px;
  padding: 10px;
  border-right: 2px dashed #00ffcc;
}
.sidebar h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 14px;
  color: #00ffcc;
  text-align: center;
}
.sidebar ul { list-style: none; padding: 0; margin: 0; }
.sidebar ul li { margin: 8px 0; }
.sidebar a { color: #00ffcc; text-decoration: none; }
.sidebar a:hover { text-shadow: 0 0 6px #00ffcc; color: #00ffaa; }

/* area principal */
.main { flex: 1; padding: 10px 20px; }

/* logs (posts) */
.log {
  border: 1px solid #00ffcc;
  padding: 10px;
  margin-bottom: 15px;
  background-color: rgba(0, 10, 20, 0.65);
}
.log h3 { color: #00ffcc; font-family: 'Orbitron', sans-serif; margin-top: 0; }

/* === PAINEL com balõezinhos posicionados === */
.panel {
  position: relative;      /* importante: filhos absolute usam esse como referência */
  width: 100%;
  height: 280px;          /* ajusta pra teu layout */
  margin-bottom: 18px;
  border: 1px dashed rgba(0,255,204,0.25);
  background: linear-gradient(180deg, rgba(0,10,20,0.25), rgba(0,0,0,0.2));
}

/* estilo base dos "bubbles" */
.bubble {
  position: absolute;
  background: rgba(1, 15, 30, 0.95);
  border: 1px solid #00ffcc;
  color: #c0ffc0;
  padding: 10px;
  border-radius: 6px;
  width: 220px;
  font-family: 'Courier Prime', monospace;
  box-shadow: 0 0 8px rgba(0,255,204,0.06);
  line-height: 1.2;
}

/* posições dentro do painel */
.bubble.center {
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
}
.bubble.left {
  left: 6%;
  top: 18%;
}
.bubble.right {
  right: 6%;
  top: 62%;
}

/* BALOES FIXOS (fora do fluxo, ficam sobrepostos à tela) */
.bubble.fixed {
  position: fixed;
  width: 160px;
  padding: 8px;
  z-index: 9999;
  opacity: 0.95;
  font-size: 13px;
}

/* posições específicas para os fixos */
#bubble1 { top: 18px; left: 18px; }
#bubble2 { top: 120px; right: 24px; }
#bubble3 { bottom: 28px; left: 50%; transform: translateX(-50%); }

/* rodapé */
footer { text-align: center; font-size: 12px; color: #00ffcc; margin-top: 20px; }

/* link "secreto" escondido visualmente (mas aparece no hover) */
.hidden-link { color: rgba(0,31,31,0.02); text-decoration: none; }
.hidden-link:hover { color: #00ffcc; text-shadow: 0 0 8px #00ffcc; }
.secret {
  color: rgba(0,31,31,0.02); /* quase invisível */
  text-decoration: none;
  transition: color 0.2s, text-shadow 0.2s;
}
footer:hover .secret { 
  color: #00ffcc;
  text-shadow: 0 0 8px #00ffcc;
}