/* Enhanced Privacy & Cookie Consent Styles */
.privacy-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(7, 18, 35, 0.95), rgba(0, 51, 102, 0.95));
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(120, 200, 255, 0.2);
  padding: 20px;
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.privacy-banner.show {
  transform: translateY(0);
}

.privacy-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.privacy-text {
  flex: 1;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  line-height: 1.5;
}

.privacy-text h4 {
  color: #00aaff;
  margin-bottom: 8px;
  font-size: 1rem;
}

.privacy-text p {
  margin: 0;
  opacity: 0.8;
}

.privacy-links {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.privacy-links a {
  color: #00aaff;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.privacy-links a:hover {
  color: #00ffff;
}

.privacy-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.privacy-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 100px;
}

.privacy-accept {
  background: linear-gradient(135deg, #00aaff, #0088cc);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 170, 255, 0.3);
}

.privacy-accept:hover {
  background: linear-gradient(135deg, #0088cc, #006699);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 170, 255, 0.4);
}

.privacy-reject {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.privacy-reject:hover {
  background: rgba(255, 255, 255, 0.15);
  color: white;
}

.privacy-customize {
  background: rgba(255, 204, 102, 0.2);
  color: #ffcc66;
  border: 1px solid rgba(255, 204, 102, 0.3);
}

.privacy-customize:hover {
  background: rgba(255, 204, 102, 0.3);
  color: #ffcc66;
}

/* Privacy Modal */
.privacy-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.privacy-modal.show {
  opacity: 1;
  visibility: visible;
}

.privacy-modal-content {
  background: linear-gradient(135deg, rgba(7, 18, 35, 0.95), rgba(0, 51, 102, 0.95));
  border: 1px solid rgba(120, 200, 255, 0.2);
  border-radius: 16px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 30px;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.privacy-modal.show .privacy-modal-content {
  transform: scale(1);
}

.privacy-modal h2 {
  color: #00aaff;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.privacy-option {
  margin-bottom: 20px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.privacy-option h3 {
  color: #ffcc66;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.privacy-option p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.privacy-toggle {
  position: relative;
  width: 60px;
  height: 30px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.privacy-toggle.active {
  background: #00aaff;
}

.privacy-toggle-slider {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.privacy-toggle.active .privacy-toggle-slider {
  transform: translateX(30px);
}

/* Accessibility */
.privacy-btn:focus,
.privacy-toggle:focus {
  outline: 2px solid #00aaff;
  outline-offset: 2px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .privacy-content {
    flex-direction: column;
    text-align: center;
  }
  
  .privacy-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .privacy-btn {
    width: 100%;
  }
  
  .privacy-modal-content {
    padding: 20px;
  }
}
