* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Inter', sans-serif;
    background: rgb(245, 245, 247);
    color: rgb(29, 29, 31);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 20px;
}

.card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 20px;
    padding: 40px 44px;
    max-width: 460px;
    width: 100%;
    text-align: center;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.logo { height: 38px; margin-bottom: 28px; }

.section-label {
    font-size: 10px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.35);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.status-title {
    font-size: 17px;
    font-weight: 600;
    color: rgb(29, 29, 31);
    margin-bottom: 6px;
}

.status-sub {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5);
    line-height: 1.65;
    margin-bottom: 24px;
}

.btn-row {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    height: 36px;
    padding: 0 22px;
    border-radius: 9px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    text-decoration: none;
    background: rgba(30, 30, 50, 0.88);
    color: rgba(255, 255, 255, 0.92);
    transition: background 0.18s;
}

.btn:hover { background: rgba(20, 20, 40, 0.96); }

.license {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.38);
    line-height: 1.65;
    margin-top: 16px;
}

.license a { color: rgba(0, 0, 0, 0.45); }

.divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.07);
    margin: 28px 0;
}

.donate-label {
    font-size: 10px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.3);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.donate-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.donate-row img.paypal-btn { height: 26px; }
.donate-row img.qr { width: 90px; height: 90px; border-radius: 8px; }

@media (max-width: 480px) {
    .card { padding: 28px 20px; }
}
