.exit-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  font-family: 'Segoe UI', sans-serif;
}

.exit-modal-box {
  background: #1e1e1e;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  max-width: 400px;
  box-shadow: 0 0 20px rgba(0,0,0,0.6);
  color: white;
  border: 1px solid rgba(255,255,255,0.1);
}

.exit-modal-box h2 {
  margin-top: 0;
  font-size: 1.5rem;
}

.exit-modal-box p {
  font-size: 0.95rem;
  opacity: 0.8;
  margin: 15px 0 25px;
}

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

.exit-modal-buttons button {
  padding: 10px 20px;
  font-size: 0.9rem;
  background: #333;
  color: white;
  border: 1px solid #555;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.exit-modal-buttons button:hover {
  background: #444;
  border-color: #777;
}