.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #182334;
  color: #ffffff;
  padding: 20px;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.cookie-banner-text {
  flex: 1;
  min-width: 300px;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-banner-text a {
  color: #6ee7b7;
  text-decoration: underline;
}

.cookie-banner-text a:hover {
  color: #34d399;
}

.cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

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

.cookie-btn-accept {
  background: #0f766e;
  color: #ffffff;
}

.cookie-btn-accept:hover {
  background: #114b5f;
}

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

.cookie-btn-reject:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cookie-btn-settings {
  background: transparent;
  color: #6ee7b7;
  text-decoration: underline;
}

.cookie-banner-settings {
  max-width: 1200px;
  margin: 16px auto 0;
  display: none;
  flex-direction: column;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.cookie-banner-settings.is-open {
  display: flex;
}

.cookie-banner-settings label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: #ffffff;
  cursor: pointer;
}

.cookie-banner-settings input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: #0f766e;
  cursor: pointer;
}

@media (max-width: 768px) {
  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-banner-text {
    min-width: auto;
  }
  
  .cookie-banner-buttons {
    justify-content: center;
  }
}
