.floating-social-buttons {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-social-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #222;
    color: #fff;
    font-size: 1.7rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
    transition: background 0.2s, color 0.2s, transform 0.2s;
    text-decoration: none;
}

.floating-social-buttons a:hover {
    background: #fff;
    color: #1da1f2;
    transform: scale(1.08);
}

.floating-social-buttons a.discord:hover {
    color: #5865F2;
}