/* Cookie Consent Modal Styles */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.hidden {
  display: none;
}

.cookie-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
}

.cookie-modal-content {
  position: relative;
  background: linear-gradient(135deg, #1F2937 0%, #000000 100%);
  border: 1px solid rgba(0, 217, 255, 0.3);
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 30px;
  box-shadow: 0 20px 60px rgba(0, 217, 255, 0.3);
}

.cookie-modal-title {
  font-size: 24px;
  font-weight: bold;
  color: #00D9FF;
  margin-bottom: 12px;
  text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

.cookie-modal-text {
  color: #E5E7EB;
  margin-bottom: 24px;
  line-height: 1.6;
}

.cookie-categories {
  margin-bottom: 24px;
}

.cookie-category {
  border: 1px solid rgba(0, 217, 255, 0.3);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 12px;
  background: rgba(31, 41, 55, 0.5);
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.cookie-category-label {
  display: flex;
  align-items: center;
  font-weight: 600;
  color: #E5E7EB;
  cursor: pointer;
}

.cookie-category-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-right: 12px;
  cursor: pointer;
  accent-color: #00D9FF;
}

.cookie-category-label input[type="checkbox"]:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.cookie-category-status {
  font-size: 12px;
  color: #9CA3AF;
  font-weight: normal;
}

.cookie-category-description {
  color: #9CA3AF;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.cookie-btn {
  flex: 1;
  min-width: 140px;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.cookie-btn-primary {
  background: linear-gradient(135deg, #00D9FF 0%, #00E5FF 100%);
  color: #000000;
  box-shadow: 0 0 15px rgba(0, 217, 255, 0.5);
}

.cookie-btn-primary:hover {
  background: linear-gradient(135deg, #00E5FF 0%, #00D9FF 100%);
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(0, 217, 255, 0.8);
}

.cookie-btn-secondary {
  background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
  color: white;
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.5);
}

.cookie-btn-secondary:hover {
  background: linear-gradient(135deg, #A855F7 0%, #8B5CF6 100%);
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(139, 92, 246, 0.8);
}

.cookie-btn-tertiary {
  background: #1F2937;
  color: #E5E7EB;
  border: 1px solid rgba(0, 217, 255, 0.3);
}

.cookie-btn-tertiary:hover {
  background: #374151;
  transform: translateY(-2px);
  border-color: rgba(0, 217, 255, 0.6);
}

.cookie-modal-footer {
  text-align: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 217, 255, 0.3);
}

.cookie-policy-link {
  color: #00D9FF;
  text-decoration: none;
  font-size: 14px;
  transition: text-shadow 0.3s ease;
}

.cookie-policy-link:hover {
  text-decoration: underline;
  text-shadow: 0 0 10px rgba(0, 217, 255, 0.8);
}

/* Mobile Responsive */
@media (max-width: 640px) {
  .cookie-modal-content {
    padding: 20px;
    max-height: 95vh;
  }
  
  .cookie-modal-title {
    font-size: 20px;
  }
  
  .cookie-modal-buttons {
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  .cookie-category-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
