

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #0a0c10;
  border-top: 1px solid #252b3b;
  padding: 24px;
  z-index: 999;
  max-height: 200px;
  overflow-y: auto;
}

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

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

.cookie-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: #e8eaf0;
}

.cookie-text {
  font-size: 13px;
  color: #8a90a2;
  margin: 0;
  line-height: 1.5;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-accept,
.cookie-reject {
  white-space: nowrap;
  font-size: 13px;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  transition: background-color 0.2s ease;
}

.cookie-reject {
  background-color: transparent;
  color: #8a90a2;
  border: 1px solid #252b3b;
}

.cookie-reject:hover {
  background-color: #1a1e28;
  border-color: #3a4055;
}

.cookie-accept {
  background-color: #ff4d4d;
  color: #fff;
}

.cookie-accept:hover {
  background-color: #e63c3c;
}

@media (max-width: 768px) {
  .cookie-banner-content {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-accept,
  .cookie-reject {
    flex: 1;
  }

  .cookie-banner {
    padding: 16px;
  }
}
