* {
    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;
}

.container {
    max-width: 680px;
    width: 100%;
    animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Profile Section */
.profile {
    text-align: center;
    margin-bottom: 32px;
}

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

.profile-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 5px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.profile-image img:hover {
    transform: scale(1.05);
}

.profile-name {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.profile-bio {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Links Section */
.links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.link-button {
    background: white;
    border-radius: 16px;
    padding: 20px 24px;
    text-decoration: none;
    color: #333;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.link-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.5s ease;
}

.link-button:hover::before {
    left: 100%;
}

.link-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

.link-icon {
    font-size: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.link-icon-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 8px;
}

.link-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
}

.link-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
}

.link-description {
    font-size: 14px;
    color: #666;
}

.link-arrow {
    font-size: 24px;
    color: #667eea;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.link-button:hover .link-arrow {
    transform: translateX(4px);
}

/* Footer */
.footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
}

.footer p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

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

    .profile-bio {
        font-size: 14px;
    }

    .link-button {
        padding: 16px 20px;
    }

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

    .link-description {
        font-size: 13px;
    }

    .link-icon {
        font-size: 28px;
    }
}
