/* ==========================================================
   GLOBAL STYLE – GENZ PRO UI
========================================================== */

body {
  font-family: 'Inter', Arial, sans-serif;
  background: linear-gradient(135deg, #eef3ff, #e8f0ff);
  margin: 0;
  padding: 25px;
  color: #222;
}

.container {
  width: 95%;
  max-width: 1300px;
  margin: auto;
}

.title {
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  color: #006bff;
  margin-bottom: 25px;
  text-shadow: 0 0 10px rgba(0, 107, 255, 0.2);
}

/* ===================== ADS BUTTON ===================== */

.ads-box {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 25px;
}

.ads-item {
  padding: 10px 22px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  color: white;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  transition: 0.25s ease;
  display: inline-block;
}

.ads-blue {
  background: linear-gradient(135deg, #007bff, #4ca6ff);
}

.ads-green {
  background: linear-gradient(135deg, #00c853, #00e676);
}

.ads-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* ===================== MENU TAB ===================== */

.menu {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.tabBtn {
  flex: 1;
  padding: 15px;
  border-radius: 14px;
  border: none;
  background: #dbe5ff;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  transition: 0.25s;
}

.tabBtn.active {
  background: #006bff;
  color: white;
  box-shadow: 0 4px 14px rgba(0, 107, 255, 0.5);
}

/* ===================== TEXTAREA ===================== */

textarea {
  width: 100%;
  height: 160px;
  padding: 12px;
  border: 1px solid #cdd6ff;
  border-radius: 14px;
  font-size: 15px;
  outline: none;
  background: white;
}

/* ===================== BUTTON ===================== */

.btn {
  padding: 10px 20px;
  border-radius: 12px;
  border: none;
  background: #e4ebff;
  cursor: pointer;
  font-size: 14px;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-blue {
  background: linear-gradient(135deg, #007aff, #005be0);
  color: white;
  box-shadow: 0 4px 12px rgba(0, 93, 224, 0.4);
}

.btn-green {
  background: #2ecc71;
  color: white;
}

.btn-red {
  background: #e74c3c;
  color: white;
}

.btn-yellow {
  background: #f1c40f;
  color: black;
}

.btn-dark {
  background: #2d3436;
  color: white;
}

/* ===================== PROGRESS ===================== */

.progress-bar-bg {
  height: 12px;
  background: #d0ddff;
  border-radius: 8px;
  margin-top: 10px;
}

.progress-bar {
  height: 12px;
  width: 0%;
  background: linear-gradient(135deg, #00c46b, #00e6b8);
  border-radius: 8px;
  transition: 0.25s;
}

/* ===================== FILTER ===================== */

.filters {
  margin: 12px 0;
  display: flex;
  gap: 8px;
}

.filter {
  padding: 6px 14px;
  border-radius: 10px;
  cursor: pointer;
  border: 1px solid #aac3ff;
  background: #e8efff;
}

.filter.active {
  background: #006bff !important;
  color: white !important;
  box-shadow: 0 3px 10px rgba(0, 107, 255, 0.35);
}

/* ===================== TABLE ===================== */

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 18px;
  background: white;
  border-radius: 14px;
  overflow: hidden;
}

th,
td {
  padding: 10px;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.status-live {
  background: #2ecc71;
  color: white;
  font-weight: bold;
}

.status-die {
  background: #e74c3c;
  color: white;
  font-weight: bold;
}

.status-unknown {
  background: #f1c40f;
  color: black;
  font-weight: bold;
}

/* ===================== POPUP OTP ===================== */

.otp-popup {
  position: fixed;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  padding: 18px 22px;
  border-radius: 18px;
  min-width: 300px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: 0.35s;
  z-index: 99999;
}

.otp-popup.show {
  top: 25px;
  opacity: 1;
}

#otpPopupValue {
  font-size: 38px;
  font-weight: 900;
  color: #007bff;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.popup-copy-btn {
  background: linear-gradient(135deg, #006bff, #004ed9);
  color: white;
  padding: 8px 16px;
  border-radius: 12px;
  cursor: pointer;
  border: none;
}

/* ===================== TOAST ===================== */

.toast {
  position: fixed;
  right: 40px;
  bottom: 40px;
  background: rgba(0, 0, 0, 0.85);
  color: white;
  padding: 12px 20px;
  border-radius: 12px;
  opacity: 0;
  transition: 0.3s;
}

.toast.show {
  opacity: 1;
  transform: translateY(-10px);
}