* {
    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, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 400px;
    margin: 0 auto;
    background: #f9f5f0;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

/* Header Section */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 29px 35px;
    background: linear-gradient(to bottom, #cae9f5 60%, rgba(249, 245, 240, 0) 100%);;
}

.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

.subscribe-btn {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.subscribe-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-2px);
}

/* Profile Section */
.profile-section {
    text-align: center;
    padding: 40px 25px;
}

.profile-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-name {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.profile-tagline {
    font-size: 16px;
    color: #7f8c8d;
    font-weight: 400;
}

/* Links Section */
.links-section {
    padding: 0 25px 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-link {
    display: flex;
    align-items: center;
    padding: 18px 20px;
    background: white;
    border-radius: 15px;
    text-decoration: none;
    color: #2c3e50;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-family: 'Courier New', Courier, monospace;
}

.contact-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

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

.contact-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.main-contact {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.facebook-link:hover {
    background: linear-gradient(135deg, #4267B2, #365899);
    color: white;
}

.whatsapp-link:hover {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.email-link:hover {
    background: linear-gradient(135deg, #EA4335, #D33B2C);
    color: white;
}

.phone-link:hover {
    background: linear-gradient(135deg, #34495e, #2c3e50);
    color: white;
}

.webpage-link:hover {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    color: white;
}

.link-icon-wrapper {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.contact-link:hover .link-icon-wrapper {
    background: rgba(255, 255, 255, 0.2);
}

.link-icon {
    font-size: 20px;
    color: inherit;
}

.link-text {
    flex: 1;
    font-size: 36px;
    font-weight: bold;
    margin-left: 15px;
}

.main-contact .link-text {
    margin-left: 0;
    text-align: center;
}

.fa-chevron-right {
    font-size: 14px;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.contact-link:hover .fa-chevron-right {
    opacity: 1;
    transform: translateX(3px);
}

/* Responsive Design */
@media (max-width: 480px) {
    body {
        padding: 10px;
    }
    
    .container {
        max-width: 100%;
        border-radius: 15px;
    }
    
    .profile-name {
        font-size: 24px;
    }
    
    .contact-link {
        padding: 15px 18px;
    }
    
    .link-text {
        font-size: 15px;
    }
}

/* Animation for page load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container {
    animation: fadeInUp 0.6s ease-out;
}

.contact-link {
    animation: fadeInUp 0.6s ease-out;
}

.contact-link:nth-child(1) { animation-delay: 0.1s; }
.contact-link:nth-child(2) { animation-delay: 0.2s; }
.contact-link:nth-child(3) { animation-delay: 0.3s; }
.contact-link:nth-child(4) { animation-delay: 0.4s; }
.contact-link:nth-child(5) { animation-delay: 0.5s; }



@media (min-width: 768px) {
    .link-text {
        font-size: 20px; /* Adjust as needed for desktop */
    }
}

