.psl-social-icons {
    max-width: 800px;
    margin: 50px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    justify-items: center;
    font-family: 'Poppins', 'Inter', sans-serif;
}
.psl-social-icons a {
    display: flex;
    align-items: center;
    width: 100%;
    background: rgba(255,255,255,0.1);
    backdrop-filter: saturate(120%) blur(12px);
    border-radius: 16px;
    padding: 14px 24px;
    color: #000;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}
.psl-social-icons a i {
    font-size: 24px;
    min-width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 12px;
    background: rgba(0,0,0,0.1);
    color: #000;
    margin-right: 20px;
    transition: color 0.3s ease, background 0.3s ease;
}
.psl-social-icons a::before {
    content: '';
    display: block;
    width: 2px;
    height: 60%;
    background: rgba(0,0,0,0.15);
    margin-right: 20px;
    border-radius: 1px;
}
.psl-social-icons a span {
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0.03em;
    color: #000;
    flex-grow: 1;
    transition: color 0.3s ease;
}
.psl-social-icons a:hover, .psl-social-icons a:focus {
    background: #000;
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}
.psl-social-icons a:hover i, .psl-social-icons a:focus i {
    background: #fff;
    color: #000;
}
.psl-social-icons a:hover::before, .psl-social-icons a:focus::before {
    background: #fff;
}
.psl-social-icons a:hover span, .psl-social-icons a:focus span {
    color: #fff;
}
.psl-social-icons a:focus-visible {
    outline: 3px solid #00aaff;
    outline-offset: 3px;
}
@media (max-width: 480px) {
    .psl-social-icons {
        max-width: 90vw;
    }
    .psl-social-icons a {
        padding: 12px 18px;
    }
    .psl-social-icons a span {
        font-size: 16px;
    }
}