.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 14, 39, 0.98);
  border-top: 1px solid rgba(0, 217, 255, 0.2);
  padding: 20px;
  z-index: 9999;
  display: none;
}

.cookie-consent.show {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cookie-content {
  max-width: 800px;
  display: flex;
  align-items: center;
  gap: 20px;
  color: #e0e0e0;
  font-size: 14px;
  line-height: 1.5;
}

.cookie-content p {
  margin: 0;
  flex: 1;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  white-space: nowrap;
}

.cookie-btn {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.cookie-accept {
  background: #00d9ff;
  color: #0a0e27;
}

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

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

.cookie-reject:hover {
  border-color: rgba(224, 224, 224, 0.6);
}

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

  .cookie-buttons {
    width: 100%;
    gap: 8px;
  }

  .cookie-btn {
    flex: 1;
  }
}
