body {
  margin: 0;
  padding: 0;
  font-family: 'Courier Prime', monospace;
  color: #fff;
  background: url("countryside.jpg") center/cover no-repeat fixed;
  overflow-x: hidden;
}

.glow {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(circle at 20% 20%, rgba(173, 110, 255, 0.2), transparent 70%),
              radial-gradient(circle at 80% 80%, rgba(255, 255, 120, 0.15), transparent 70%),
              radial-gradient(circle at 60% 30%, rgba(100, 150, 255, 0.25), transparent 70%);
  mix-blend-mode: screen;
  animation: glowshift 10s infinite alternate ease-in-out;
  pointer-events: none;
}

@keyframes glowshift {
  from { filter: hue-rotate(0deg); }
  to { filter: hue-rotate(360deg); }
}

header {
  text-align: center;
  padding: 30px 20px;
  text-shadow: 0 0 10px #d9aaff, 0 0 20px #fff;
}

h1 {
  font-family: 'Great Vibes', cursive;
  font-size: 3.5em;
  color: #ffd9ff;
  animation: pulse 3s infinite alternate ease-in-out;
}

@keyframes pulse {
  from { text-shadow: 0 0 10px #fff6a5, 0 0 20px #b699ff; }
  to { text-shadow: 0 0 30px #ffdaff, 0 0 60px #fff; }
}

h2, h3 {
  font-family: 'Great Vibes', cursive;
  color: #ffe5ff;
  text-shadow: 0 0 10px #ffd6ff;
}

.container {
  display: flex;
  justify-content: space-between;
  padding: 20px;
}

.sidebar, .rightbar {
  width: 20%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-box {
  background: rgba(60, 0, 100, 0.4);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 20px;
  padding: 10px;
  max-height: 150px;
  overflow-y: scroll;
  backdrop-filter: blur(10px);
  transition: 0.3s;
}
.info-box:hover {
  box-shadow: 0 0 20px #ffff99;
}

main {
  width: 55%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.about, .updates, .comments {
  background: rgba(30, 0, 60, 0.5);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 20px;
  padding: 20px;
  width: 100%;
  backdrop-filter: blur(10px);
}

.update-box {
  max-height: 150px;
  overflow-y: scroll;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 10px;
  scrollbar-width: thin;
  scrollbar-color: #dbaaff transparent;
}
.update-box::-webkit-scrollbar {
  width: 6px;
}
.update-box::-webkit-scrollbar-thumb {
  background: #dbaaff;
  border-radius: 5px;
}

/* comment box */
.comments input, .comments textarea {
  width: 90%;
  border: none;
  border-radius: 10px;
  padding: 10px;
  margin-top: 5px;
  font-family: 'Courier Prime';
  background: rgba(255,255,255,0.2);
  color: #fff;
}
.comments button {
  margin-top: 10px;
  padding: 8px 16px;
  border-radius: 20px;
  border: none;
  background: #fff0a5;
  color: #6a00a5;
  cursor: pointer;
  transition: 0.3s;
}
.comments button:hover {
  background: #ffea00;
  box-shadow: 0 0 20px #fff87a;
}

/* sparkle button + game */
#sparkleBtn {
  background: linear-gradient(135deg, #fff7d1, #ffe5ff);
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 25px;
  color: #5a00a0;
  font-family: 'Great Vibes', cursive;
  font-size: 1.5em;
  padding: 15px;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 0 25px #fff6a5;
}
#sparkleBtn:hover {
  background: #fff5a3;
  color: #5a00a0;
  box-shadow: 0 0 40px #ffff99;
}

.game-container {
  margin-top: 20px;
  text-align: center;
  background: rgba(255,255,255,0.1);
  border-radius: 15px;
  padding: 10px;
  backdrop-filter: blur(8px);
}

canvas {
  background: rgba(255,255,255,0.2);
  border-radius: 10px;
}

footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
  opacity: 0.8;
}





