/* ===== BASE ===== */
body {
  margin: 0;
  padding: 0;
  background-color: #1F2E2A;
  color: #E6E4E1;
  font-family: 'EB Garamond', serif;
  background-image: url("fog-bg.png");
  background-repeat: repeat;
  animation: fadein 1.5s ease;
}

@keyframes fadein {
  from { opacity: 0; }
  to { opacity: 1; }
}

.container {
  max-width: 700px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

h2 {
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: #B8B3A8;
  margin-bottom: 3rem;
}

p {
  line-height: 1.7;
}

footer {
  margin-top: 4rem;
  font-size: 0.85rem;
  color: #B8B3A8;
  text-align: center;
}

/* ===== MENU ===== */
.menu {
  margin-bottom: 3rem;
}

.menu a {
  margin-right: 1.2rem;
  text-decoration: none;
  color: #B8B3A8;
  font-size: 0.9rem;
}

.menu a:hover {
  color: #E6E4E1;
}

/* ===== BLOG BOXES ===== */
.entry,
.story,
.fanfics li,
.player {
  background-color: rgba(0, 0, 0, 0.35);
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-radius: 4px;
}

.entry:hover,
.story:hover {
  background-color: rgba(0, 0, 0, 0.5);
}

/* ===== DIARY ===== */
.date {
  font-size: 0.8rem;
  color: #B8B3A8;
}

/* ===== STORIES ===== */
.meta {
  font-size: 0.8rem;
  color: #B8B3A8;
  font-style: italic;
}

/* ===== FANFICS ===== */
.fanfics {
  padding: 0;
}

.fanfics li {
  list-style: none;
}

/* ===== SNOW GLITTER (GLOBAL) ===== */
.snow {
  position: fixed;
  top: -50px;
  left: 0;
  width: 100%;
  height: 120%;
  pointer-events: none;
  background-image: url("snowglitter.gif");
  background-repeat: repeat;
  opacity: 0.35;
  animation: snow-fall 35s linear infinite;
  z-index: 200;
}

@keyframes snow-fall {
  from { background-position: 0 0; }
  to { background-position: 0 1000px; }
}

/* ===== HOME BANNER ===== */
.home-banner {
  width: 100%;
  height: 240px;
  background-image: url("banner.png");
  background-size: cover;
  background-position: center;
  margin-bottom: 3rem;
  border: 1px solid rgba(255,255,255,0.1);
}

/* ===== MYSPACE STYLE BANNER ===== */
.myspace-banner {
  width: 760px;
  height: 220px;
  background-image: url("https://inkinthemist.neocities.org/ChatGPT%20Image%206%20ene%202026,%2002_03_01.png"); /* Aquí está la URL codificada */
  background-size: cover;
  background-position: center;
  border: 3px solid #ff4da6;
  margin: auto;
  position: relative;
  box-shadow: 0 0 20px black;
  margin-bottom: 3rem; /* Espacio debajo del banner */
}

.banner-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-family: Impact, Arial Black, sans-serif;
  color: white;
  text-shadow: 
    2px 2px 0 black,
    0 0 10px #ff4da6;
}

.title {
  font-size: 42px;
}

.subtitle {
  font-size: 18px;
  font-family: Verdana, Arial, sans-serif;
  margin-top: 5px;
  color: #ffd6eb;
}

/* Efecto parpadeo para el título */
@keyframes blink {
  0% { color: #ff4da6; }
  50% { color: #ffd6eb; }
  100% { color: #ff4da6; }
}

.title {
  animation: blink 1s infinite;
}




