.ecc-banner {
    box-sizing: border-box;
    font-family: inherit;
    font-size: 13px;
    line-height: 1.5;
}
.ecc-banner[hidden] {
    display: none !important;
}
.ecc-banner {
    position: fixed;
    z-index: 999990;
    bottom: max(20px, env(safe-area-inset-bottom));
    left: 50%;
    transform: translateX(-50%);
    width: min(1120px, calc(100% - 40px));
    max-height: 80vh;
    overflow: auto;
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 22px 26px;
    color: #f5f0e9;
    background: #1b1919;
    border: 1px solid #484140;
    border-radius: 6px;
    box-shadow: 0 12px 44px #0003;
    text-align: left;
}
.ecc-copy {
    flex: 1;
    min-width: 0;
}
.ecc-title {
    display: block;
    margin: 0 0 5px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    overflow-wrap: anywhere;
}
.ecc-copy p {
    margin: 0;
    font: inherit;
    color: #d5ceca;
    white-space: pre-line;
    overflow-wrap: anywhere;
}
.ecc-links {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 18px;
    margin-top: 9px;
}
.ecc-links a {
    color: #e7b1c1;
    font: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.ecc-links a:hover {
    color: #fff;
}
.ecc-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.ecc-banner .ecc-button {
    appearance: none;
    cursor: pointer;
    text-transform: none;
    letter-spacing: normal;
    font: inherit;
    font-weight: 500;
    color: #fff;
    background: transparent;
    border: 1px solid #796f6c;
    border-radius: 3px;
    min-height: 44px;
    padding: 11px 16px;
    margin: 0;
    transition: background .16s ease, border-color .16s ease;
}
.ecc-banner .ecc-button:hover {
    background: #393232;
    border-color: #c0aaa4;
}
.ecc-banner .ecc-primary {
    background: #c90045;
    border-color: #c90045;
}
.ecc-banner .ecc-primary:hover {
    background: #ae003c;
    border-color: #ae003c;
}
.ecc-banner a:focus-visible,
.ecc-banner button:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 4px;
}
@media (max-width: 850px) {
    .ecc-banner {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
}
@media (max-width: 480px) {
    .ecc-banner {
        width: calc(100% - 20px);
        bottom: max(10px, env(safe-area-inset-bottom));
        padding: 18px;
    }
    .ecc-actions {
        flex-direction: column;
    }
    .ecc-banner .ecc-button {
        width: 100%;
    }
}
@media (prefers-reduced-motion: reduce) {
    .ecc-banner .ecc-button {
        transition: none;
    }
}
