/* Follow Me Sticky Box */
.follow-me-box {
    position: fixed;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
    background: var(--accent);
    padding: 10px 5px 10px 5px;
    border-radius: 10px;
}

.follow-me-box a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-card);
    color: var(--text-primary);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1.2rem;
}

.follow-me-box a:hover {
    background: var(--accent);
    color: #fff;
    transform: scale(1.1);
    border: 2px solid var(--bg-card);
}

/* Hide on mobile */
@media (max-width: 768px) {
    .follow-me-box {
        right: 0;
        top: 50%;
        padding: 5px 2px 5px 2px;
    }

    .follow-me-box a {
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: var(--bg-card);
        color: var(--text-primary);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        text-decoration: none;
        font-size: 0.8rem;
    }
}