    .badge-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 20px;
        margin: 48px 0;
        padding: 24px;
        background: #1a1a1a;
        border-radius: 16px;
        border: 1px solid rgba(255,255,255,0.1);
    }

    .badge-list img {
        height: 32px;
        width: auto;
        opacity: 0.8;
        transition: opacity 0.2s;
    }

    .badge-list img:hover {
        opacity: 1;
    }