/**
 * Social Media Floating Icons
 * Displays social media links on the left side of the page
 */

.social-media-float {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 22px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateX(-5px) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Discord */
.social-icon.discord:hover {
    background: rgba(88, 101, 242, 0.3);
    border-color: #5865F2;
    color: #5865F2;
}

/* Twitter */
.social-icon.twitter:hover {
    background: rgba(29, 161, 242, 0.3);
    border-color: #1DA1F2;
    color: #1DA1F2;
}

/* YouTube */
.social-icon.youtube:hover {
    background: rgba(255, 0, 0, 0.3);
    border-color: #FF0000;
    color: #FF0000;
}

/* Instagram */
.social-icon.instagram:hover {
    background: linear-gradient(45deg, rgba(225, 48, 108, 0.3), rgba(193, 53, 132, 0.3), rgba(131, 58, 180, 0.3));
    border-color: #E1306C;
    color: #E1306C;
}

/* TikTok */
.social-icon.tiktok:hover {
    background: rgba(0, 0, 0, 0.3);
    border-color: #00f2ea;
    color: #00f2ea;
}

/* Responsive Design */

/* Hide on mobile to avoid conflict with bottom nav */
@media (max-width: 768px) {
    .social-media-float {
        display: none;
    }
}

/* Adjust position on tablets */
@media (min-width: 769px) and (max-width: 1024px) {
    .social-media-float {
        left: 10px;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}
