
/* Hide 3D cat model when game mode or play mode is active */
.game-mode #cat3d-container,
.play-mode #cat3d-container {
  display: none !important;
}


.cat-mode .header,
.cat-mode #leaderboard-container,
.cat-mode #chat-container,
.cat-mode footer,
.cat-mode .contract-address,
.cat-mode .skin-button,
.cat-mode .menu-select,
.cat-mode .music-player,
.cat-mode #map-container,
.cat-mode #cat3d-container,
.cat-mode .mode-toggles > div:nth-child(2),
.cat-mode .mode-toggles > div:nth-child(3),
.cat-mode .mode-toggles > div:nth-child(4) {
  display: none !important;
}

.cat-mode .mode-toggle {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  display: block !important;
  pointer-events: auto;
  touch-action: manipulation;
}

.cat-mode .toggle-label,
.cat-mode .toggle-slider {
  pointer-events: auto;
}

.cat-mode .image-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cat-mode {
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-attachment: fixed !important;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.cat-mode .skin-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.cat-mode {
  cursor: pointer;
  user-select: none !important;
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  touch-action: none;
  -webkit-touch-callout: none;
}

.cat-mode * {
  user-select: none !important;
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
}

.cat-mode img {
  pointer-events: none !important;
  user-drag: none !important;
  -webkit-user-drag: none !important;
}

/* CAT MODE MODAL *//* CAT MODE MODAL *//* CAT MODE MODAL *//* CAT MODE MODAL */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  backdrop-filter: blur(5px);
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #00b140;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgb(0, 0, 0, 0.5);
   text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.9);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-text {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.modal-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.modal-button {
  padding: 8px 20px;
  border: 1px solid rgb(0, 0, 0, 0.5);
  border-radius: 10px;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.modal-button.yes {
  background: rgba(255, 255, 255, 0.1);
   text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.9);
  color: white;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-button.no {
  background: rgba(255, 255, 255, 0.1);
   text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.9);
  color: white;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-button:hover {
  background: rgb(0, 0, 0, 0.3);
  border-color: #00ff88;
}