@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');

body {
  background-color: #111;
  color: #fdd;
  font-family: 'VT323', monospace;
  font-size: 18px;
  padding: 20px;
  background-size: cover;
  background-attachment: fixed;
}

.container {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 20px;
  border: 2px dashed #ff90c2;
  border-radius: 10px;
  max-width: 700px;
  margin: auto;
}

h1 {
  color: #fff;
  font-size: 48px;
  text-align: center;
  margin-bottom: 20px;
}

.entry {
  background-color: rgba(255, 255, 255, 0.07);
  padding: 10px 15px;
  border-left: 4px solid #ff69b4;
  margin-bottom: 20px;
}

.entry h2 {
  color: #ffbde3;
  font-size: 28px;
  margin-bottom: 5px;
}

/* 🌸 Search Bar Styling */
#search {
  width: 100%;
  padding: 12px 20px;
  margin: 20px 0;
  box-sizing: border-box;
  border: 2px dashed #ff90c2;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffd8eb;
  font-family: 'VT323', monospace;
  font-size: 18px;
  outline: none;
  transition: all 0.2s ease-in-out;
}

#search::placeholder {
  color: #ffbde3;
  opacity: 0.6;
}

#search:focus {
  border-color: #ffffff;
  background-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 10px #ff90c2;
}

.secret-button {
  margin-top: 2rem;
  background: #ff90d1;
  color: #1f1f2b;
  padding: 0.6rem 1.4rem;
  border: none;
  border-radius: 1rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s ease;
}
.secret-button:hover {
  background: #ffc9f0;
}

.hidden-chaos {
  display: none;
  margin-top: 2rem;
  font-size: 1.2rem;
  color: #ffc9f0;
}

.rainbow-zone {
  background: linear-gradient(45deg, #ff66cc, #ffcc00, #66ffcc, #6699ff, #cc66ff);
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0 0 12px rgba(255, 105, 180, 0.5);
  margin-top: 2rem;
}

.rainbow-header {
  font-size: 2rem;
  color: white;
  text-shadow: 1px 1px 4px #000;
  margin-bottom: 0.5rem;
}

.rainbow-sub {
  color: white;
  font-style: italic;
  margin-bottom: 1rem;
}

.corner-button {
  position: fixed;
  top: 10px;
  right: 10px;
  background: #fff0f8;
  border: 2px solid pink;
  border-radius: 999px;
  padding: 8px 12px;
  text-decoration: none;
  font-weight: bold;
  font-family: monospace;
  color: hotpink;
  box-shadow: 0 0 10px rgba(255, 105, 180, 0.4);
  z-index: 1000;
  transition: all 0.2s ease;
}

.corner-button:hover {
  background: pink;
  color: white;
  transform: scale(1.1) rotate(-2deg);
}

footer {
  font-size: 0.7rem;
  color: #aaa3bf;
  background: #f9f4fb;
  padding: 10px 20px;
  text-align: center;
  border-top: 1px dashed #e0d3f2;
  font-style: italic;
  font-family: 'Comic Sans MS', cursive, sans-serif;
  max-width: 100%;
  box-sizing: border-box;
  user-select: none;
}

.disclaimer {
  font-size: 0.75rem;
  color: #888;
  background: #fff5f8;
  border: 1px dashed #f0c;
  padding: 8px 12px;
  margin-top: 20px;
  border-radius: 8px;
  font-style: italic;
  max-width: 600px;
  line-height: 1.4;
}
