body {
    background-color: #000;
    color: #00ff00;
    font-family: "Courier New", Courier, monospace;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.container {
    text-align: center;
}

.hacker-title {
    font-size: 2em;
    margin-bottom: 20px;
}

.percentage p {
    font-size: 1.5em;
    margin: 10px 0;
}

.progress-bar {
    width: 80%;
    height: 20px;
    background-color: #333;
    border: 2px solid #00ff00;
    margin: 0 auto 20px auto;
    position: relative;
}

#progress-fill {
    height: 100%;
    width: 0;
    background-color: #00ff00;
    transition: width 0.3s;
}

#support-btn {
    background: none;
    color: #00ff00;
    font-size: 1.2em;
    padding: 10px 20px;
    border: 2px solid #00ff00;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}

#support-btn:disabled {
    color: gray;
    border-color: gray;
    cursor: not-allowed;
}

#support-btn:hover:enabled {
    background: #00ff00;
    color: #000;
}

#money-splash {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.money {
    position: absolute;
    font-size: 1.5em;
    color: gold;
    animation: fall 1s ease-out forwards;
}

@keyframes fall {
    0% {
        opacity: 1;
        transform: translateY(-50px) rotate(0deg);
    }
    100% {
        opacity: 0;
        transform: translateY(300px) rotate(360deg);
    }
}
