.glass-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  backdrop-filter: blur(8px);
}

.gradient-btn {
  background: linear-gradient(135deg, #3B82F6, #8B5CF6);
  transition: opacity 0.2s, transform 0.2s;
}

.gradient-btn:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

.otp-glow {
  color: #3B82F6;
  text-shadow: 0 0 20px rgba(59,130,246,0.8),
               0 0 40px rgba(59,130,246,0.4);
}

.pulsing-dot::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #10B981;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

body {
  background: #080C14;
}

.nexotp-input,
.nexotp-select,
.nexotp-textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: #E2E8F0;
  border-radius: 14px;
  padding: 0.85rem 1rem;
  outline: none;
}

.nexotp-input:focus,
.nexotp-select:focus,
.nexotp-textarea:focus {
  border-color: rgba(59,130,246,0.6);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.16);
}

.nexotp-table {
  width: 100%;
  border-collapse: collapse;
}

.nexotp-table th,
.nexotp-table td {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 0.9rem 1rem;
  text-align: left;
}

.nexotp-table th {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94A3B8;
}

body.nexotp-sidebar-open {
  overflow: hidden;
}

.nexotp-sidebar-backdrop {
  background: rgba(2, 6, 23, 0.72);
  backdrop-filter: blur(4px);
}

@media (min-width: 1024px) {
  body.nexotp-sidebar-open {
    overflow: auto;
  }
}

.nexotp-support-scroll::-webkit-scrollbar {
  width: 8px;
}

.nexotp-support-scroll::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.35);
  border-radius: 999px;
}
