/* clicker.css - v1.1 */

#clicker-game {
  position: fixed;
  top: -300px;
  left: 50%;
  transform: translateX(calc(-50% + 470px));
  width: 300px;
  z-index: 100000;
  text-align: center;
  transition: top 1s ease-out;
  pointer-events: none;
  margin-top: -50px;
}

.clicker-score {
  background: black;
  color: #00ffff;
  border: 3px solid #00ffff;
  border-radius: 10px;
  padding: 8px 20px;
  font-family: "Jersey 15", sans-serif;
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
  text-shadow: 0 0 10px #00ffff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.coin-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  border: 2px solid #ffb000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #b8860b;
  font-size: 18px;
  text-shadow: none;
  box-shadow: 0 2px 5px rgba(255, 215, 0, 0.3);
}

.coin-icon::before {
  content: "$";
}

.clicker-button {
  background: linear-gradient(45deg, #ff007c, #fc007e);
  color: white;
  border: none;
  border-radius: 15px;
  padding: 20px 40px;
  font-family: "Jersey 15", sans-serif;
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 15px;
  display: block;
  width: 100%;
  box-shadow: 0 5px 15px rgba(255, 0, 124, 0.4);
  transition: all 0.1s ease;
  text-transform: uppercase;
}

.clicker-button:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 0, 124, 0.6);
}

.upgrade-button {
  background: linear-gradient(45deg, #009aff, #0080cc);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 10px 15px;
  font-family: "Jersey 15", sans-serif;
  font-size: 14px;
  cursor: pointer;
  display: inline-block;
  width: 31%;
  box-shadow: 0 3px 10px rgba(0, 154, 255, 0.4);
  transition: all 0.1s ease;
  text-transform: uppercase;
  margin-bottom: 10px;
  margin-right: 1.5%;
  vertical-align: top;
}

.upgrade-button:hover:not(:disabled) {
  transform: scale(1.02);
  background: linear-gradient(45deg, #00aaff, #0090dd);
}

.upgrade-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.auto-clicker-button {
  background: linear-gradient(45deg, #9c27b0, #673ab7);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 10px 15px;
  font-family: "Jersey 15", sans-serif;
  font-size: 14px;
  cursor: pointer;
  display: inline-block;
  width: 31%;
  box-shadow: 0 3px 10px rgba(156, 39, 176, 0.4);
  transition: all 0.1s ease;
  text-transform: uppercase;
  margin-bottom: 10px;
  margin-right: 1.5%;
  vertical-align: top;
}

.auto-clicker-button:hover:not(:disabled) {
  transform: scale(1.02);
  background: linear-gradient(45deg, #ad42c4, #7e57c2);
}

.auto-clicker-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.wizard-button {
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 10px 15px;
  font-family: "Jersey 15", sans-serif;
  font-size: 14px;
  cursor: pointer;
  display: inline-block;
  width: 31%;
  box-shadow: 0 3px 10px rgba(255, 107, 53, 0.4);
  transition: all 0.1s ease;
  text-transform: uppercase;
  margin-bottom: 10px;
  vertical-align: top;
}

.wizard-button:hover:not(:disabled) {
  transform: scale(1.02);
  background: linear-gradient(45deg, #ff7f50, #ffa500);
}

.wizard-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.auto-clicker-button:hover:not(:disabled) {
  transform: scale(1.02);
  background: linear-gradient(45deg, #ad42c4, #7e57c2);
}

.auto-clicker-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.auto-clicker-button.unlocked {
  /* No special styling needed since button is always visible */
}

.upgrade-container {
  display: flex;
  gap: 1.5%;
  width: 100%;
}

.upgrade-icon {
  font-size: 32px;
  margin-bottom: 5px;
  display: block;
}

.upgrade-cost {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 16px;
}

.upgrade-cost .coin-icon {
  width: 20px;
  height: 20px;
  font-size: 12px;
}

.auto-status {
  font-size: 12px;
  color: #ccc;
  margin-top: 5px;
}