
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(10, 10, 15, 0.98);
  border-top: 2px solid #00e5ff;
  padding: 1.5rem;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-content {
  flex: 1;
  min-width: 0;
}

.cookie-content h3 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: #f5f5f5;
}

.cookie-content p {
  font-size: 0.9rem;
  color: #8a8a94;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.cookie-content a {
  color: #00e5ff;
  text-decoration: none;
}

.cookie-content a:hover {
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-banner button {
  padding: 0.5rem 1.25rem;
  border: none;
  border-radius: 0.375rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s;
}

.btn-accept {
  background-color: #00e5ff;
  color: #0a0a0f;
}

.btn-accept:hover {
  background-color: #00d4e8;
}

.btn-reject {
  background-color: transparent;
  color: #00e5ff;
  border: 2px solid #00e5ff;
}

.btn-reject:hover {
  background-color: rgba(0, 229, 255, 0.1);
}

.btn-customize {
  background-color: transparent;
  color: #00e5ff;
  border: 2px solid #00e5ff;
}

.btn-customize:hover {
  background-color: rgba(0, 229, 255, 0.1);
}

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.cookie-modal.visible {
  display: flex;
}

.cookie-modal-content {
  background-color: #0a0a0f;
  border: 1px solid rgba(0, 229, 255, 0.3);
  border-radius: 0.75rem;
  padding: 2rem;
  max-width: 500px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
}

.cookie-modal h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #f5f5f5;
}

.cookie-category {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background-color: rgba(0, 229, 255, 0.05);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 0.375rem;
}

.cookie-category h4 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.cookie-category input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  cursor: pointer;
  accent-color: #00e5ff;
}

.cookie-category p {
  font-size: 0.85rem;
  color: #8a8a94;
  margin: 0;
}

.cookie-modal-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.cookie-modal-buttons button {
  flex: 1;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.375rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background-color 0.2s;
}

.modal-btn-save {
  background-color: #00e5ff;
  color: #0a0a0f;
}

.modal-btn-save:hover {
  background-color: #00d4e8;
}

.modal-btn-close {
  background-color: transparent;
  color: #00e5ff;
  border: 2px solid #00e5ff;
}

.modal-btn-close:hover {
  background-color: rgba(0, 229, 255, 0.1);
}

@media (max-width: 1024px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .cookie-banner {
    padding: 1rem;
    gap: 1rem;
  }
  
  .cookie-content p {
    font-size: 0.85rem;
  }
  
  .cookie-buttons {
    width: 100%;
    gap: 0.5rem;
    flex-direction: column;
  }
  
  .cookie-banner button {
    width: 100%;
    padding: 0.75rem 1rem;
  }
  
  .cookie-modal-content {
    padding: 1.5rem;
  }
}
