.ps-footer-inline-panel[hidden] {
    display: none;
}

.ps-footer-inline-panel {
    position: fixed;
    inset: 0;
    z-index: 2900;
}

.ps-footer-inline-panel__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(15, 23, 42, 0.58);
    cursor: pointer;
}

.ps-footer-inline-panel__shell {
    position: absolute;
    top: var(--ps-footer-inline-panel-top, 1rem);
    right: 1rem;
    bottom: var(--ps-footer-inline-panel-bottom, 1rem);
    left: 1rem;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.ps-footer-inline-panel__surface {
    width: min(1080px, 100%);
    height: 100%;
    display: flex;
    flex-direction: column;
    pointer-events: auto;
    border-radius: 1.25rem;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.26);
    overflow: hidden;
}

[data-theme="dark"] .ps-footer-inline-panel__surface {
    border-color: rgba(148, 163, 184, 0.28);
    background: rgba(2, 6, 23, 0.96);
    box-shadow: 0 34px 90px rgba(2, 6, 23, 0.68);
}

.ps-footer-inline-panel__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 1.25rem 1rem;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.98), rgba(255, 255, 255, 0.94));
}

[data-theme="dark"] .ps-footer-inline-panel__header {
    border-bottom-color: rgba(148, 163, 184, 0.2);
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.98), rgba(2, 6, 23, 0.94));
}

.ps-footer-inline-panel__eyebrow {
    margin: 0 0 0.2rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #475569;
}

[data-theme="dark"] .ps-footer-inline-panel__eyebrow {
    color: #94a3b8;
}

.ps-footer-inline-panel__title {
    margin: 0;
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    line-height: 1.2;
    color: #0f172a;
}

[data-theme="dark"] .ps-footer-inline-panel__title {
    color: #e2e8f0;
}

.ps-footer-inline-panel__close {
    flex: 0 0 auto;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #0f172a;
    cursor: pointer;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

[data-theme="dark"] .ps-footer-inline-panel__close {
    border-color: rgba(148, 163, 184, 0.24);
    background: rgba(15, 23, 42, 0.9);
    color: #e2e8f0;
}

.ps-footer-inline-panel__close:hover,
.ps-footer-inline-panel__close:focus-visible {
    border-color: rgba(37, 99, 235, 0.5);
    background: rgba(37, 99, 235, 0.08);
    transform: translateY(-1px);
}

[data-theme="dark"] .ps-footer-inline-panel__close:hover,
[data-theme="dark"] .ps-footer-inline-panel__close:focus-visible {
    background: rgba(56, 189, 248, 0.14);
}

.ps-footer-inline-panel__body {
    flex: 1 1 auto;
    overflow: auto;
    padding: 1.3rem 1.25rem 1.5rem;
    color: #334155;
}

[data-theme="dark"] .ps-footer-inline-panel__body {
    color: #cbd5e1;
}

.ps-footer-inline-panel__status {
    margin: 0;
    font-size: 0.98rem;
}

.ps-footer-inline-panel__status--error {
    color: #b91c1c;
}

[data-theme="dark"] .ps-footer-inline-panel__status--error {
    color: #fca5a5;
}

.ps-footer-inline-panel__content {
    width: min(820px, 100%);
    margin: 0 auto;
}

.ps-footer-inline-panel__content h1,
.ps-footer-inline-panel__content h2,
.ps-footer-inline-panel__content h3,
.ps-footer-inline-panel__content h4 {
    color: #0f172a;
    line-height: 1.25;
}

[data-theme="dark"] .ps-footer-inline-panel__content h1,
[data-theme="dark"] .ps-footer-inline-panel__content h2,
[data-theme="dark"] .ps-footer-inline-panel__content h3,
[data-theme="dark"] .ps-footer-inline-panel__content h4 {
    color: #e2e8f0;
}

.ps-footer-inline-panel__content h1 {
    margin: 0 0 0.9rem;
    font-size: clamp(1.7rem, 2.6vw, 2.3rem);
}

.ps-footer-inline-panel__content h2 {
    margin: 1.7rem 0 0.7rem;
    font-size: 1.2rem;
}

.ps-footer-inline-panel__content h3 {
    margin: 1.2rem 0 0.55rem;
    font-size: 1rem;
}

.ps-footer-inline-panel__content p,
.ps-footer-inline-panel__content li {
    margin-top: 0;
    color: inherit;
    line-height: 1.65;
}

.ps-footer-inline-panel__content ul {
    margin: 0.75rem 0 1rem;
    padding-left: 1.3rem;
}

.ps-footer-inline-panel__content hr {
    border: 0;
    border-top: 1px solid rgba(15, 23, 42, 0.12);
    margin: 1.25rem 0;
}

[data-theme="dark"] .ps-footer-inline-panel__content hr {
    border-top-color: rgba(148, 163, 184, 0.22);
}

.ps-footer-inline-panel__content a {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
}

[data-theme="dark"] .ps-footer-inline-panel__content a {
    color: #7dd3fc;
}

.ps-footer-inline-panel__content a:hover,
.ps-footer-inline-panel__content a:focus-visible {
    text-decoration: underline;
}

.ps-footer-inline-panel__content .policy__meta {
    color: #64748b;
    font-size: 0.95rem;
}

[data-theme="dark"] .ps-footer-inline-panel__content .policy__meta {
    color: #94a3b8;
}

body.ps-footer-inline-panel-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    .ps-footer-inline-panel__shell {
        top: var(--ps-footer-inline-panel-top, 0.75rem);
        right: 0.75rem;
        bottom: var(--ps-footer-inline-panel-bottom, 0.75rem);
        left: 0.75rem;
    }

    .ps-footer-inline-panel__surface {
        border-radius: 1rem;
    }

    .ps-footer-inline-panel__header,
    .ps-footer-inline-panel__body {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}
