
  .consent-banner {
    position: fixed;
    left: 50%;
    bottom: 0.3rem;
    transform: translateX(-50%) translateY(0.3rem);
    width: min(96vw, 78rem);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.2s ease,
      transform 0.2s ease,
      visibility 0.2s ease;
    font-family: "Karla", sans-serif;
  }

  .consent-banner.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }

  .consent-banner__panel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.7rem 3rem 0.7rem 0.9rem;
    border-radius: 0.55rem;
    color: #f5f7fb;
    background:
      linear-gradient(135deg, rgba(8, 18, 36, 0.96), rgba(15, 35, 66, 0.94));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
      0 0.3rem 0.9rem rgba(0, 0, 0, 0.16),
      inset 0 1px 0 rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .consent-banner__close {
    position: absolute;
    top: 50%;
    right: 0.55rem;
    transform: translateY(-50%);
    width: 1.45rem;
    height: 1.45rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.76);
    background: transparent;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1;
    transition: background-color 0.18s ease, color 0.18s ease;
  }

  .consent-banner__close:hover,
  .consent-banner__close:focus-visible {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    outline: none;
  }

  .consent-banner__header {
    flex: 1 1 auto;
    min-width: 0;
    padding-right: 0;
  }

  .consent-banner__title {
    display: inline;
    margin: 0 0.45rem 0 0;
    font-family: "Francois One", sans-serif;
    font-size: 0.9rem;
    line-height: 1.2;
    letter-spacing: 0.01em;
    color: #ffffff;
  }

  .consent-banner__text {
    display: inline;
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.84);
  }

  .consent-banner__text a {
    color: #cfe8ff;
    text-decoration: underline;
    text-underline-offset: 0.12em;
  }

  .consent-banner__status {
    display: none;
    align-items: center;
    gap: 0.45rem;
    margin: 0;
    padding: 0.45rem 0.6rem;
    border-radius: 0.5rem;
    font-size: 0.8rem;
    line-height: 1.3;
    white-space: nowrap;
  }

  .consent-banner__status.is-visible {
    display: flex;
  }

  .consent-banner__status--success {
    color: #eaf7ef;
    background: rgba(56, 142, 92, 0.2);
    border: 1px solid rgba(132, 214, 162, 0.18);
  }

  .consent-banner__status--decline {
    color: #f6f2ea;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    white-space: normal;
  }

  .consent-banner__status-icon {
    flex: 0 0 auto;
    width: 1rem;
    height: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.16);
  }

  .consent-banner__actions {
    flex: 0 0 auto;
    display: flex;
    flex-wrap: nowrap;
    gap: 0.45rem;
    align-items: center;
  }

  .consent-banner__btn {
    appearance: none;
    border: 0;
    border-radius: 999px;
    padding: 0.5rem 0.8rem;
    font-size: 0.79rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    white-space: nowrap;
    transition:
      transform 0.16s ease,
      box-shadow 0.16s ease,
      background-color 0.16s ease,
      color 0.16s ease,
      border-color 0.16s ease;
  }

  .consent-banner__btn:hover,
  .consent-banner__btn:focus-visible {
    transform: translateY(-1px);
    outline: none;
  }

  .consent-banner__btn--accept {
    color: #04172d;
    background: linear-gradient(135deg, #cde6ff, #86c0f7);
    box-shadow: 0 0.3rem 0.8rem rgba(89, 160, 232, 0.16);
  }

  .consent-banner__btn--decline {
    color: #f5f7fb;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
  }

  @media (max-width: 900px) {
    .consent-banner {
      width: min(96vw, 46rem);
    }

    .consent-banner__panel {
      flex-wrap: wrap;
      align-items: flex-start;
      padding: 0.72rem 2.5rem 0.72rem 0.8rem;
    }

    .consent-banner__header,
    .consent-banner__actions {
      width: 100%;
    }

    .consent-banner__actions {
      flex-wrap: wrap;
    }
  }

  @media (max-width: 767.98px) {
    .consent-banner {
      width: min(95vw, 34rem);
      bottom: 0.25rem;
    }

    .consent-banner__panel {
      padding: 0.7rem 2.4rem 0.72rem 0.78rem;
      border-radius: 0.55rem;
    }

    .consent-banner__title,
    .consent-banner__text {
      display: inline;
    }

    .consent-banner__actions {
      gap: 0.4rem;
    }

    .consent-banner__btn {
      width: auto;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .consent-banner {
      transition: none;
    }

    .consent-banner__btn {
      transition: none;
    }
  }