.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  border-top: 2px solid var(--accent);
  padding: 1.5rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  z-index: 9999;
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
}

.cookie-banner-text {
  color: var(--text-primary);
}

.cookie-banner-text h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 1px;
}

.cookie-banner-text > p {
  margin: 0 0 1rem 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-dim);
}

.cookie-options {
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cookie-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.9rem;
}

.cookie-option input[type="checkbox"] {
  cursor: pointer;
  accent-color: var(--accent);
  width: 18px;
  height: 18px;
}

.cookie-option input[type="checkbox"]:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.cookie-option span {
  color: var(--text-primary);
}

.cookie-gdpr {
  margin: 1rem 0 0 0;
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.4;
}

.cookie-gdpr a {
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.2s;
}

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

.cookie-banner-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 150px;
}

.btn {
  padding: 0.75rem 1.25rem;
  border: 1px solid var(--accent);
  border-radius: 0.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-family: inherit;
}

.btn-accept {
  background: var(--accent);
  color: var(--bg-darker);
  border-color: var(--accent);
}

.btn-accept:hover {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
  box-shadow: 0 0 15px rgba(255, 107, 53, 0.3);
}

.btn-reject {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-reject:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-manage {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn-manage:hover {
  background: rgba(255, 107, 53, 0.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .cookie-banner {
    padding: 1rem;
  }

  .cookie-banner-content {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .cookie-options {
    gap: 0.5rem;
  }

  .cookie-banner-actions {
    flex-direction: row;
    gap: 0.5rem;
  }

  .btn {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .cookie-banner {
    padding: 0.75rem;
  }

  .cookie-banner-text h3 {
    font-size: 1rem;
  }

  .cookie-banner-text > p,
  .cookie-option span {
    font-size: 0.85rem;
  }

  .cookie-banner-actions {
    flex-direction: column;
  }
}
