/* Background gradasi + shape melayang ala gambar (Sangat Ringan) */
.marketplace-wrapper {
    background-color: #f0fafa;
    background-image: 
        radial-gradient(circle at 0% 0%, #dcf4f2 0%, transparent 40%),
        radial-gradient(circle at 100% 100%, #d0efeb 0%, transparent 40%),
        radial-gradient(circle at 100% 0%, #e2f9f8 0%, transparent 30%),
        radial-gradient(circle at 0% 100%, #e2f9f8 0%, transparent 30%),
        url("data:image/svg+xml,%3Csvg width='1000' height='500' viewBox='0 0 1000 500' preserveAspectRatio='xMidYMid slice' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='100' cy='100' r='10' fill='%2300897b' opacity='0.5'/%3E%3Ccircle cx='850' cy='150' r='15' fill='none' stroke='%23ffffff' stroke-width='4' opacity='0.9'/%3E%3Cpolygon points='900,50 920,80 880,80' fill='%2300897b' opacity='0.4'/%3E%3Crect x='150' y='400' width='15' height='15' fill='%2300897b' opacity='0.5' transform='rotate(25 150 400)'/%3E%3Ccircle cx='800' cy='420' r='12' fill='%2300897b' opacity='0.7'/%3E%3Ccircle cx='250' cy='200' r='6' fill='%2300897b' opacity='0.3'/%3E%3Cpolygon points='80,380 95,410 65,410' fill='%2300897b' opacity='0.4'/%3E%3C/svg%3E");
    background-size: cover, cover, cover, cover, cover;
    background-position: center;
    padding: 60px 0;
    position: relative;
}

.marketplace-header h3 {
    font-weight: 800;
    color: #1a1a1a;
    font-size: 2.2rem;
}

.acc-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    padding: 24px;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #f8f9fa;
    transition: transform 0.3s ease;
}
.acc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.platform-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    object-fit: cover;
}

.wishlist-btn {
    background: #f4f6f8;
    border: none;
    color: #a0a0a0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.2s;
}
.wishlist-btn:hover, .wishlist-btn.active {
    color: #ff4757;
    background: #ffeff1;
}

.acc-avatar {
    width: 95px;
    height: 95px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 16px auto;
    display: block;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.acc-username {
    font-size: 1.15rem;
    font-weight: 800;
    text-align: center;
    color: #000;
    margin-bottom: 20px;
}

.metric-value {
    font-weight: 800;
    font-size: 1.05rem;
    color: #1a1a1a;
    display: block;
    line-height: 1.2;
}
.metric-label {
    font-size: 0.75rem;
    color: #718093;
    font-weight: 500;
}

.acc-badge {
    background-color: #e0f2f1;
    color: #00897b;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    text-align: center;
    display: inline-block;
    margin: 0 auto 20px auto;
}

.acc-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: #00897b;
    text-align: center;
    margin-bottom: 24px;
    margin-top: auto;
}

.btn-teal {
    background-color: #00897b;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    padding: 10px 4px;
    text-align: center;
    text-decoration: none;
    transition: 0.2s;
    cursor: pointer;
}
.btn-teal:hover {
    background-color: #00695c;
    color: white;
}