/* ======================================
   ODIN LEGEND — GLOBAL COOKIE BANNER
====================================== */

/* Container */
.ol-cookie {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  display: none;
}

/* Visible state */
.ol-cookie[aria-hidden="false"] {
  display: block;
}

/* Inner box */
.ol-cookie__inner {
  max-width: 1000px;
  margin: 0 auto;

  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(14px);

  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;

  padding: 22px;

  box-shadow:
    0 30px 80px rgba(0,0,0,0.65),
    0 0 40px rgba(255,140,0,0.08);
}

/* Title */
.ol-cookie__title {
  font-family: "Cinzel", serif;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
  opacity: 0.9;
}

/* Text */
.ol-cookie__text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  line-height: 1.6;
  opacity: 0.85;
  margin-bottom: 18px;
}

/* Buttons container */
.ol-cookie__actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

/* Buttons */
.ol-cookie__btn {
  font-family: "Cinzel", serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  padding: 10px 18px;
  border-radius: 12px;

  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  color: #f2f2f2;

  cursor: pointer;
  transition: all 0.2s ease;
}

.ol-cookie__btn:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-2px);
}

/* Reject button */
.ol-cookie__btn--ghost {
  background: transparent;
  opacity: 0.7;
}

.ol-cookie__btn--ghost:hover {
  opacity: 1;
}

/* Mobile optimization */
@media (max-width: 600px) {
  .ol-cookie__inner {
    padding: 18px;
  }

  .ol-cookie__actions {
    justify-content: center;
  }
}
