/* ETH-style cookie banner */
.pa-banner {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    background: #0b0b0b;
    color: #fff;
    z-index: 9999;
    padding: 18px 0;
    box-shadow: 0 -2px 12px rgba(0,0,0,.35);
    font: 16px/1.5 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.pa-banner__content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.pa-banner__text {
    flex: 1 1 680px;
    min-width: 320px;
}

.pa-banner__title {
    margin: 0 0 8px 0;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
    color: #fff;
}

.pa-banner__desc {
    margin: 0;
    color: #e7e7e7;
}

.pa-banner__desc a {
    color: #fff;
    text-decoration: underline;
}

.pa-banner__actions {
    display: flex;
    gap: 16px;
    flex: 0 0 auto;
}

.pa-btn {
    appearance: none;
    border: 0;
    border-radius: 6px;
    padding: 12px 18px;
    font-weight: 700;
    cursor: pointer;
    background: #fff;
    color: #111;
    transition: transform .02s ease-in-out, opacity .15s ease;
    white-space: nowrap;
}

.pa-btn:active { transform: scale(.98); }

.pa-btn--decline {
    background: #fff;
    color: #111;
}

.pa-btn--accept {
    background: #fff;
    color: #111;
}

@media (max-width: 720px) {
    .pa-banner__actions { width: 100%; justify-content: flex-start; }
}
