html, body {
  margin: 0;
  padding: 0;
  height: 100vh;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto; 
  background-color: #0f1b2e;
  color: #e9f1fb;
  font-family: 'Segoe UI', sans-serif;
}

main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  text-align: center;
  padding: 0 10px;
}

/* Título */
h1 {
  color: #3a8ddf;
  margin-bottom: 12px;
  font-size: 1.8em;
}

/* Imagem principal */
.fanart, .live-gif {
  max-height: 60vh;
  max-width: 90vw;
  border: 4px solid #1f2e47;
  border-radius: 12px;
  transition: opacity 1s ease-in-out;
  opacity: 0;
  background-color: #1c273a;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
.fanart.visible, .live-gif.visible {
  opacity: 1;
}

/* Crédito do artista */
#art-source {
  margin-top: 8px;
  font-size: 0.9em;
  color: #a0b9d6;
}

/* Status da live */
#status-text, #last-live-link {
  margin-top: 12px;
  font-size: 0.9em;
  color: #a0b9d6;
}
#last-live-link a {
  color: #73bdf4;
  text-decoration: none;
}
#last-live-link a:hover {
  text-decoration: underline;
  color: #ffffff;
}

footer {
  padding: 10px;
  text-align: center;
  background-color: #1f2e47;
  width: 100%;
  font-size: 0.9em;
  color: #a0b9d6;
  border-top: 1px solid #2f3f5c;
}
footer a {
  color: #73bdf4;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
  color: #fff;
}

#disclaimer {
  position: absolute;
  top: 6px;
  left: 10px;
  font-size: 0.7em;
  color: #d9dee4;
  opacity: 0.7;
  pointer-events: none;
  user-select: none;
}
