body {
  background-color: #101520;
  color: #e3e6f0;
  font-family: monospace;
  text-align: center;
  margin: 0;
  padding: 0;
}
</script>body {
    background-color: #101520;
    color: #e3e6f0;
    font-family: monospace;
    text-align: center;
    margin: 0;
    padding: 0;
}

.site-header img {
    width: 100%;
    max-width: 600px;
    display: block;
    margin: 0 auto;
    padding-top: 20px;
}

.avatar {
    width: 120px;
    height: auto;
    margin-top: 20px;
    border-radius: 10px;
}

.avatar-section h1 {
    margin-top: 10px;
    font-size: 1.6rem;
}

.game-section {
    margin-top: 40px;
}

/* play button hover glow */
.play-button {
    display: inline-block;
    padding: 12px 24px;
    background: #1e90ff;
    color: white;
    border-radius: 10px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.play-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 18px rgba(0, 200, 255, 0.8);
}

}

footer {
    margin-top: 60px;
    padding-bottom: 30px;
    font-size: 0.8rem;
    opacity: 0.7;
}/* loading screen */

#loader {
    position: fixed;
    inset: 0;
    background: #05060b;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: opacity 0.6s ease;
}

#loader.fade-out {
    opacity: 0;
}

.loader-inner {
    text-align: center;
}

#loader img {
    width: 120px;
    border-radius: 18px;
    box-shadow: 0 0 24px rgba(0, 255, 255, 0.7);
    animation: loaderFloat 2s ease-in-out infinite;
}

#loader p {
    margin-top: 12px;
    font-size: 0.9rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #9aa4bc;
}

/* hide page until loader finishes */

#page-content {
    opacity: 0;
    transition: opacity 0.4s ease;
}

#page-content.show {
    opacity: 1;
/* little float animation for the cube */
@keyframes loaderFloat {
    0% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0); }
}

/* play button hover glow */
.play-button {
    display: inline-block;
    padding: 12px 24px;
    background: #1e90ff;
    color: white;
    border-radius: 10px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.play-button:hover {
    transform: translateY(-3px);.kofi-box a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FF5F5F;
  color: white;
  padding: 14px 22px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: 0.25s ease;
  box-shadow: 0 4px 12px rgba(255, 95, 95, 0.35);
}

.kofi-box a:hover {
  background: #ff3b3b;
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(255, 60, 60, 0.45);
}

.kofi-icon {
  height: 22px;
  width: auto;
}
    box-shadow: 0 0 18px rgba(0, 200, 255, 0.8);
}
    }
    50% {
        transform: translateY(-8px);
    }
    100% {
        transform: translateY(0);
    }
}