/* =====================================================
   RPM Support & Funding — support.css
   Dark theme, gold accents, matching RPM brand
   ===================================================== */

.support-hero {
    background: linear-gradient(135deg, #1a0a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 60px 24px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.support-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(212,175,55,0.08) 0%, transparent 60%);
    animation: heroGlow 8s ease-in-out infinite alternate;
}
@keyframes heroGlow {
    from { transform: translate(-10%, -10%); }
    to { transform: translate(10%, 10%); }
}
.support-hero h1 {
    font-size: 2.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #d4af37, #f5d47a, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 12px;
    position: relative;
}
.support-hero p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    max-width: 560px;
    margin: 0 auto;
    position: relative;
}

.support-section {
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
}
.support-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #d4af37;
    margin: 0 0 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(212,175,55,0.2);
}

/* Campaign Cards */
.campaign-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
    border: 1px solid rgba(212,175,55,0.15);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.campaign-card:hover {
    border-color: rgba(212,175,55,0.4);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.campaign-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 12px;
}
.campaign-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}
.campaign-meta {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin: 4px 0 0;
}
.campaign-badge {
    background: rgba(212,175,55,0.15);
    color: #d4af37;
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

/* Progress Bar */
.progress-container {
    margin: 16px 0;
}
.progress-bar-track {
    width: 100%;
    height: 10px;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 8px;
}
.progress-bar-fill {
    height: 100%;
    border-radius: 10px;
    width: 0;
    transition: width 1.5s cubic-bezier(0.4,0,0.2,1);
}
.progress-bar-fill.p0  { background: linear-gradient(90deg, #e53e3e, #ed8936); }
.progress-bar-fill.p25 { background: linear-gradient(90deg, #ed8936, #ecc94b); box-shadow: 0 0 10px rgba(237,137,54,0.4); }
.progress-bar-fill.p50 { background: linear-gradient(90deg, #ecc94b, #d4af37); box-shadow: 0 0 12px rgba(212,175,55,0.5); }
.progress-bar-fill.p75 { background: linear-gradient(90deg, #d4af37, #48bb78); box-shadow: 0 0 14px rgba(72,187,120,0.4); animation: excitedPulse 1.5s ease-in-out infinite; }
.progress-bar-fill.p100 { background: linear-gradient(90deg, #48bb78, #38a169); box-shadow: 0 0 16px rgba(72,187,120,0.6); }
@keyframes excitedPulse {
    0%,100% { box-shadow: 0 0 14px rgba(72,187,120,0.4); }
    50% { box-shadow: 0 0 24px rgba(72,187,120,0.8); }
}
.progress-stats {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
}
.progress-raised { color: #d4af37; font-weight: 600; }
.progress-goal { color: rgba(255,255,255,0.5); }
.progress-pct { color: #48bb78; font-weight: 700; }

/* Amount Buttons */
.amount-picker {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 16px 0;
}
.amount-btn {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    border-radius: 8px;
    padding: 10px 18px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.2s;
}
.amount-btn:hover, .amount-btn.selected {
    background: rgba(212,175,55,0.2);
    border-color: #d4af37;
    color: #d4af37;
}
.amount-custom {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 0.95rem;
    width: 100px;
    outline: none;
    transition: border-color 0.2s;
}
.amount-custom:focus {
    border-color: #d4af37;
}

/* Support Button */
.btn-support {
    background: linear-gradient(135deg, #d4af37, #b8972e);
    color: #1a0a2e;
    border: none;
    border-radius: 10px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
    margin-top: 8px;
    letter-spacing: 0.02em;
}
.btn-support:hover {
    background: linear-gradient(135deg, #f5d47a, #d4af37);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(212,175,55,0.4);
}
.btn-support:active { transform: translateY(0); }
.btn-support:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

/* General Fund Card */
.general-fund-card {
    background: linear-gradient(135deg, rgba(212,175,55,0.08), rgba(212,175,55,0.02));
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.general-fund-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}
.general-fund-header {
    margin-bottom: 8px;
}
.general-fund-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #d4af37;
    margin: 0;
    letter-spacing: -0.01em;
}
.general-fund-desc {
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    margin: 0 0 20px;
    font-size: 0.95rem;
}
.general-fund-card .amount-picker {
    justify-content: center;
    margin: 20px 0;
}
.general-fund-card .custom-amount {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 0.95rem;
    width: 100px;
    outline: none;
    transition: border-color 0.2s;
}
.general-fund-card .custom-amount:focus {
    border-color: #d4af37;
}
.general-fund-card .custom-amount::placeholder {
    color: rgba(255,255,255,0.3);
}
.support-btn {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37, #b8960c);
    color: #0d0d0d;
    border: none;
    border-radius: 10px;
    padding: 14px 36px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
    margin-top: 8px;
}
.support-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212,175,55,0.3);
    background: linear-gradient(135deg, #e0be4a, #d4af37);
}
.support-btn:active {
    transform: translateY(0);
}

/* Fee info */
.fee-info {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    margin-top: 8px;
    text-align: center;
}
.fee-info .rpm-receives {
    color: #48bb78;
    font-weight: 600;
}

/* Modal */
.support-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(4px);
}
.support-modal-overlay.active { display: flex; }
.support-modal {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: 20px;
    padding: 32px;
    max-width: 480px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    position: relative;
    animation: modalIn 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.support-modal::-webkit-scrollbar { display: none; }
@keyframes modalIn {
    from { opacity: 0; transform: scale(0.9) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
    font-size: 1.1rem;
    line-height: 32px;
    text-align: center;
    transition: background 0.2s;
}
.modal-close:hover { background: rgba(255,255,255,0.2); }
.modal-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #d4af37;
    margin: 0 0 20px;
    padding-right: 40px;
}

/* Checkbox options */
.check-option {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
    cursor: pointer;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}
.check-option input[type=checkbox] { accent-color: #d4af37; width: 16px; height: 16px; }

/* Text fields */
.support-field {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    color: #fff;
    padding: 10px 14px;
    font-size: 0.95rem;
    box-sizing: border-box;
    margin: 8px 0;
    outline: none;
    transition: border-color 0.2s;
}
.support-field:focus { border-color: #d4af37; }
.support-field::placeholder { color: rgba(255,255,255,0.3); }

/* Stripe element container */
#stripe-element-container {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    padding: 14px;
    margin: 12px 0;
}

/* Success state */
.modal-success {
    text-align: center;
    padding: 20px 0;
}
.success-emoji { font-size: 2.5rem; margin-bottom: 12px; }
.success-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #48bb78;
    margin: 0 0 8px;
}
.success-amount {
    color: rgba(255,255,255,0.7);
    margin: 0 0 20px;
}
.share-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 16px 0;
}
.share-btn {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    border-radius: 8px;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.2s;
}
.share-btn:hover {
    background: rgba(212,175,55,0.15);
    border-color: #d4af37;
    color: #d4af37;
}

/* Donor wall */
.donor-wall {
    margin-top: 20px;
}
.donor-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 0.9rem;
}
.donor-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af37, #b8972e);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #1a0a2e;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.donor-name { color: #fff; font-weight: 600; }
.donor-message { color: rgba(255,255,255,0.5); font-size: 0.8rem; }
.donor-amount { margin-left: auto; color: #d4af37; font-weight: 600; }

/* Confetti canvas */
#confetti-canvas {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    display: none;
}

/* Notification banner (funded event host) */
.funding-banner {
    background: linear-gradient(135deg, rgba(72,187,120,0.15), rgba(72,187,120,0.05));
    border: 1px solid rgba(72,187,120,0.3);
    border-radius: 12px;
    padding: 16px 20px;
    margin: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.funding-banner-text { color: #fff; }
.funding-banner-text strong { color: #48bb78; }
.btn-schedule {
    background: #48bb78;
    color: #1a0a2e;
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}
.btn-schedule:hover { background: #38a169; }

/* Loading skeleton */
.skeleton {
    background: linear-gradient(90deg, rgba(255,255,255,0.04) 25%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.04) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 8px;
    height: 20px;
    margin: 8px 0;
}
@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Modal step label */
.modal-step-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.4);
    margin: 16px 0 8px;
}

/* Error message */
.support-error {
    background: rgba(229,62,62,0.15);
    border: 1px solid rgba(229,62,62,0.3);
    border-radius: 8px;
    color: #fc8181;
    padding: 10px 14px;
    font-size: 0.88rem;
    margin: 8px 0;
    display: none;
}
.support-error.visible { display: block; }

@media (max-width: 600px) {
    .support-hero h1 { font-size: 1.8rem; }
    .support-modal { padding: 24px 20px; }
    .amount-picker { gap: 6px; }
    .amount-btn { padding: 8px 14px; font-size: 0.9rem; }
}

/* ═══════════════════════════════════════════════════
   CLOVER PATRON SECTION
   ═══════════════════════════════════════════════════ */

#patron-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, transparent, rgba(212,175,55,.04), transparent);
}

.patron-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.patron-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(212,175,55,.2);
    border-radius: 20px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition: border-color .3s, transform .3s;
    position: relative;
    overflow: hidden;
}
.patron-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, #D4AF37, #9b6b2a, #D4AF37);
    opacity: 0;
    transition: opacity .3s;
}
.patron-card:hover {
    border-color: rgba(212,175,55,.5);
    transform: translateY(-2px);
}
.patron-card:hover::before { opacity: 1; }

.patron-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.patron-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #D4AF37, #9b6b2a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 800;
    color: #0a0a0a;
    flex-shrink: 0;
}
.patron-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #f0f0f0;
    margin-bottom: .15rem;
}
.patron-meta {
    font-size: .8rem;
    color: #888;
    line-height: 1.4;
}

.patron-tiers {
    display: flex;
    flex-direction: column;
    gap: .6rem;
}
.patron-tier {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    padding: .85rem 1rem;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px;
    transition: border-color .2s, background .2s;
    cursor: pointer;
}
.patron-tier:hover {
    border-color: rgba(212,175,55,.35);
    background: rgba(212,175,55,.06);
}
.tier-left { flex: 1; min-width: 0; }
.tier-name {
    font-size: .9rem;
    font-weight: 700;
    color: #f0f0f0;
    margin-bottom: .1rem;
}
.tier-desc {
    font-size: .75rem;
    color: #888;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.tier-tidbits {
    font-size: .72rem;
    color: #D4AF37;
    margin-top: .2rem;
}
.tier-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: .3rem;
    flex-shrink: 0;
}
.tier-price {
    font-size: 1rem;
    font-weight: 800;
    color: #D4AF37;
}
.tier-price span {
    font-size: .72rem;
    font-weight: 400;
    color: #888;
}
.btn-tier-support {
    background: linear-gradient(135deg, #D4AF37, #9b6b2a);
    color: #0a0a0a;
    border: none;
    border-radius: 8px;
    padding: .3rem .85rem;
    font-size: .78rem;
    font-weight: 700;
    cursor: pointer;
    transition: opacity .2s, transform .15s;
}
.btn-tier-support:hover { opacity: .85; transform: scale(1.04); }

.patron-btn {
    width: 100%;
    text-align: center;
    margin-top: .25rem;
    background: transparent;
    border: 1px solid rgba(212,175,55,.4);
    color: #D4AF37;
}
.patron-btn:hover {
    background: rgba(212,175,55,.08);
    border-color: #D4AF37;
}

.patron-no-tiers {
    font-size: .82rem;
    color: #666;
    text-align: center;
    padding: .5rem 0;
}

.section-label-wrap {
    text-align: center;
    margin-bottom: .5rem;
}
.section-title {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 800;
    color: #f0f0f0;
    margin: .5rem 0;
    line-height: 1.2;
}
.section-subtitle {
    color: #888;
    font-size: .95rem;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ==============================================
   COMMUNITY NEEDS BOARD
   ============================================== */

#needs-section { padding: 4.5rem 0; }

.needs-filter-bar {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 1.75rem;
}
.needs-filter-btn {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    color: #888;
    border-radius: 99px;
    padding: .35rem 1rem;
    font-size: .8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
}
.needs-filter-btn.active,
.needs-filter-btn:hover {
    background: rgba(212,175,55,.12);
    border-color: rgba(212,175,55,.4);
    color: #D4AF37;
}

.needs-board {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 1.25rem;
}
.needs-empty {
    text-align: center;
    color: #666;
    padding: 3rem;
    grid-column: 1/-1;
}

.need-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-left: 3px solid rgba(255,255,255,.1);
    border-radius: 14px;
    padding: 1.1rem 1.1rem 1.1rem 1rem;
    display: flex;
    flex-direction: column;
    gap: .6rem;
    transition: border-color .2s, background .2s;
}
.need-card:hover { background: rgba(255,255,255,.06); }
.need-pri-urgent { border-left-color: #EF4444; }
.need-pri-high   { border-left-color: #F59E0B; }
.need-pri-normal { border-left-color: rgba(212,175,55,.3); }
.need-full       { opacity: .6; }

.need-card-top {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
}
.need-cat-icon { font-size: 1.3rem; flex-shrink: 0; line-height: 1; }
.need-info { flex: 1; min-width: 0; }
.need-title {
    font-size: .95rem;
    font-weight: 700;
    color: #f0f0f0;
    margin-bottom: .15rem;
}
.need-desc {
    font-size: .78rem;
    color: #888;
    line-height: 1.4;
}
.need-urgent-badge {
    flex-shrink: 0;
    font-size: .65rem;
    font-weight: 800;
    text-transform: uppercase;
    background: rgba(239,68,68,.15);
    color: #F87171;
    border: 1px solid rgba(239,68,68,.3);
    border-radius: 99px;
    padding: .15rem .5rem;
    letter-spacing: .06em;
}
.need-fill-row {
    display: flex;
    align-items: center;
    gap: .6rem;
}
.need-fill-track {
    flex: 1;
    height: 5px;
    background: rgba(255,255,255,.08);
    border-radius: 5px;
    overflow: hidden;
}
.need-fill-bar {
    height: 100%;
    background: linear-gradient(90deg, #48bb78, #22c55e);
    border-radius: 5px;
    transition: width .8s ease;
}
.need-fill-label { font-size: .75rem; color: #666; white-space: nowrap; }
.need-bounty { font-size: .78rem; color: #D4AF37; }
.need-claims {
    display: flex;
    flex-wrap: wrap;
    gap: .3rem;
}
.need-claim-chip {
    font-size: .72rem;
    background: rgba(72,187,120,.1);
    color: #48bb78;
    border: 1px solid rgba(72,187,120,.2);
    border-radius: 99px;
    padding: .1rem .5rem;
}
.btn-claim {
    background: transparent;
    border: 1px solid rgba(212,175,55,.4);
    color: #D4AF37;
    border-radius: 10px;
    padding: .45rem .85rem;
    font-size: .82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
    align-self: flex-start;
}
.btn-claim:hover {
    background: rgba(212,175,55,.1);
    border-color: #D4AF37;
}
.need-full-label {
    font-size: .8rem;
    color: #48bb78;
    font-weight: 600;
}

/* Claim modal */
.pub-modal-bg {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.75);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    padding: 1rem;
}
.pub-modal-bg[style*="flex"] { display: flex; }
.pub-modal {
    background: #141414;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    padding: 1.75rem;
    width: 100%;
    max-width: 460px;
    position: relative;
}
.pub-modal-close {
    position: absolute;
    top: 1rem; right: 1rem;
    background: none;
    border: none;
    color: #555;
    font-size: 1.6rem;
    cursor: pointer;
    line-height: 1;
}
.pub-modal-close:hover { color: #ccc; }
.pub-modal-title { color: #D4AF37; margin: 0 0 .5rem; font-size: 1.1rem; font-weight: 700; }
.pub-modal-sub { color: #888; font-size: .9rem; margin: 0 0 1rem; }
.pub-modal-note { color: #F59E0B; font-size: .82rem; margin-bottom: .75rem; }
.f-group { margin-bottom: .85rem; }
.f-group label { display: block; font-size: .75rem; color: #888; text-transform: uppercase; letter-spacing: .06em; margin-bottom: .3rem; font-weight: 600; }
.f-group input, .f-group textarea {
    width: 100%;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 8px;
    color: #e8e8e8;
    padding: .5rem .75rem;
    font-size: .875rem;
    box-sizing: border-box;
    font-family: inherit;
    transition: border-color .2s;
}
.f-group input:focus, .f-group textarea:focus { border-color: #D4AF37; outline: none; }
.f-group textarea { min-height: 70px; resize: vertical; }
.modal-btn-row { margin-top: 1.25rem; }
.btn-claim-submit {
    background: linear-gradient(135deg, #D4AF37, #9b6b2a);
    color: #0a0a0a;
    border: none;
    border-radius: 10px;
    padding: .65rem 1.5rem;
    font-size: .9rem;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    transition: opacity .2s;
}
.btn-claim-submit:hover { opacity: .88; }
.btn-claim-submit:disabled { opacity: .5; cursor: not-allowed; }

/* Claim toast */
.claim-toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: #1a1a1a;
    border: 1px solid rgba(72,187,120,.4);
    color: #48bb78;
    border-radius: 12px;
    padding: .85rem 1.5rem;
    font-size: .9rem;
    font-weight: 600;
    z-index: 99999;
    box-shadow: 0 4px 24px rgba(0,0,0,.4);
    animation: toastSlideUp .4s ease;
}
@keyframes toastSlideUp {
    from { opacity: 0; transform: translateX(-50%) translateY(20px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}
