.support-note {
    box-sizing: border-box;
    max-width: 100%;
    min-width: 0;
    margin-top: 20px;
    padding: 14px 16px;
    border: 1px solid rgba(91, 214, 228, 0.2);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(91, 214, 228, 0.075), rgba(212, 90, 191, 0.045)),
        rgba(5, 10, 22, 0.58);
    color: var(--muted, var(--on-surface-muted, var(--color-muted, #9eb3be)));
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
}

.support-note p {
    min-width: 0;
    margin: 0;
    overflow-wrap: anywhere;
}

.support-note__link {
    max-width: 100%;
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
    color: var(--cyan, var(--primary, var(--color-info, #5bd6e4)));
    background: transparent;
    font: inherit;
    font-weight: 900;
    cursor: pointer;
    text-decoration: none;
    text-shadow: 0 0 10px rgba(91, 214, 228, 0.24);
    transition: color 160ms ease, text-shadow 160ms ease;
    overflow-wrap: anywhere;
}

.support-note__link:hover {
    color: var(--text, var(--on-surface, #f0fbff));
    text-shadow:
        0 0 12px rgba(91, 214, 228, 0.42),
        0 0 18px rgba(212, 90, 191, 0.18);
}

.ad-support-strip {
    box-sizing: border-box;
    min-width: 0;
    margin-bottom: 18px;
}

.ad-support-strip__slot {
    min-height: 0;
}

.ad-support-strip__fallback {
    min-width: 0;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border: 1px solid rgba(91, 214, 228, 0.28);
    border-left: 4px solid rgba(91, 214, 228, 0.78);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(91, 214, 228, 0.105), rgba(212, 90, 191, 0.055)),
        rgba(5, 10, 22, 0.52);
    color: var(--muted, var(--on-surface-muted, var(--color-muted, #9eb3be)));
    box-shadow:
        0 0 18px rgba(91, 214, 228, 0.08),
        0 12px 28px rgba(0, 0, 0, 0.16);
}

.ad-support-strip__fallback[hidden] {
    display: none;
}

.ad-support-strip__fallback p {
    min-width: 0;
    margin: 0;
    overflow-wrap: anywhere;
}

.ad-support-strip__button {
    min-height: 38px;
    padding: 8px 14px;
    color: var(--text, #f0fbff);
    border: 1px solid rgba(91, 214, 228, 0.28);
    border-radius: 6px;
    background: rgba(91, 214, 228, 0.1);
    font: inherit;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
}

.ad-support-strip__button:hover {
    border-color: rgba(91, 214, 228, 0.42);
    background: rgba(91, 214, 228, 0.16);
}

@media (max-width: 520px) {
    .ad-support-strip__fallback {
        align-items: stretch;
        flex-direction: column;
        text-align: center;
    }
}

.donate-dialog {
    box-sizing: border-box;
    max-width: calc(100% - 24px);
    width: min(460px, calc(100% - 32px));
    padding: 0;
    border: 1px solid rgba(91, 214, 228, 0.32);
    border-radius: 8px;
    color: var(--text, var(--on-surface, #f0fbff));
    background:
        linear-gradient(135deg, rgba(91, 214, 228, 0.12), rgba(212, 90, 191, 0.08)),
        rgba(6, 11, 24, 0.96);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.56);
}

.donate-dialog::backdrop {
    background: rgba(2, 5, 12, 0.72);
    backdrop-filter: blur(6px);
}

.donate-dialog__panel {
    min-width: 0;
    padding: 20px;
}

.donate-dialog__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
}

.donate-dialog h2 {
    margin: 0;
    color: var(--cyan, var(--primary, #5bd6e4));
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.donate-dialog p {
    margin: 0 0 10px;
    color: var(--muted, var(--on-surface-muted, #9eb3be));
}

.donate-dialog__close,
.donate-dialog__button {
    border: 1px solid rgba(91, 214, 228, 0.32);
    border-radius: 8px;
    color: var(--text, #f0fbff);
    background: rgba(91, 214, 228, 0.08);
    cursor: pointer;
}

.donate-dialog__close {
    width: 34px;
    height: 34px;
    border-color: rgba(255, 255, 255, 0.92);
    color: #ffffff;
    background: #d92f45;
    font-size: 1rem;
    font-weight: 900;
    box-shadow: 0 0 14px rgba(217, 47, 69, 0.32);
    transition: background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.donate-dialog__close:hover {
    background: #f0445c;
    box-shadow: 0 0 18px rgba(240, 68, 92, 0.44);
    transform: translateY(-1px);
}

.donate-dialog__actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 18px;
}

.donate-dialog__button {
    min-width: 86px;
    padding: 10px 16px;
    font-weight: 900;
}
