
    .consent-banner {
      position: fixed;
      left: 50%;
      bottom: 1rem;
      transform: translateX(-50%) translateY(1rem);
      width: min(calc(100% - 1.5rem), 980px);
      z-index: 9998;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
    }

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

    .consent-banner__panel {
      position: relative;
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 1rem 1.25rem;
      align-items: center;
      padding: 0.95rem 1rem;
      border-radius: 18px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(16, 26, 34, 0.84);
      color: #ffffff;
      box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }

    .consent-banner__header {
      min-width: 0;
    }

    .consent-banner__title {
      margin: 0 0 0.2rem;
      font-family: var(--heading-font);
      font-size: 1.05rem;
      line-height: 1.1;
      color: #ffffff;
      letter-spacing: 0.02em;
    }

    .consent-banner__copy {
      margin: 0;
      font-size: 0.95rem;
      line-height: 1.45;
      color: rgba(255, 255, 255, 0.88);
    }

    .consent-banner__copy a {
      color: #ffffff;
      text-decoration: underline;
      text-underline-offset: 0.16em;
    }

    .consent-banner__actions {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 0.55rem;
      flex-wrap: wrap;
    }

    .consent-banner__btn {
      appearance: none;
      border: 1px solid transparent;
      border-radius: 999px;
      padding: 0.7rem 1rem;
      font: inherit;
      font-size: 0.92rem;
      line-height: 1;
      cursor: pointer;
      transition: background-color 0.22s ease, border-color 0.22s ease, color 0.22s ease, transform 0.22s ease;
      white-space: nowrap;
    }

    .consent-banner__btn:hover {
      transform: translateY(-1px);
    }

    .consent-banner__btn--accept {
      background: var(--accent-color);
      border-color: var(--accent-color);
      color: #ffffff;
    }

    .consent-banner__btn--accept:hover {
      background: color-mix(in srgb, var(--accent-color), white 8%);
      border-color: color-mix(in srgb, var(--accent-color), white 8%);
    }

    .consent-banner__btn--decline {
      background: rgba(255, 255, 255, 0.05);
      border-color: rgba(255, 255, 255, 0.18);
      color: #ffffff;
    }

    .consent-banner__btn--decline:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.28);
    }

    .consent-banner__close {
      appearance: none;
      border: 0;
      background: transparent;
      color: rgba(255, 255, 255, 0.82);
      width: 2rem;
      height: 2rem;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      cursor: pointer;
      transition: background-color 0.22s ease, color 0.22s ease;
    }

    .consent-banner__close:hover {
      background: rgba(255, 255, 255, 0.08);
      color: #ffffff;
    }

    .consent-banner__status {
      grid-column: 1 / -1;
      display: none;
      margin: 0;
      padding-top: 0.15rem;
      font-size: 0.92rem;
      line-height: 1.4;
      color: rgba(255, 255, 255, 0.92);
    }

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

    .consent-banner__status-check {
      display: inline-block;
      margin-right: 0.4rem;
      color: #9fe6b3;
      font-weight: 700;
    }

    @media (max-width: 767.98px) {
      .consent-banner {
        width: min(calc(100% - 1rem), 100%);
        bottom: 0.75rem;
      }

      .consent-banner__panel {
        grid-template-columns: 1fr;
        align-items: start;
        padding: 0.95rem 0.9rem;
      }

      .consent-banner__actions {
        justify-content: flex-start;
      }

      .consent-banner__close {
        position: absolute;
        top: 0.55rem;
        right: 0.55rem;
      }

      .consent-banner__copy {
        padding-right: 2rem;
      }
    }
