@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;700&display=swap');


body {
  font-family: 'Fredoka', sans-serif;
  background: linear-gradient(#e4f8cf, #e0f5d2);
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.maincontainer {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 15%;
  padding: 0 40px;
}


.titre {
  text-align: center;
  font-family: 'Fredoka', sans-serif;
  font-size: 60px;
  margin: 0;
}

.minititre {
  text-align: center;
  font-family: 'Fredoka', sans-serif;
  font-size: 30px;
  margin: 0;
}

button {
  margin-top: 30px;
  margin-bottom: 6px;
  padding: 12px 24px;
  cursor: pointer;
  background-color: #FFD700;
  font-family: 'Fredoka', sans-serif;
  color: #333;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  font-size: 18px;
}

button:hover {
  background-color: #FFE87C;
  transform: translateY(-3px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

button:active {
  transform: translateY(1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

button.disabled {
  background-color: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  color: #666;
}

.shopContainer button {
  animation: pulse 2s infinite;
}

#artefactBtn {
  background-color: #FF8C00;
}

#artefactBtn:hover {
  background-color: #FFB347;
}


.hero_image {
  align-items: center;
  margin: 10px auto;
  height: auto;
  width: 240px;
  max-width: 1200px;
  object-fit: contain;
  cursor: pointer;
  filter: drop-shadow(0 0 40px rgba(255, 255, 0, 0.8));
}

.shop_titre {
  font-family: 'Fredoka', sans-serif;
  font-size: 50px;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.titrebanamoney {
  font-family: 'Fredoka', sans-serif;
  font-size: 30px;
  text-align: right;
  margin: 0 30px;
  font-weight: bold;
}

.shopContainer {
  flex: 0 1 350px;
  padding: 25px;
  border-radius: 10px;
  background-color: rgba(255, 248, 220, 0.7);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  text-align: center;
  max-height: 70vh;
  overflow-y: auto;
}

.shopContainer::-webkit-scrollbar {
  width: 8px;
}

.shopContainer::-webkit-scrollbar-thumb {
  background-color: #FFD700;
  border-radius: 10px;
}

.clickerContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 1 450px;
  padding: 20px;
  border-radius: 10px;
  background-color: rgba(255, 248, 220, 0.6);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.13);
}

.Artefact {
  display: block;
  font-size: x-large;
  margin-bottom: 3px;
  color: #53341C;
  transition: all 0.3s ease;
  animation: float 3s ease-in-out infinite;
}

.Artefact:hover {
  background-color: #FFE87C;
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

.Artefact:active {
  transform: scale(0.95);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: white;
  padding: 20px;
  border-radius: 15px;
  max-width: 400px;
  text-align: center;
}

.close {
  float: right;
  cursor: pointer;
  font-size: 24px;
}

#falling-bananas-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.falling-banana {
  position: absolute;
  width: 80px;
  height: auto;
  pointer-events: auto;
  animation: fall 6s linear forwards;
  cursor: pointer;
  z-index: -1;
}

@keyframes fall {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  100% {
    transform: translateY(100vh) rotate(360deg);
  }
}


#pop-effect {
  position: absolute;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 0, 0.3);
  pointer-events: none;
  z-index: 10;
}

#achievement-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #333;
  color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  animation: slideIn 0.5s ease;
  display: none;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(0);
  }
}

#achievement-popupn2 {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #333;
  color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  animation: slideIn 0.5s ease;
  display: none;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(0);
  }
}

#achievement-popupn3 {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #333;
  color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  animation: slideIn 0.5s ease;
  display: none;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(0);
  }
}


#achievement-popupn4 {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #333;
  color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  animation: slideIn 0.5s ease;
  display: none;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(0);
  }
}

#achievement-popupn5 {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #333;
  color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  animation: slideIn 0.5s ease;
  display: none;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(0);
  }
}

.image-achivement {
  height: 264px;
  width: 259px;
  object-fit: cover;

}

.titre_arthefact {
  font-family: 'Fredoka', sans-serif;
  font-size: 30px;
  font-weight: bold;
}

.hearder {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
}

.hearder2 {
  display: grid;
  align-items: center;
  padding: 20px 40px;
  margin-right: auto;
}

#save-btn {
  background-color: #FF8C00;
  font-weight: bold;
}

#load-btn {
  background-color: #FF8C00;
  font-weight: bold;
}

.Classement {
  margin: 0 50px;
  padding: 12px 24px;
  cursor: pointer;
  background-color: #FFD700;
  font-family: 'Fredoka', sans-serif;
  color: #333;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  font-size: 24px;
  text-decoration: none;
}


#upgradeMPCButton {
  background: linear-gradient(to right, #d4af37, #b8860b);
  border: 3px solid #8b7319;
  color: white;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  padding: 10px 15px 10px 45px;
  margin: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

#upgradeMPCButton::before {
  content: "🍀";
  font-size: 30px;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  z-index: 1;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

#upgradeMPCButton:hover {
  box-shadow: 0 0 15px rgba(175, 175, 76, 0.7);
  transform: scale(1.05) rotate(-1deg);
}

#upgradeMPCButton.disabled {
  background-color: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  color: #4b4b4b;
}


#upgradeMPSButton {
  background: linear-gradient(to right, #5C8A3E, #7CB342);
  border: 3px solid #8b7319;
  color: white;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  padding: 10px 15px 10px 45px;
  margin: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

#upgradeMPSButton::before {
  content: "⚙️";
  font-size: 30px;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  z-index: 1;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

#upgradeMPSButton:hover {
  box-shadow: 0 0 15px rgba(175, 175, 76, 0.7);
  transform: scale(1.05) rotate(-1deg);
}

#upgradeMPSButton.disabled {
  background-color: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  color: #4b4b4b;
}

#upgradeMPC2Button {
  background: linear-gradient(to right, #FFD3B6, #FF8E53);
  border: 3px solid #8b7319;
  color: white;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  padding: 10px 15px 10px 45px;
  margin: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

#upgradeMPC2Button::before {
  content: "🍦";
  font-size: 30px;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  z-index: 1;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

#upgradeMPC2Button:hover {
  box-shadow: 0 0 15px rgba(175, 175, 76, 0.7);
  transform: scale(1.05) rotate(-1deg);
}

@keyframes pulseAura {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 105, 180, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(255, 105, 180, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 105, 180, 0);
  }
}

#upgradeMPC2Button.glow {
  animation: pulseAura 1.5s infinite;
}

@keyframes pulseAura {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 105, 180, 0.848);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(255, 105, 180, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 105, 180, 0);
  }
}

#upgradeMPC2Button.glow {
  animation: pulseAura 1.5s infinite;
}

#upgradeMPC2Button.disabled {
  background-color: #ccc;
  cursor: not-allowed;
  transform: none;
  animation: none;
  box-shadow: none;
  color: #4b4b4b;
}

#upgradeMPC3Button {
  background: linear-gradient(to right, #FFD700, #FFA500);
  border: 3px solid #D4AF37;
  color: white;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  padding: 10px 15px 10px 47.5px;
  margin: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

#upgradeMPC3Button::before {
  content: "⭐";
  font-size: 30px;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  z-index: 1;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

#upgradeMPC3Button:hover {
  box-shadow: 0 0 15px rgba(175, 175, 76, 0.7);
  transform: scale(1.05) rotate(-1deg);
}

#upgradeMPC3Button.disabled {
  background-color: #ccc;
  cursor: not-allowed;
  transform: none;
  animation: none;
  box-shadow: none;
  color: #4b4b4b;
}

particle {
  transition: opacity 0.5s ease-out;
  position: fixed;
  left: 0;
  top: 0;
  border-radius: 50%;
  background-image: url('Image/banana-310449_1280.png');
  background-size: cover;
  pointer-events: none;
  opacity: 0;
}

particle.disbled {
  animation: none;
}

particle1 {
  transition: opacity 0.5s ease-out;
  position: fixed;
  left: 0;
  top: 0;
  border-radius: 50%;
  background-image: url('Image/bananedufuture.png');
  background-size: cover;
  pointer-events: none;
  opacity: 0;
}

particle1.disbled {
  animation: none;
}



#upgradeMPS1Button {
  background: linear-gradient(to right, #FFD700, #FF8C00);
  border: 3px solid #B8860B;
  color: white;
  border-radius: 15px;
  padding: 10px 15px 10px 50px;
  position: relative;
  overflow: hidden;
  padding: 10px 15px 10px 45px;
  margin: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

#upgradeMPS1Button::before {
  content: "🌟";
  font-size: 31px;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  z-index: 1;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

#upgradeMPS1Button:hover {
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
  background: linear-gradient(to right, #FFA500, #FFDAB9);
  transform: scale(1.05) rotate(-1deg);
}

#upgradeMPS1Button.disabled {
  background-color: #ccc;
  cursor: not-allowed;
  transform: none;
  animation: none;
  box-shadow: none;
  color: #4b4b4b;
}

@keyframes legendaryGlitter {
  0% {
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.9);
  }

  50% {
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.9);
  }

  100% {
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.9);
  }
}

#ugradeMPS1Button:hover::before {
  animation: legendaryGlitter 1.5s infinite alternate;
}



#upgradempcsCostn4Button {
  background: linear-gradient(to right, #00DBDE, #FC00FF);
  border: 3px solid #00C6FF;
  color: white;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  padding: 10px 15px 10px 47.5px;
  margin: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

#upgradempcsCostn4Button::before {
  content: "🚀";
  font-size: 30px;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  z-index: 1;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}


@keyframes futurPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 255, 255, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(0, 255, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 255, 255, 0);
  }
}

#upgradempcsCostn4Button.glow {
  animation: futurPulse 1.5s ease-out;
}

#upgradempcsCostn4Button:hover {
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.7);
  transform: scale(1.05) rotate(-1deg);
  background: linear-gradient(to right, #FC00FF, #00DBDE);
}

#upgradempcsCostn4Button:hover::before {
  text-shadow: 0 0 15px rgba(0, 255, 255, 0.9);
}

#upgradempcsCostn4Button.disabled {
  background-color: #ccc;
  cursor: not-allowed;
  transform: none;
  animation: none;
  box-shadow: none;
  color: #4b4b4b;
}

#upgradempcCostn4_5Button {
  background: linear-gradient(to right, #24243E, #3A2E5E);
  border: 3px solid #5E35B1;
  color: white;
  border-radius: 15px;
  padding: 10px 15px 10px 50px;
  position: relative;
  overflow: hidden;
  padding: 10px 15px 10px 45px;
  margin: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

#upgradempcCostn4_5Button::before {
  content: "🌠";
  font-size: 31px;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  z-index: 1;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#upgradempcCostn4_5Button:hover {
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
  background: linear-gradient(to right, #7C4DFF, #00F2FE);
  transform: scale(1.05) rotate(-1deg);
}


@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes pulseAura1 {
  0% {
    box-shadow: 0 0 0 0 rgba(113, 105, 255, 0.848);
  }

  70% {
    box-shadow: 0 0 0 45px rgba(255, 105, 180, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 105, 180, 0);
  }
}

#upgradempcCostn4_5Button.glow1 {
  animation: pulseAura1 1.5s infinite;
}

@keyframes pulseAura1 {
  0% {
    box-shadow: 0 0 0 0 rgba(113, 105, 255, 0.848);
  }

  70% {
    box-shadow: 0 0 0 45px rgba(255, 105, 180, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 105, 180, 0);
  }
}

#upgradempcCostn4_5Button.glow1 {
  animation: pulseAura1 1.5s infinite;
}

#upgradempcCostn4_5Button.disabled {
  background-color: #ccc;
  cursor: not-allowed;
  transform: none;
  animation: none;
  box-shadow: none;
  color: #4b4b4b;
}

#saleButton {
  background: linear-gradient(to right, #1E90FF, #4169E1);
  border: 3px solid #FFD700;
  color: white;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  padding: 10px 15px 10px 47.5px;
  margin: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

#saleButton::before {
  content: "⚡";
  font-size: 30px;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.7);
  z-index: 2;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

#saleButton:hover::after {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0));
  border-radius: 50%;
  z-index: -1;
  animation: divineGlow 1.5s infinite alternate;
}


@keyframes divineGlow {
  0% {
    opacity: 0.7;
    transform: scale(0.9);
  }

  100% {
    opacity: 1;
    transform: scale(1.2);
  }
}


#saleButton:hover {
  transform: scale(1.05) rotate(-1deg);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.9);
  background: linear-gradient(to right, #FFE135, #FFD700);

}

#saleButton.disabled {
  background-color: #ccc;
  cursor: not-allowed;
  transform: none;
  animation: none;
  box-shadow: none;
  color: #4b4b4b;
}

#upgradehunterButton {
  background: linear-gradient(to right, #FF0000, #FF0000);
  border: 3px solid #FFD700;
  color: white;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  padding: 10px 17px 12px 50.5px;
  margin: 8px;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  text-transform: uppercase;
  overflow: visible;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

#upgradehunterButton::before {
  content: "🗿";
  font-size: 30px;
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
  z-index: 1;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#upgradehunterButton:hover::after {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0));
  border-radius: 50%;
  z-index: -1;
  animation: gigachadPowerGlow 1.5s infinite alternate;
}

@keyframes gigachadPowerGlow {
  0% {
    opacity: 0.7;
    transform: scale(0.9);
  }

  100% {
    opacity: 1;
    transform: scale(1.4);
  }
}

#upgradehunterButton:hover {
  transform: scale(1.08) rotate(-1deg);
  box-shadow: 0 0 50px rgba(255, 215, 0, 0.9);
  background: linear-gradient(to right, #FF4500, #FF0000);
}

#upgradehunterButton.disabled {
  background-color: #ccc;
  cursor: not-allowed;
  transform: none;
  animation: none;
  box-shadow: none;
  color: #4b4b4b;
}

#artefactBtn {
  background: linear-gradient(to right, #D4AF37, #FFD700);
  border: 3px solid #8B4513;
  color: white;
  border-radius: 10px;
  position: relative;
  padding: 12px 20px 12px 60px;
  margin: 10px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

#artefactBtn::before {
  content: "🪏";
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  z-index: 1;
  width: 45px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#artefactBtn:hover {
  background: linear-gradient(to right, #FFE135, #D4AF37);
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.7);
}

#artefactBtn:active {
  transform: scale(0.98);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

#artefactBtn.disabled {
  background-color: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  color: #4b4b4b;
}



#artefactBtn2 {
  background: linear-gradient(to right, #535353, #7a7a7a);
  border: 3px solid #d3d3d3;
  color: white;
  border-radius: 10px;
  position: relative;
  padding: 12px 20px 12px 60px;
  margin: 10px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

#artefactBtn2::before {
  content: "🔨";
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  z-index: 1;
  width: 45px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#artefactBtn2:hover {
  background: linear-gradient(to right, #7a7a7a, #a0a0a0);
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(169, 169, 169, 0.7);
  color: #FFD700;
}

#artefactBtn2:active {
  transform: scale(0.98);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  background: linear-gradient(to right, #a0a0a0, #535353);
}

#artefactBtn2.disabled {
  background-color: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  color: #4b4b4b;
}

#artefactBtn3 {
  background: linear-gradient(to right, #2E8B57, #3CB371);
  border: 3px solid #FFD700;
  color: white;
  border-radius: 10px;
  position: relative;
  padding: 12px 20px 12px 60px;
  margin: 10px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

#artefactBtn3::before {
  content: "🌴";
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  z-index: 1;
  width: 45px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#artefactBtn3:hover {
  background: linear-gradient(to right, #3CB371, #20B2AA);
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(60, 179, 113, 0.6);
}

#artefactBtn3:active {
  transform: scale(0.98);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  background: linear-gradient(to right, #20B2AA, #2E8B57);
}

#artefactBtn3.disabled {
  background-color: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  color: #d4d2d2;
}

#artefactBtn4 {
  background: linear-gradient(to right, #ffd900, #a45b16);
  border: 3px solid #8B4513;
  color: white;
  border-radius: 10px;
  position: relative;
  padding: 12px 20px 12px 60px;
  margin: 10px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);

}

#artefactBtn4::before {
  content: "👑";
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.9);
  z-index: 1;
  width: 45px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#artefactBtn4:hover {
  background: linear-gradient(to right, #FFE135, #907007);
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.7);
}

#artefactBtn4:active {
  transform: scale(0.98);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  background: linear-gradient(to right, #D4AF37, #B8860B);
}

#artefactBtn4.disabled {
  background-color: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  color: #4b4b4b;
}

#artefactBtn5 {
  background: linear-gradient(to right, #FFD700, #FF8C00, #FFD700);
  border: 3px solid #D4AF37;
  color: white;
  border-radius: 10px;
  position: relative;
  padding: 12px 20px 12px 60px;
  margin: 10px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(255, 215, 0, 0.5);
  overflow: visible;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

#artefactBtn5::before {
  content: "🔱";
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.9);
  z-index: 1;
  width: 45px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#artefactBtn5:hover {
  background: linear-gradient(to right, #FFE135, #FFD700, #FF8C00);
  transform: scale(1.07);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.7);
}

#artefactBtn5:active {
  transform: scale(0.98);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
  background: linear-gradient(to right, #B8860B, #FFD700);
  animation: sceptreGlow 2s infinite;
}

#artefactBtn5.disabled {
  background-color: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  color: #4b4b4b;
}

@keyframes sceptreGlow {
  0% {
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  }

  50% {
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.9);
  }

  100% {
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  }
}

#artefactBtn5.active {
  animation: sceptreGlow 2s infinite;
}

#click-effect {
  position: fixed;
  pointer-events: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
}

.click-text {
  position: absolute;
  color: white;
  font-weight: bold;
  font-size: 30px;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
  animation: floatUp 1s ease-out;
}

@keyframes floatUp {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(-50px);
    opacity: 0;
  }
}