/* Improved Social Icon Styles */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link svg {
    width: 1.5rem;
    height: 1.5rem;
    position: relative;
    z-index: 2;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-link:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: currentColor;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.social-link:hover:before {
    opacity: 0.15;
}

/* Brand-specific colors */
.social-link.discord {
    color: #5865f2;
}
.social-link.twitter {
    color: #1da1f2;
}
.social-link.youtube {
    color: #ff0000;
}
.social-link.instagram {
    color: #e1306c;
}
.social-link.tiktok {
    color: #69c9d0;
}

/* Apply brand colors immediately instead of only on hover */
.social-link.discord svg,
.social-link.twitter svg,
.social-link.youtube svg,
.social-link.instagram svg,
.social-link.tiktok svg {
    fill: currentColor;
}

/* Enhanced hover effects */
.social-link:hover {
    color: white;
}
.social-link.discord:hover {
    background-color: #5865f2;
}
.social-link.twitter:hover {
    background-color: #1da1f2;
}
.social-link.youtube:hover {
    background-color: #ff0000;
}
.social-link.instagram:hover {
    background-color: #e1306c;
}
.social-link.tiktok:hover {
    background-color: #000000;
}