.privacy-policy-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.privacy-policy-modal.active {
  display: flex;
  opacity: 1;
}

.privacy-policy-content {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(0, 6, 26, 0.95));
  border: 1px solid rgba(0, 219, 255, 0.3);
  border-radius: 10px;
  width: 90%;
  max-width: 650px;
  height: 70vh;
  max-height: 600px;
  padding: 25px;
  box-shadow: 0 0 20px rgba(0, 219, 255, 0.2);
  position: relative;
  color: #fff;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(10px);
  z-index: 1999999;
}

.privacy-policy-header {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 219, 255, 0.2);
}

.privacy-policy-header h2 {
  color: #00dbff;
  font-size: 20px;
  font-weight: 400;
  margin: 0;
  text-align: center;
}

.privacy-policy-body {
  flex: 1;
  overflow-y: auto;
  padding-right: 10px;
  margin-bottom: 15px;
}

.privacy-policy-body::-webkit-scrollbar {
  width: 5px;
}

.privacy-policy-body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

.privacy-policy-body::-webkit-scrollbar-thumb {
  background: rgba(0, 219, 255, 0.5);
  border-radius: 3px;
}

.privacy-policy-body p {
  margin-bottom: 15px;
  line-height: 1.6;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  text-align: justify;
}

.privacy-policy-body h3 {
  color: #00dbff;
  font-size: 16px;
  margin: 20px 0 10px;
  font-weight: 400;
}

.privacy-policy-footer {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(0, 219, 255, 0.2);
}

.privacy-policy-footer button {
  padding: 8px 20px;
  border: none;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  min-width: 100px;
}

.privacy-policy-footer button:hover {
  transform: scale(1.05);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.privacy-policy-agree {
  background: linear-gradient(to right, #00dbff, #00a0cc);
  color: #fff;
}

.privacy-policy-disagree {
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.privacy-policy-modal.active .privacy-policy-content {
  animation: fadeIn 0.3s ease forwards;
}

@media (max-width: 768px) {
  .privacy-policy-content {
    width: 95%;
    padding: 15px;
    height: 80vh;
  }
  
  .privacy-policy-header h2 {
    font-size: 18px;
  }
  
  .privacy-policy-body p {
    font-size: 13px;
  }
} 