#country-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;

  @media screen and (max-width: 768px) {
    padding: 20px;
  }
}

#country-popup {
  padding: 30px;
  border-radius: 20px;
  max-width: 700px;
  width: 100%;
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  position: relative;
  border: 2px solid transparent;
  background-image: linear-gradient(#26334a, #26334a),
    linear-gradient(to bottom, #4a5f83, #26334a);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

#popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #666;
}

#popup-close:hover {
  color: #fff;
}

.popup-title {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #ffffff;
}

.popup-title img {
  width: 50px;
  margin: -10px 0 0 3px;
}

.popup-title .highlight {
  font-weight: 700;
  color: #4a90e2;
}

.popup-button {
  max-width: 330px;
  margin: auto;
}

.popup-button:hover {
  background-color: #006f56;
  color: #fff !important;
}

.popup-footer {
  font-size: 12px;
  color: #aaaaaa;
  margin-top: 30px;
  margin-bottom: 0;
}
