.cookie-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #152238;              /* Синій Графіт як картки сайту */
  color: #ffffff;                    /* білий текст */
  padding: 14px 28px;
  border-top: 2px solid #4dc6ff;    /* Яскравий Циан акцент як на сайті */
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 13px;
  font-family: "Prompt", sans-serif;
  z-index: 10001;
}

.cookie-text {
  line-height: 1.5;
  color: #cccccc;                   /* приглушений текст */
}

.cookie-text a {
  color: #4dc6ff;                   /* Яскравий Циан акцент для посилань */
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
}

.cookie-text a:hover {
  color: #79d7ff;                   /* Світлий Циан при ховері */
}

/* кнопка в стилі сайту */
.cookie-btn {
  min-width: 80px;
  padding: 8px 22px;
  border-radius: 999px;
  border: none;
  background: #4dc6ff;              /* Яскравий Циан акцент */
  color: #0d172a;                   /* Глибокий Індиго текст (як на кнопці в style.css) */
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(77, 198, 255, 0.3); /* Тінь Циану */
  transition: transform 0.1s ease, box-shadow 0.1s ease, filter 0.15s ease;
}

.cookie-btn:hover {
  filter: brightness(1.1);
  background: #2aa8e0;              /* Темний Циан при ховері */
  color: #ffffff;                   /* Білий текст при ховері */
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(77, 198, 255, 0.4); /* Тінь Циану */
}

.cookie-btn:active {
  transform: translateY(1px);
  box-shadow: 0 4px 10px rgba(77, 198, 255, 0.25); /* Тінь Циану */
}

@media (max-width: 768px) {
  .cookie-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* AGE POPUP */
.age-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 23, 42, 0.92);  /* Глибокий Індиго для оверлею */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}