/* Overlay */
#rangoDisclaimerModal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.55);
  z-index: 99999;
  padding: 16px;
  box-sizing: border-box;
  animation: rangoFadeIn 0.4s ease;
}

/* Modal Box */
.rango-box {
  width: 100%;
  max-width: 680px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  padding: 22px;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #1a1a1a;
  border-top: 6px solid #0d47a1;
}

/* Header */
.rango-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.rango-header h2 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.2px;
  color: #0d47a1;
}

/* Logo */
.rango-logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #0d47a1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rango-logo span {
  font-size: 18px;
  color: #FFD700;
  font-weight: 700;
}

/* Text */
.rango-content p {
  margin: 0 0 12px 0;
  text-indent: 1.5em;
  font-size: 14.5px;
  line-height: 1.8;
  text-align: justify;
  color: #333;
}
.rango-content .signature {
  margin: 8px 0 0 0;
  text-align: right;
  font-weight: 600;
  color: #0d47a1;
  text-indent: 0;
}

/* Footer */
.rango-footer {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

/* Button */
#rangoAgreeBtn {
  appearance: none;
  border: 0;
  cursor: pointer;
  padding: 10px 22px;
  border-radius: 999px;
  background: #0d47a1;
  color: #FFD700;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.3px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  transition: all 0.15s ease-in-out;
}
#rangoAgreeBtn:hover {
  background: #1565c0;
  transform: translateY(-2px);
}
#rangoAgreeBtn:active {
  transform: translateY(0);
}

/* Button */
#rangoRegistrationAgreeBtn {
  appearance: none;
  border: 0;
  cursor: pointer;
  padding: 10px 22px;
  border-radius: 999px;
  background: #0d47a1;
  color: #FFD700;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.3px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  transition: all 0.15s ease-in-out;
}
#rangoRegistrationAgreeBtn:hover {
  background: #1565c0;
  transform: translateY(-2px);
}
#rangoRegistrationAgreeBtn:active {
  transform: translateY(0);
}

@keyframes rangoFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}