.glass-array {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1.5rem;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    background: rgba(232, 129, 127, 0.1);
    border-radius: 50px;
    border: 1px solid rgba(232, 129, 127, 0.18);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    pointer-events: auto;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-array:hover {
    background: rgba(232, 129, 127, 0.15);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3);
}

.glass-array-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    transition: all 0.3s ease;
    color: #e8817f;
    text-decoration: none;
    font-size: 1.2rem;
}

.glass-array-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px) scale(1.1);
    color: #fff;
}

.glass-array-item svg,
.glass-array-item img {
    width: 60%;
    height: 60%;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease, filter 0.3s ease;
}

.social-group {
    text-align: center;
}

.social-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    /* margin-top: 0.5rem; */
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.social-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}
