/* Cookie Consent Banner Styles */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(0, 255, 159, 0.3);
  padding: 1.5rem;
  display: none;
  z-index: 10000;
  animation: slideUp 0.3s ease-out;
}

.cookie-banner.show {
  display: block;
}

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 300px;
  color: #e0e0e0;
  font-size: 0.95rem;
  line-height: 1.5;
}

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

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

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

.cookie-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-family: 'Monaco', 'Courier New', monospace;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
}

.cookie-btn-accept {
  background: #00ff9f;
  color: #0a0a0a;
  font-weight: 600;
}

.cookie-btn-accept:hover {
  background: #00cc7f;
  transform: translateY(-2px);
}

.cookie-btn-reject {
  background: transparent;
  color: #e0e0e0;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn-reject:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.05);
}
