/* ==========================================================================
   MCA-SL custom styles (auth forms, gated/"coming soon" content)
   ========================================================================== */

/* --- Auth / account cards ------------------------------------------------ */
.auth-card {
    background: #fff;
    border-radius: 10px;
    padding: 40px 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.auth-card h3,
.auth-card h4 {
    margin-bottom: 18px;
}

.auth-card .form-wrap {
    margin-bottom: 18px;
}

.button-block {
    display: block;
    width: 100%;
}

.button-link {
    background: none;
    border: 0;
    padding: 0;
    color: #e6252a;
    text-decoration: underline;
    cursor: pointer;
    font: inherit;
}

.offset-bottom-4 {
    margin-bottom: 30px;
}

.offset-top-3 {
    margin-top: 20px;
}

.offset-top-4 {
    margin-top: 30px;
}

/* --- Gated / "coming soon" content --------------------------------------- */
.gated-wrap {
    position: relative;
}

/* The blurred, non-interactive portion behind the overlay. */
.gated-blur {
    filter: blur(6px);
    -webkit-filter: blur(6px);
    pointer-events: none;
    user-select: none;
    opacity: 0.85;
}

/* Overlay CTA that sits on top of the blurred content. */
.gated-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.75) 45%, rgba(255, 255, 255, 0.95) 100%);
}

.gated-overlay .gated-title {
    font-size: 22px;
    margin-bottom: 6px;
    color: #2e6d84;
}

.gated-overlay .gated-text {
    color: #6c757d;
    margin-bottom: 18px;
    max-width: 420px;
}

.coming-soon-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 40px;
    background: #e6252a;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

/* --- Top donors leaderboard --------------------------------------------- */
.donor-row {
    display: flex;
    align-items: center;
    padding: 16px 22px;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 12px;
    background: #fff;
}

.donor-rank {
    font-family: "EB Garamond", serif;
    font-size: 26px;
    font-weight: 700;
    color: #2e6d84;
    width: 46px;
    flex: 0 0 46px;
}

.donor-row.donor-top .donor-rank {
    color: #e6252a;
}

.donor-name {
    flex: 1 1 auto;
    font-weight: 600;
}

.donor-amount {
    font-family: "IBM Plex Mono", "Work Sans", monospace;
    font-weight: 600;
    color: #2e6d84;
}
