/**
 * Social Icons in der unteren rechten Ecke
 */

.social-icons-dock {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    position: fixed;
    bottom: 140px; /* Über dem Player */
    right: 20px;
    z-index: 9999;
}

.social-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FF1C2E 0%, #C50333 100%);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 28, 46, 0.3);
}

.social-icon-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 28, 46, 0.5);
    background: linear-gradient(135deg, #ff3344 0%, #d91444 100%);
}

.social-icon-link i,
.social-icon-link svg {
    font-size: 24px;
    width: 24px;
    height: 24px;
}

/* Mobile: Icons etwas kleiner und näher an den Rand */
@media (max-width: 767px) {
    .social-icons-dock {
        bottom: 110px;
        right: 15px;
        gap: 8px;
    }
    
    .social-icon-link {
        width: 36px;
        height: 36px;
    }
    
    .social-icon-link i,
    .social-icon-link svg {
        font-size: 20px;
        width: 20px;
        height: 20px;
    }
}
