.info-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  z-index: 200;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease-out;
}

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

.info-popup-content {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  color: #fff;
  max-width: 600px;
  width: 90%;
  padding: 30px;
  border-radius: 16px;
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 255, 255, 0.2), 0 0 10px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transform: translateY(20px);
  animation: slideUp 0.4s ease-out forwards;
  text-align: justify;
}

.disclaimer-information {
  text-align: center;
}

@keyframes slideUp {
  to {
    transform: translateY(0);
  }
}

.info-popup-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: #ff4757;
  transition: transform 0.2s ease, color 0.2s ease;
}

.info-popup-close:hover {
  color: #ff6b81;
  transform: scale(1.2) rotate(90deg);
}

.info-popup-content h2 {
  margin: 0 0 20px;
  color: #f39c12;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 10px rgba(243, 156, 18, 0.5);
}

.info-popup-content p {
  font-size: 16px;
  line-height: 1.6;
  margin: 15px 0;
  color: #e0e0e0;
}

.info-popup-content strong {
  color: #0ff;
  font-weight: 600;
}

.info-popup-content a {
  color: #00ffff;
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.2s ease;
  border-bottom: 1px solid transparent;
}

.info-popup-content a:hover {
  color: #33ffff;
  border-bottom: 1px solid #33ffff;
}

.info-popup-content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 600px) {
  .info-popup-content {
    width: 95%;
    padding: 20px;
  }

  .info-popup-content h2 {
    font-size: 24px;
  }

  .info-popup-content p {
    font-size: 14px;
  }

  .info-popup-close {
    font-size: 24px;
    top: 10px;
    right: 15px;
  }
}
