/* Social Media Platform Styling */
.social-tape,
.player-social {
    display: flex !important;
    gap: 0.5rem !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 0.5rem !important;
    border-radius: 8px !important;
    margin-top: 0.5rem !important;
    background: transparent !important;
    border: none !important;
    flex-wrap: wrap !important;
    min-height: 40px !important;
}

.social-tape .social-link,
.player-social .social-link {
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #fff !important;
    background: rgba(255, 255, 255, 0.1) !important;
    transition: all 0.3s ease !important;
    border: none !important;
    text-decoration: none !important;
    margin: 0 2px !important;
    position: relative !important;
    overflow: hidden !important;
}

.social-tape .social-link:hover,
.player-social .social-link:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2) !important;
    background: #01BE6E !important;
    color: #000 !important;
}

/* Platform-specific colors */
.social-tape .social-link.twitter:hover,
.social-tape .social-link.x:hover,
.player-social .social-link.twitter:hover,
.player-social .social-link.x:hover {
    background: #000000 !important;
    color: #fff !important;
}

.social-tape .social-link.instagram:hover,
.player-social .social-link.instagram:hover {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D) !important;
    color: #fff !important;
}

.social-tape .social-link.twitch:hover,
.player-social .social-link.twitch:hover {
    background: #6441A4 !important;
    color: #fff !important;
}

.social-tape .social-link.youtube:hover,
.player-social .social-link.youtube:hover {
    background: #FF0000 !important;
    color: #fff !important;
}

.social-tape .social-link.tiktok:hover,
.player-social .social-link.tiktok:hover {
    background: #000000 !important;
    color: #fff !important;
}

.social-tape .social-link.facebook:hover,
.player-social .social-link.facebook:hover {
    background: #1877F2 !important;
    color: #fff !important;
}

.social-tape .social-link.kick:hover,
.player-social .social-link.kick:hover {
    background: #53FC18 !important;
    color: #000 !important;
}

/* Social link icons */
.social-tape .social-link img,
.player-social .social-link img {
    width: 16px !important;
    height: 16px !important;
    object-fit: contain !important;
    transition: all 0.3s ease !important;
}

.social-tape .social-link:hover img,
.player-social .social-link:hover img {
    transform: scale(1.1) !important;
}

.social-tape .social-link i,
.player-social .social-link i {
    font-size: 16px !important;
    transition: all 0.3s ease !important;
}

.social-tape .social-link:hover i,
.player-social .social-link:hover i {
    transform: scale(1.1) !important;
}

/* RTL Support */
.rtl .social-tape {
    flex-direction: row-reverse !important;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .social-tape,
    .player-social {
        gap: 0.3rem !important;
        padding: 0.3rem !important;
    }
    
    .social-tape .social-link,
    .player-social .social-link {
        width: 28px !important;
        height: 28px !important;
    }
    
    .social-tape .social-link img,
    .player-social .social-link img,
    .social-tape .social-link i,
    .player-social .social-link i {
        width: 14px !important;
        height: 14px !important;
        font-size: 14px !important;
    }
} 