.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(30, 30, 30, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px;
  z-index: 10000;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.3);
}

.cookie-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.cookie-content p {
  margin: 0;
  text-align: left;
  font-size: 0.85rem;
  color: #ccc;
  line-height: 1.5;
  flex: 1;
  min-width: 300px;
  max-width: 900px;
}

.cookie-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
  justify-content: center;
}

.cookie-buttons button {
  padding: 6px 12px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.85rem;
  transition: all 0.2s;
  font-weight: 500;
  white-space: nowrap;
}

.cookie-buttons button:active {
  transform: scale(0.98);
}

.btn-dismiss {
  background-color: #8dc63f;
  color: #000;
}

.btn-dismiss:hover {
  background-color: #9ad14b;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .cookie-content p {
    font-size: 0.8rem;
    min-width: unset;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    gap: 6px;
  }
  
  .cookie-buttons button {
    flex: 1;
    font-size: 0.8rem;
    padding: 8px 6px;
  }
}