* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    background: linear-gradient(135deg, #f8f9ff 0%, #e6f0ff 100%);
    color: #333;
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.profile-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, #4361ee, #3a0ca3, #7209b7);
}

.profile-img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #fff;
    box-shadow: 0 10px 25px rgba(67, 97, 238, 0.2);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.profile-img:hover {
    transform: scale(1.05);
}

.profile-card h1 {
    font-size: 26px;
    margin-bottom: 8px;
    color: #2b2d42;
    font-weight: 600;
}

.profile-card p {
    color: #6c757d;
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 400;
}

#menu-links {
    display: grid;
    gap: 15px;
}

.link-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.link-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    background: linear-gradient(135deg, #4361ee 0%, #3a0ca3 100%);
}

.link-content {
    flex: 1;
    padding: 18px 20px;
}

.link-title {
    font-size: 16px;
    font-weight: 600;
    color: #2b2d42;
    margin-bottom: 5px;
}

.link-desc {
    font-size: 13px;
    color: #6c757d;
    line-height: 1.4;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.whatsapp { color: #25D366; }
.instagram { 
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
}
.facebook { color: #4267B2; }
.tiktok { color: #000000; }
.youtube { color: #FF0000; }

.footer {
    text-align: center;
    margin-top: 40px;
    color: #6c757d;
    font-size: 13px;
    padding: 20px 0;
}

.tagline {
    background: linear-gradient(90deg, #4361ee, #3a0ca3, #7209b7);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 600;
    margin-bottom: 10px;
}

@media (max-width: 480px) {
    .profile-card {
        padding: 25px 20px;
    }
    
    .profile-img {
        width: 110px;
        height: 110px;
    }
    
    .link-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .link-content {
        padding: 15px;
    }
}