#socials {
    padding: 100px 20px;
    background: transparent;
    text-align: center;
    position: relative;
    z-index: 2;
}

.social-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Ambient glow behind card */
.glass-card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(var(--accent-rgb), 0.15) 0%, rgba(var(--accent-rgb), 0.05) 50%, transparent 70%);
    filter: blur(50px);
    z-index: 0;
    pointer-events: none;
}

/* Glassmorphism Card */
.glass-card {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 24px;
    padding: 50px 30px;
    max-width: 550px;
    margin: 0 auto;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.8),
        inset 0 1px 2px rgba(255, 255, 255, 0.15),
        0 0 40px rgba(var(--accent-rgb), 0.03);
}

.glass-card h2 {
    font-family: 'Sora', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 30px 0;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Buttons Container */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Glass Buttons */
.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding: 14px 32px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-family: 'Sora', sans-serif;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

/* LinkedIn Button Hover */
.social-btn.linkedin-btn:hover {
    border-color: #0077b5;
    color: #ffffff;
    background: rgba(0, 119, 181, 0.15);
    box-shadow: 
        0 0 25px rgba(0, 119, 181, 0.35),
        inset 0 1px 1px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.social-btn.linkedin-btn:hover .btn-icon {
    transform: scale(1.15) rotate(-5deg);
}

/* Instagram Button Hover */
.social-btn.instagram-btn:hover {
    border-color: #e1306c;
    color: #ffffff;
    background: rgba(225, 48, 108, 0.15);
    box-shadow: 
        0 0 25px rgba(225, 48, 108, 0.35),
        inset 0 1px 1px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.social-btn.instagram-btn:hover .btn-icon {
    transform: scale(1.15) rotate(5deg);
}

/* Copyright Bar (Sleek and transparent to blend in) */
.copyright-bar {
    width: 100%;
    padding: 30px 0;
    background: transparent;
    text-align: center;
    position: relative;
    z-index: 2;
}

.copyright-bar p {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.8rem;
    margin: 0;
    font-family: 'Sora', sans-serif;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.copyright-bar p:hover {
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
    #socials {
        padding: 60px 15px;
    }
    .glass-card {
        padding: 35px 20px;
        border-radius: 20px;
    }
    .glass-card h2 {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
    .social-btn {
        padding: 12px 24px;
        font-size: 0.88rem;
        width: 100%;
        justify-content: center;
        box-sizing: border-box;
    }
    .social-links {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    .glass-card-glow {
        width: 250px;
        height: 250px;
    }
}
