.cheatv2x-container { all: initial; }

.cheatv2x-container * {
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

.cheatv2x-container .cheat-container {
  display: flex;
  justify-content: center;
  margin: 20px 0;
  background: url("https://asst.venom123.cloud/vnm-bg-btn.jpeg") center center / cover no-repeat;
  padding: 20px;
  border-radius: 12px;
}

.cheatv2x-container .image-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.cheatv2x-container .image-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 10px;
}

.cheatv2x-container .cheat-image {
  width: 100%;
  max-width: 120px;
  border-radius: 8px;
}

.cheatv2x-container .cheat-text {
  text-align: center;
  color: #ffffff;
}

.cheatv2x-container .cheat-text p {
  margin: 0;
  line-height: 1.3;
}

.cheatv2x-container .text-red   { color: #ff3b3b; }
.cheatv2x-container .text-green { color: #00ff88; }
.cheatv2x-container .text-blue  { color: #00eaff; }
.cheatv2x-container .text-yellow{ color: #ffd900; }
.cheatv2x-container .text-purple{ color: #c77dff; }

.cheatv2x-container .switch {
  position: relative;
  width: 50px;
  height: 18px;
}

.cheatv2x-container .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cheatv2x-container .slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 9px;
}

.cheatv2x-container .slider:before {
  content: "";
  position: absolute;
  height: 12px;
  width: 12px;
  left: 3px;
  bottom: 3px;
  background: white;
  border-radius: 50%;
  transition: .4s;
}

.cheatv2x-container input:checked + .slider {
  background-color: #00ff00;
}

.cheatv2x-container input:checked + .slider:before {
  transform: translateX(28px);
}

.cheatv2x-popup-overlay {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999999;
  background: rgba(0, 0, 0, 0.85);
}

.cheatv2x-popup-box {
  background: url("https://asst.venom123.cloud/HUD-REZ.gif") center center / cover no-repeat;
  padding: 30px 40px;
  border-radius: 18px;
  text-align: center;
  max-width: 340px;
  width: 90%;
  animation: cheatv2xPopup .35s ease;
  overflow: hidden;
}

.cheatv2x-popup-box h3 {
  margin: 0;
  font-size: 18px;
  color: #ff0000;
  font-weight: bold;
  line-height: 1.5;
}

.cheatv2x-popup-box p {
  margin: 0;
  font-size: 15px;
  color: #00eeff;
  white-space: pre-line;
  line-height: 0.8;
  word-break: break-word;
}

@keyframes cheatv2xPopup {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}