/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  background-color: #000000;
  font-family: Arial, sans-serif;
  color: white;
  overflow: hidden; /* disables both horizontal and vertical scrolling */
}

/* Splash screen */
.splash-screen {
  height: 100vh;
  background-color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
}

#enter-btn {
  background: none;
  border: none;
  color: white;
  font-size: 2.5rem;
  font-weight: bold;
  cursor: pointer;
  text-shadow: 0 0 4px #fff;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

#enter-btn:hover {
  color: #dfdfdf;
  text-shadow: 0 0 8px #dfdfdf;
}

.hidden {
  display: none;
}

/* Main content */
.main {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-image: url("https://media.discordapp.net/attachments/904739641553485844/1393685364350386186/woods.jpg?ex=68741224&is=6872c0a4&hm=0ae7970c91c98df3ca37a0bf6a4371768510f1da56ebbcae7c2366cfe9c4c133&=&format=webp&width=1551&height=872");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* Rain effect */
#rain-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Profile box */
.profile-box {
  position: relative;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 1rem 4rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.1);
  max-width: 700px;
  width: 90%;
}

/* Profile picture */
.profile-pic {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
}

/* Glowing name/welcome text */
.profile-box h1,
.profile-box p {
  text-shadow: 0 0 6px #ffffff;
  margin-bottom: 0.5rem;
}

/* Button row */
.button-row {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1.2rem;
}

/* Icons */
.icon-button {
  width: 40px;
  height: 40px;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.icon-button:hover {
  transform: scale(1.1);
}

/* Litecoin tooltip */
.litecoin-wrapper {
  position: relative;
  display: inline-block;
}

.litecoin-wrapper .tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 4px;
  background: transparent;
  color: white;
  font-size: 12px;
  text-shadow: 0 0 6px white;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.litecoin-wrapper:hover .tooltip {
  opacity: 1;
}
