:root {
  --bg-main: #070c11;
  --bg-alt: #14131c;
  --text-main: #e6dfdf;
  --accent: #d2a9c0;
  --post-bg: #27221c;
    --text: rgb(186, 177, 236);
  --base: rgb(42, 39, 44);

  --green:rgb(59, 163, 59);

}

body {
  display: flex;
  flex-direction: column;
  width: 100vw;
  margin: 0;
  padding: 0;
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  scrollbar-width: none;
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  font-size: 1.1em;
  color: var(--accent-hover);
}
p{
  text-align: left;
}
.page, .page2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100vw;
  min-height: 100vh;
  padding: 20px;
}

.page {
  background-color: var(--bg-main);
 border-radius: 200px 0 200px 0;
}

.page2 {
  background-color: var(--bg-alt);
   border-radius: 0 0 800px 200px;
}

nav {
  margin-top: 20px;
}

nav a {
  margin: 0 10px;
  padding: 6px 12px;
  border: 2px solid var(--accent);
  border-radius: 8px;
  color: var(--text-main);
  background-color: var(--post-bg);
}

nav a:hover {
  background-color: var(--green);
  color: #fff;
}

h1, h3 {
  margin-bottom: 10px;
}

h1 {
  font-size: 2.4em;
}

h3 {
  font-size: 1.4em;
}

.title {
  width: 80%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.post {
  background-color: var(--post-bg);
  padding: 20px;
  border: 2px solid var(--border);
  border-radius: 12px;
  margin: 14px;
  width: 85%;
  max-width: 600px;
      box-shadow: 0 0 10px var(--accent);
}

ul {
  padding-left: 18px;
  text-align: left;
}

ul li {
  margin-bottom: 8px;
}

img {
  width: 100px;
  height: auto;
  border-radius: 8px;
}

.espeon {
  height: 120px;
  width: auto;
  transition: transform 0.3s ease;
}

.espeon:hover {
  transform: scale(1.08);
}
.date{
  color: var(--accent);
}
.blinkie {
  width: 150px;
  height: 38px;
  transition: all 0.3s ease;
}

.blinkie:hover {
  width: 400px;
  height: 80px;
}

.row4 {
  display: flex;
  flex-direction: row;
}

.espeon:hover::after {
  background-color: var(--bg-main);
  color: var(--text-main);
  content: "Click me to go back to the party";
  position: absolute;
  top: -8%;
  font-size: 14px;
  padding: 5px 10px;
  border-radius: 4px;
  white-space: nowrap;
  box-shadow: 0 2px 4px rgba(255,255,255,0.2);
  pointer-events: none;
  z-index: 10;
}

p {
  line-height: 1.6;
  margin: 10px 0;
}

i {
  font-style: italic;
}

b {
  font-weight: 600;
}
/* Existing CSS — keep everything you already have */

/* Fade In Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0; /* Start invisible, animate to visible */
}

/* Optional stagger effect */
.page .post:nth-child(2) { animation-delay: 3s; }
.page .post:nth-child(3) { animation-delay: 3s; }
.page .post:nth-child(4) { animation-delay: 7s; }

@media (max-width: 600px) {
  .post{
    width: 40vw;
      box-shadow: 0 0 10px var(--green);
  text-align: center;
  
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .page {
  background-color: var(--base);
}

.page2 {
  background-color: var(--bg-main);
}

}