#verification-ui-container {
  display: flex; justify-content: center; margin-top: 40px;
}
.verification-card {
  background: linear-gradient(135deg, #111, #444);
  padding: 30px;
  border-radius: 20px;
  color: white;
  font-family: 'Segoe UI';
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  width: 100%;
  max-width: 500px;
  text-align: center;
}
.verification-card input {
  padding: 10px; margin-bottom: 10px; width: 80%;
  border-radius: 10px; border: none; font-size: 16px;
}
.verification-card button {
  padding: 10px 20px;
  background: gold;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
}
.vip-card {
  margin-top: 20px;
  background: white;
  color: black;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}


.vip-card .vip-top-bar {
  background: linear-gradient(to right, #ffd700, #ffcc00);
  height: 40px;
  width: 100%;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
  color: #000;
  box-shadow: inset 0 -1px 2px rgba(0,0,0,0.1);
  margin: -25px -25px 15px -25px;
}


/* Glassmorphism Effect for Result Card */
.mv-result-card {
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}


/* Enhance buttons, loader, and card */

/* زر دائري */
.mv-btn {
  border-radius: 40px;
  padding: 12px 28px;
  background: linear-gradient(to right, #ffcc00, #ffdd55);
  color: #000;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 14px rgba(255, 215, 0, 0.5);
}
.mv-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.7);
}

/* اللودر */
.mv-loader {
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-top: 4px solid #FFD700;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  animation: spin 1s linear infinite;
  margin: 20px auto;
  display: none;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* تحسين الظل حول البطاقة */
.mv-result-card {
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.35) !important;
}
