.sk-linker-frontend {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.sk-profile-picture {
    text-align: center;
    margin-bottom: 20px;
}

.sk-profile-picture img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.sk-profile-name {
    text-align: center;
    margin: 0 0 10px 0;
    font-size: 28px;
    font-weight: 700;
    color: #333;
}

.sk-profile-bio {
    text-align: center;
    margin: 0 0 30px 0;
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

.sk-links-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sk-link-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    text-decoration: none;
    color: white;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border: none;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
}

.sk-link-button.sk-visible {
    opacity: 1;
    transform: translateY(0);
}

.sk-link-button.sk-clicking {
    transform: scale(0.95) !important;
}

.sk-link-button.sk-visible:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    text-decoration: none;
    color: white;
}

.sk-link-button.sk-visible:active {
    transform: translateY(0);
}

.sk-link-button i {
    font-size: 20px;
}

.sk-link-button span {
    flex: 1;
    text-align: center;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .sk-linker-frontend {
        padding: 15px;
        max-width: 100%;
    }
    
    .sk-profile-picture img {
        width: 100px;
        height: 100px;
    }
    
    .sk-profile-name {
        font-size: 24px;
    }
    
    .sk-profile-bio {
        font-size: 14px;
    }
    
    .sk-link-button {
        padding: 14px 20px;
        font-size: 15px;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .sk-linker-frontend {
        padding: 10px;
    }
    
    .sk-profile-picture img {
        width: 80px;
        height: 80px;
    }
    
    .sk-profile-name {
        font-size: 20px;
    }
    
    .sk-link-button {
        padding: 12px 18px;
        font-size: 14px;
        gap: 10px;
    }
    
    .sk-link-button i {
        font-size: 18px;
    }
}

