/* ============= PATREON ============= */

.patreon-wrapper {
    width: 100vw;
    display: flex;
    justify-content: center;
    margin: 20px 0 30px 0;
    padding: 0;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.patreon-btn {
    display: inline-block;
    padding: 12px 30px;
    background: rgba(0,0,0,0.85);
    color: #48ff00;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 2px;
    text-decoration: none;
    border: 1px dotted #48ff00;
    transition: all 0.3s ease;
}

.patreon-btn:hover {
    background: rgba(170,0,255,0.08);
    border-color: #aa00ff;
    color: #aa00ff;
    transform: scale(1.03);
}