/* ========================================
   SHARED SOCIAL LINKS COMPONENT
   ======================================== */

.social-links {
    display: flex;
    align-items: center;
    gap: 14px;
}

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(18, 18, 31, 0.65);
    border: 1px solid rgba(96, 165, 250, 0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--text-muted);
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 15px rgba(56, 189, 248, 0.15);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                background 0.35s ease,
                color 0.35s ease,
                border-color 0.35s ease,
                box-shadow 0.35s ease;
    text-decoration: none;
    flex-shrink: 0;
}

.social-icon svg {
    display: block;
    fill: currentColor;
    transition: fill 0.35s ease;
}

/* Base Hover Motion & Neon Glows */
.social-icon:hover {
    transform: translateY(-4px) scale(1.08);
}

/* Discord Hover Effect (#5865F2) */
.social-icon.social-discord:hover {
    color: #5865F2;
    background: rgba(88, 101, 242, 0.16);
    border-color: rgba(88, 101, 242, 0.8);
    box-shadow: 0 0 25px rgba(88, 101, 242, 0.6),
                0 0 45px rgba(88, 101, 242, 0.3);
}

/* X (Twitter) Hover Effect (#ffffff) */
.social-icon.social-x:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.6),
                0 0 45px rgba(255, 255, 255, 0.3);
}

/* Roblox Hover Effect (#FF4655) */
.social-icon.social-roblox:hover {
    color: #FF4655;
    background: rgba(255, 70, 85, 0.16);
    border-color: rgba(255, 70, 85, 0.8);
    box-shadow: 0 0 25px rgba(255, 70, 85, 0.6),
                0 0 45px rgba(255, 70, 85, 0.3);
}

/* ========================================
   HERO HORIZONTAL FLOATING SOCIAL LINKS (52x52px)
   ======================================== */

.hero-social-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 24px;
    margin-bottom: 0;
    z-index: 15;
    white-space: nowrap;
    animation: heroFloatMobile 6s ease-in-out infinite alternate;
}

.hero-social-links .social-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
}

.hero-social-links .social-icon:hover {
    transform: translateY(-4px) scale(1.08) !important;
}

@media (max-width: 1024px) {
    .hero-social-links {
        gap: 18px;
        margin-top: 20px;
    }
}

@keyframes heroFloatMobile {
    0% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-6px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .social-icon,
    .hero-social-links {
        animation: none !important;
        transition: none !important;
    }
}
