#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0a0a0a;
  color: white;
  padding: 16px;
  border-top: 1px solid #222;
  font-size: 14px;
  z-index: 9999;
}

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

.cookie-text a {
  color: #6edc8f;
  text-decoration: none;
}

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

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  background: #6edc8f;
  color: #0a0a0a;
  border: none;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  font-size: 14px;
}

.cookie-actions button:hover {
  opacity: 0.9;
}

.cookie-actions button.cookie-btn--secondary {
  background: transparent;
  color: #A3A3A3;
  border: 1px solid #333;
}

.cookie-actions button.cookie-btn--secondary:hover {
  color: #FAFAFA;
  border-color: #555;
}

#cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.cookie-modal-content {
  background: #111;
  color: white;
  padding: 25px;
  border-radius: 10px;
  min-width: 300px;
  max-width: 90vw;
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.cookie-modal-header h3 {
  margin: 0;
  font-size: 18px;
}

.cookie-modal-close {
  background: none;
  border: none;
  color: #A3A3A3;
  font-size: 20px;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
}

.cookie-modal-close:hover {
  color: #FAFAFA;
}

.cookie-modal-content label {
  display: block;
  margin-bottom: 10px;
  cursor: pointer;
}

.cookie-modal-content label input {
  margin-right: 8px;
}

.cookie-modal-content .cookie-actions {
  margin-top: 20px;
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
}
