#funding-access-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9998;
}

#funding-access-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #121212;
    color: #e0e0e0;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    z-index: 9999;
    border-radius: 1rem;
    box-shadow: 0 0 20px #11E44F;
}

.funding-access-inner h2 {
    color: #11E44F;
    text-align: center;
    margin-top: 0;
}

.funding-access-inner p {
    text-align: center;
    margin: 1rem 0;
}

.funding-access-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.funding-access-btn {
    background: #11E44F;
    color: #121212;
    text-decoration: none;
    padding: 0.75rem;
    text-align: center;
    border-radius: 0.5rem;
    font-weight: bold;
    transition: background 0.3s;
}

.funding-access-btn:hover {
    background: #0fd641;
}
