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

body {
    font-family: 'Karla', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 20px;
}

.container {
    width: 100%;
    max-width: 680px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.profile-image {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-bottom: 16px;
}

.profile-image-placeholder {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    border: 3px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.profile-image-placeholder svg {
    color: #666;
    width: 48px;
    height: 48px;
}

.profile-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 4px;
}

.profile-subtitle {
    font-size: 14px;
    color: #666;
}

.links-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.link-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 16px 20px;
    text-decoration: none;
    color: #1a1a2e;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(0, 0, 0, 0.05);
}

.link-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    background: white;
}

.link-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.link-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: cover;
}

.link-icon-default {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.link-title {
    font-weight: 600;
    font-size: 16px;
}

.link-arrow {
    color: #999;
    padding: 8px;
}

.link-arrow:hover {
    color: #666;
}

.footer-links {
    display: flex;
    gap: 8px;
    font-size: 12px;
    color: #666;
    margin-top: auto;
    padding-top: 20px;
}

.footer-links a {
    color: #666;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

@media (max-width: 480px) {
    body {
        padding: 20px 16px;
    }
    
    .link-card {
        padding: 12px 16px;
    }
    
    .link-icon {
        width: 40px;
        height: 40px;
    }
    
    .link-icon-default {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}
