/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */


body {
  color: black;
  font-family: "Amarante", serif;
  cursor: url("https://file.garden/aIFVREzy8maKDZSl/wii-pointer-ccw.cur"), auto;
  background-image: url('/images/desert.PNG');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

h1 {
  color: white;
  font-size: 4rem;
  margin-top: -3rem;
  margin-bottom: 0.5rem;
}

#warning-box {
  max-width: 350px;
  width: 100%;
  border-radius: 20px;
  margin: 0 auto;
  background: white;
  border: 7px solid white;
  overflow: hidden;
  box-shadow: 6px 6px 0px rgba(0,0,0,0.15);
  color: #3b1200;
  animation: float 2.5s ease-in-out infinite alternate;
}

#warning-box h1 {
  font-size: 1.6rem;
  margin: 0;
  padding: 1rem;
  background: white;
  color: #3b1200;
  letter-spacing: 1px;
  text-align: center;
}

#warning-box p {
  background: #c1532a;
  color: white;
  margin: 0;
  padding: 0.8rem 1.5rem 0.2rem;
  text-align: center;
}

#warning-box ul {
  background: #c1532a;
  margin: 0;
  padding: 0.2rem 1.5rem 1.2rem 2.5rem;
  color: white;
  line-height: 2.2;
  font-size: 1.1rem;
  list-style: none;
}

#warning-box ul li::before {
  content: "⊹ ";
}

.btn-wrapper {
  background: #c1532a;
  padding: 1rem;
  text-align: center;
}

#enter-btn {
  display: inline-block;
  padding: 10px 36px;
  font-size: 1.2rem;
  font-weight: bold;
  border: 3px solid white;
  border-radius: 15px;
  cursor: pointer;
  letter-spacing: 2px;
  background: white;
  color: #3b1200;
  transition: opacity 0.2s;
  font-family: "Amarante", serif;
}

#enter-btn:hover {
  opacity: 0.8;
  cursor: url("https://file.garden/aIFVREzy8maKDZSl/wii-pointer-red-ccw.cur"), pointer;
}

a:hover, button:hover {
  cursor: url("https://file.garden/aIFVREzy8maKDZSl/wii-pointer-red-ccw.cur"), pointer;
}

p {
  cursor: url("https://file.garden/aIFVREzy8maKDZSl/Text%20Select.cur"), text;
  font-family: "Amarante", serif;
}


.nota-music {
  position: fixed;
  bottom: 30px;
  left: 20px;
  font-family: "Amarante", serif;
  font-size: 0.9rem;
  line-height: 1.8;
  text-align: left;
  z-index: 999;
  color: white;
}

.estrella {
  position: absolute;
  pointer-events: none;
  font-size: 1rem;
  color: white;
  z-index: 9999;
  animation: desvanecer 0.4s ease-out forwards;
  transform: translate(-50%, -50%);
}

@keyframes desvanecer {
  0%   { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 0; transform: translate(-50%, -120%) scale(0.4); }
}

@keyframes float {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-6px);
  }
}


#lang-wrapper {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  text-align: center;
}

#lang-btn {
  background: rgba(0, 0, 0, 0.4);
  color: white;
  border: 2px solid white;
  border-radius: 20px;
  padding: 6px 16px;
  font-family: "Amarante", serif;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
}

#lang-menu {
  display: none;
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid white;
  border-radius: 10px;
  padding: 6px;
  margin-bottom: 6px;
  position: absolute;
  bottom: 100%;
  right: 0;
  min-width: 120px;
}

#lang-menu button {
  display: block;
  width: 100%;
  background: transparent;
  color: white;
  border: none;
  padding: 6px 12px;
  font-family: "Amarante", serif;
  font-size: 0.9rem;
  cursor: pointer;
  border-radius: 6px;
  text-align: left;
}

#lang-menu button:hover {
  background: rgba(255, 255, 255, 0.2);
}
