/* ==========================================================================
   SOCIAL LINKS SECTION (FOOTER BLOCK)
   ========================================================================== */

.social-links-section {
    padding: 60px 20px;
    background-color: var(--bg-dark);
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.social-links-section h3 {
    color: var(--text-white);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.social-icons-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-item {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted); /* Start with a muted color */
    text-decoration: none;
    transition: var(--transition-smooth); /* Use global transition */
}

/* Ensure the SVG fill inherits the text color */
.social-item svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Hover state for all social items */
.social-item:hover {
    transform: translateY(-5px);
    color: var(--text-white); /* Fill becomes white on hover */
}

/* Specific Brand Hover Colors */
.social-item.discord:hover   { background: var(--discord-color); }
.social-item.youtube:hover   { background: #FF0000; }
.social-item.x-twitter:hover { background: #000000; } /* Black background for X */
.social-item.instagram:hover { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%,#d6249f 60%,#285AEB 90%); }
.social-item.facebook:hover  { background: #1877F2; }
.social-item.tiktok:hover    { background: #000000; }

@media (max-width: 768px) {
    .social-links-section {
        padding: 40px 20px;
    }
    .social-item {
        width: 45px;
        height: 45px;
    }
    .social-item svg {
        width: 20px;
        height: 20px;
    }
}