html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height, 100px);
}

.bp-cookie {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 10000;
  max-width: 980px;
  margin: 0 auto;
  padding: 22px 26px;
  background: #111;
  color: #f6de94;
  border: 1px solid rgba(246, 222, 148, .35);
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .35);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  display: none;
}

.bp-cookie.is-visible {
  display: block;
  animation: bp-rise .35s ease-out;
}

@keyframes bp-rise {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}

.bp-cookie__title {
  margin: 0 0 6px;
  font-family: Prata, Georgia, serif;
  font-size: 20px;
  line-height: 1.3;
  color: #f6de94;
}

.bp-cookie__text {
  margin: 0 0 16px;
  color: #efe6c8;
}

.bp-cookie__text a,
.bp-modal a {
  color: inherit;
  text-decoration: underline;
  cursor: pointer;
}

.bp-cookie__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.bp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #f6de94;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .2s, color .2s, border-color .2s;
}

.bp-btn--solid {
  background: #f6de94;
  color: #111;
}

.bp-btn--solid:hover {
  background: #a6d6d7;
  border-color: #a6d6d7;
}

.bp-btn--ghost {
  background: transparent;
  color: #f6de94;
}

.bp-btn--ghost:hover {
  background: rgba(246, 222, 148, .12);
}

.bp-btn--muted {
  background: transparent;
  color: #cfc6a8;
  border-color: rgba(207, 198, 168, .45);
}

.bp-btn--muted:hover {
  color: #fff;
  border-color: #fff;
}

.bp-modal {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(10, 20, 15, .72);
}

.bp-modal.is-open {
  display: flex;
}

.bp-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 760px;
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  padding: 40px 36px 32px;
  background: #fffdf5;
  color: #1b1b1b;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .4);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.7;
}

.bp-modal__dialog h2 {
  margin: 0 0 6px;
  font-family: Prata, Georgia, serif;
  font-size: 30px;
  line-height: 1.2;
  color: #111;
}

.bp-modal__dialog h3 {
  margin: 26px 0 6px;
  font-family: Prata, Georgia, serif;
  font-size: 19px;
  line-height: 1.3;
  color: #1f3b2d;
}

.bp-modal__dialog p,
.bp-modal__dialog li {
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 1.7;
}

.bp-modal__dialog ul {
  margin: 0 0 12px;
  padding-left: 20px;
}

.bp-modal__meta {
  color: #5c5c5c;
  font-size: 13px !important;
}

.bp-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: #a6d6d7;
  color: #111;
  font-size: 24px;
  line-height: 40px;
  text-align: center;
  cursor: pointer;
}

.bp-modal__close:hover {
  background: #f6de94;
}

.bp-modal__footer {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid #e6dfc8;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.bp-modal .bp-btn--solid {
  background: #111;
  border-color: #111;
  color: #f6de94;
}

.bp-modal .bp-btn--solid:hover {
  background: #1f3b2d;
  border-color: #1f3b2d;
}

.bp-modal .bp-btn--ghost {
  color: #111;
  border-color: #111;
}

body.bp-lock {
  overflow: hidden;
}

.bp-footer-links a {
  cursor: pointer;
}

.bp-casino-badge {
  display: inline-block;
  margin-top: 4px;
  padding: 4px 12px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

@media (max-width: 640px) {
  .bp-cookie {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 18px;
  }

  .bp-cookie__actions .bp-btn {
    flex: 1 1 100%;
  }

  .bp-modal__dialog {
    padding: 34px 20px 24px;
  }

  .bp-modal__dialog h2 {
    font-size: 24px;
  }
}
