#cookieNotice {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  max-width: 920px;
  width: calc(100% - 40px);
  background: rgba(12, 16, 24, 0.92);
  color: #ffffff;
  padding: 18px 22px;
  border-radius: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  z-index: 9999;
  box-shadow: 0 12px 30px rgba(0,0,0,0.45);
  font-family: Inter, Arial, sans-serif;
}

.cookie-text {
  font-size: 13px;
  line-height: 1.45;
  max-width: 680px;
  opacity: 0.9;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.cookie-link {
  color: #F9D36F;
  font-size: 13px;
  text-decoration: underline;
}

#cookieAccept {
  background: #F9D36F;
  color: #322906;
  border: none;
  border-radius: 10px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}

#cookieAccept:hover {
  background: #f0c957;
}

@media (max-width: 768px) {
  #cookieNotice {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .cookie-text {
    max-width: 100%;
  }

  .cookie-actions {
    width: 100%;
    justify-content: space-between;
  }
}
