* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #fafafa;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    color: #333;
}

.container {
    max-width: 680px;
    width: 100%;
    padding: 40px 20px;
}

.profile {
    text-align: center;
    margin-bottom: 40px;
}

.profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 3px solid #4CAF50;
    padding: 3px;
    background-color: white;
    transition: transform 0.3s ease;
}

.profile-img:hover {
    transform: scale(1.05);
}

.profile h1 {
    color: #333;
    margin-bottom: 8px;
    font-size: 1.8rem;
    font-weight: 700;
}

.profile p {
    color: #666;
    font-size: 1rem;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

.link-card {
    background: white;
    padding: 16px 20px;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #eee;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.link-card i {
    font-size: 1.2em;
    color: #4CAF50;
    transition: all 0.3s ease;
}

.link-card:hover i {
    transform: scale(1.1);
}

.link-card:hover {
    border-color: #4CAF50;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(76, 175, 80, 0.1);
}

.link-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background-color: #4CAF50;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.link-card:hover::before {
    transform: scaleY(1);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 30px;
}

.social-icon {
    color: #666;
    font-size: 22px;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 50%;
}

.social-icon:hover {
    color: #4CAF50;
    transform: translateY(-3px);
}

@media (max-width: 480px) {
    .container {
        padding: 30px 15px;
    }

    .profile-img {
        width: 100px;
        height: 100px;
    }

    .profile h1 {
        font-size: 1.5rem;
    }

    .link-card {
        padding: 14px 15px;
    }

    .social-icon {
        font-size: 20px;
    }
}


.link-card-hot {
    background: white;
    padding: 16px 20px;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #eee;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.link-card-hot i {
    font-size: 1.2em;
    color: #d73513;
    transition: all 0.3s ease;
}

.link-card-hot:hover i {
    transform: scale(1.1);
}

.link-card-hot:hover {
    border-color: #d73513;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(76, 175, 80, 0.1);
}

.link-card-hot::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background-color: #d73513;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.link-card-hot:hover::before {
    transform: scaleY(1);
}
