* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.8;
    z-index: -1;
}

.container {
    width: 100%;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    padding: 40px 24px;
    backdrop-filter: blur(10px);
}

.profile-section {
    text-align: center;
    margin-bottom: 32px;
}

.profile-picture {
    margin-bottom: 20px;
}

.profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    border: 4px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.profile-name {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.profile-bio {
    font-size: 14px;
    color: #666;
    font-weight: 400;
}

.links-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.link-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.link-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.link-button:active {
    transform: translateY(0);
}

.link-button.instagram:hover {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    border-color: transparent;
}

.link-button.clique:hover {
    background: linear-gradient(135deg, #89CFF0 0%, #5BA3D0 100%);
    color: white;
    border-color: transparent;
}

.link-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    margin-right: 12px;
}

.clique-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.link-text {
    flex: 1;
    text-align: left;
}

.arrow-icon {
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.link-button:hover .arrow-icon {
    opacity: 1;
}

.footer {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #e0e0e0;
}

.footer p {
    font-size: 12px;
    color: #999;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .container {
        padding: 32px 20px;
        border-radius: 20px;
    }

    .profile-name {
        font-size: 22px;
    }

    .link-button {
        padding: 14px 18px;
        font-size: 15px;
    }
}

