.hsp-text-align {
    text-align: justify;
}
img {
    border-radius: 2px;
}

.heroes-img {
    height:250px;
    width:20%;
    border-radius:2px;
    border: 2px solid #e96b56;
}

@media only screen and (max-width: 600px) {
    .heroes-img {
        height:250px;
        width:100%;
        border-radius:2px;
        border: 2px solid #e96b56;
    }
}
.donate-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, #ff6b6b, #ff4757);
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    z-index: 1000;
}
.donate-btn:hover {
    background: linear-gradient(135deg, #ff4757, #e84118);
    transform: scale(1.1);
    color: white;
}
@keyframes gradientBG {
    0% {background-position: 0% 50%;}
    50% {background-position: 100% 50%;}
    100% {background-position: 0% 50%;}
}

.bank-card {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 25px 40px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(12px);
    color: white;
    max-width: 400px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.bank-card h3 {
    font-size: 1.1rem;
    margin: 12px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bank-card h3 span {
    font-weight: normal;
}

.copy-btn {
    margin-top: 15px;
    padding: 10px 20px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(90deg, #ff8a00, #e52e71);
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s ease;
}

.copy-btn:hover {
    transform: scale(1.05);
}

.icon {
    font-size: 1.3rem;
}