.mi-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  padding: 20px 10px;
  background: rgba(25, 37, 56, 0.96);
  border-top: 1px solid rgba(0, 219, 219, 0.22);
  box-shadow: 0 -18px 46px rgba(16, 24, 32, 0.26);
  color: #ffffff;
  font-size: 14px;
}

.mi-consent-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.mi-consent-banner__message {
  margin: 0 0 15px;
}

.mi-consent-banner__actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.mi-consent-banner__button {
  border: 1px solid transparent;
  padding: 10px 20px;
  border-radius: 6px;
  font: inherit;
  cursor: pointer;
}

.mi-consent-banner__button--accept {
  background: #00dbdb;
  color: #192538;
}

.mi-consent-banner__button--reject {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
}

.mi-consent-media-host {
  position: relative;
}

.mi-consent-overlay {
  --mi-consent-ink: #192538;
  --mi-consent-muted: #53616f;
  --mi-consent-accent: #00dbdb;
  --mi-consent-surface: rgba(255, 255, 255, 0.94);
  --mi-consent-line: rgba(25, 37, 56, 0.16);
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(14px, 3vw, 24px);
  border: 0;
  border-radius: inherit;
  background: transparent;
  color: var(--mi-consent-ink);
  text-align: center;
  cursor: pointer;
  transition: background-color 180ms ease;
}

.mi-consent-overlay--bookings {
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(18, 28, 31, 0.64);
}

.mi-consent-overlay__content {
  max-width: min(310px, calc(100% - 24px));
  padding: 6px 10px;
  border: 1px solid var(--mi-consent-line);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 8px 22px rgba(25, 37, 56, 0.12);
  backdrop-filter: blur(10px);
  transform: translateY(clamp(82px, 9vw, 130px));
}

.mi-consent-overlay:hover .mi-consent-overlay__content,
.mi-consent-overlay:focus-visible .mi-consent-overlay__content {
  border-color: rgba(0, 219, 219, 0.44);
  box-shadow: 0 12px 32px rgba(25, 37, 56, 0.18);
}

.mi-consent-overlay:focus-visible {
  outline: 3px solid rgba(0, 219, 219, 0.28);
  outline-offset: -6px;
}

.mi-consent-overlay__title {
  margin-bottom: 2px;
  color: var(--mi-consent-ink);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.25;
}

.mi-consent-overlay--bookings .mi-consent-overlay__content {
  max-width: min(620px, 92vw);
  padding: 28px 32px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(10, 19, 22, 0.78);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  transform: none;
}

.mi-consent-overlay--bookings .mi-consent-overlay__title {
  margin-bottom: 10px;
  color: #ffffff;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 700;
  line-height: 1.25;
}

.mi-consent-overlay--bookings .mi-consent-overlay__subtitle {
  color: #00dbdb;
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  line-height: 1.45;
}

.mi-consent-overlay__subtitle {
  color: var(--mi-consent-muted);
  font-size: 0.6rem;
  font-weight: 600;
  line-height: 1.35;
}

.mi-consent-video-thumb {
  width: 100%;
  display: block;
  border-radius: 8px;
}

.mi-consent-frame {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.mi-consent-bookings-frame {
  width: 100%;
  height: 700px;
  border: 0;
}

@media (max-width: 767.98px) {
  .mi-consent-banner {
    padding: 16px 12px;
  }

  .mi-consent-overlay--bookings {
    padding: 18px;
  }

  .mi-consent-overlay--bookings .mi-consent-overlay__content {
    padding: 22px 18px;
  }

  .mi-consent-overlay {
    justify-content: flex-end;
    padding: 8px 10px;
  }

  .mi-consent-overlay__content {
    max-width: min(268px, calc(100% - 18px));
    margin-bottom: 0;
    padding: 5px 9px;
    transform: none;
  }

  .mi-consent-overlay__title {
    margin-bottom: 2px;
    font-size: 0.72rem;
  }

  .mi-consent-overlay__subtitle {
    font-size: 0.56rem;
    line-height: 1.25;
  }
}
