.siq-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 20px;
  pointer-events: auto;
  overflow: hidden;
}

.siq-modal {
  width: 100%;
  max-width: 420px;
  border-radius: 30px;
  box-shadow: 0 12px 40px rgba(7,11,22,0.55);
  background: #fff;
  position: relative;
  padding: 25px;
  color: #0b0b0b;
  z-index: 2;
  font-family: 'Montserrat';
  max-height: 84vh;
  display: flex;
  flex-direction: column;
  overflow: hidden; 
  box-sizing: border-box;
  gap: 30px;
}

.siq-modal::before,
.siq-modal::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0; 
  will-change: transform, opacity;
  filter: blur(50px);
  opacity: 0.95;
}

.siq-modal::before {
  left: -70px;     
  top: -200px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: #3251FB;
  transform: translateZ(0);
}

.siq-modal::after {
  right: -70px;
  top: -200px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: #D3ACF3;
  transform: translateZ(0);
}

.siq-modal > * {
  position: relative;
  z-index: 1;
}

.siq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.siq-close-btn {
  background: transparent;
  border: none;
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  outline: none !important;
  box-shadow: none !important;
  border-radius: 10px;
}

.siq-title {
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  justify-content: center;
}

.siq-body {
  padding: 16px;
  border-radius: 12px;
  color: #000000;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.45;
  text-align: center;
}

.siq-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
}

.siq-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #000000;
}

.siq-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border-radius: 7px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
}