.disclaimer-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  backdrop-filter: blur(3px);
  font-family: "Segoe UI", Roboto, sans-serif;
}

.disclaimer-box {
  background: #fff;
  color: #222;
  border-radius: 14px;
  padding: 26px 32px;
  max-width: 500px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  text-align: center;
  animation: popin 0.3s ease-out;
}

.disclaimer-box h2 { color: #123c69; font-size: 1.4rem; margin-top: 0; }
.disclaimer-box p { font-size: 0.95rem; line-height: 1.5; margin-bottom: 22px; }
.disclaimer-box .buttons { display: flex; justify-content: center; gap: 16px; }

.disclaimer-box button {
  border: none; border-radius: 8px; padding: 10px 20px;
  font-size: 0.95rem; cursor: pointer; font-weight: 600;
}

#accept-btn { background: #123c69; color: #fff; }
#accept-btn:hover { background: #0d2e52; }
#decline-btn { background: #e8e8e8; color: #333; }
#decline-btn:hover { background: #d0d0d0; }

@keyframes popin {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
