* {
    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(180deg, 
        #e3f2fd 0%, 
        #fce4ec 50%, 
        #fff9c4 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    margin: 0;
}

.container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

/* Profile Card */
.profile-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px 25px;
    margin: 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    width: 100%;
}

/* Logo Container */
.logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.logo-frame {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: #ffffff;
    padding: 8px;
    border: 3px solid #ffb3d9;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

/* Profile Name */
.profile-name {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

/* Description */
.profile-description {
    text-align: center;
    font-size: 14px;
    color: #333333;
    line-height: 1.5;
    margin-bottom: 20px;
    padding: 0 10px;
}

/* Social Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 25px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px dashed #cccccc;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.social-icon svg {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
}

/* WhatsApp */
.social-icon:first-child:hover {
    background: #25D366;
    border-color: #25D366;
}

.social-icon:first-child:hover svg {
    fill: #ffffff;
}

.social-icon:first-child svg {
    fill: #25D366;
}

/* Facebook */
.social-icon:nth-child(2):hover {
    background: #1877F2;
    border-color: #1877F2;
}

.social-icon:nth-child(2):hover svg {
    fill: #ffffff;
}

.social-icon:nth-child(2) svg {
    fill: #1877F2;
}

/* Instagram */
.social-icon:nth-child(3):hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #bc1888;
}

.social-icon:nth-child(3):hover svg {
    fill: #ffffff;
}

.social-icon:nth-child(3) svg {
    fill: #E4405F;
}

/* Email */
.social-icon:last-child:hover {
    background: #EA4335;
    border-color: #EA4335;
}

.social-icon:last-child:hover svg {
    fill: #ffffff;
}

.social-icon:last-child svg {
    fill: #EA4335;
}

/* Links Section */
.links-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.link-button {
    background: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 15px 18px;
    text-decoration: none;
    color: #000000;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.link-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.link-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.link-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* CTA Button */
.cta-section {
    margin-top: 25px;
}

.cta-button {
    width: 100%;
    background: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 15px 18px;
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.cta-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #000000;
    flex-shrink: 0;
}

.cta-button svg {
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding: 15px;
    }
    
    .container {
        max-width: 100%;
    }

    .profile-card {
        padding: 35px 20px;
        border-radius: 15px;
    }

    .profile-name {
        font-size: 26px;
    }

    .profile-description {
        font-size: 13px;
        padding: 0 5px;
    }

    .link-button,
    .cta-button {
        font-size: 13px;
        padding: 14px 16px;
    }
    
    .logo-frame {
        width: 140px;
        height: 140px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 10px;
    }

    .profile-card {
        padding: 30px 15px;
        border-radius: 12px;
    }

    .profile-name {
        font-size: 22px;
    }

    .profile-description {
        font-size: 12px;
        padding: 0;
    }

    .link-button,
    .cta-button {
        font-size: 12px;
        padding: 12px 14px;
    }
    
    .logo-frame {
        width: 120px;
        height: 120px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
    }
    
    .social-icon svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 360px) {
    .profile-card {
        padding: 25px 12px;
    }
    
    .profile-name {
        font-size: 20px;
    }
    
    .logo-frame {
        width: 100px;
        height: 100px;
    }
    
    .social-icon {
        width: 38px;
        height: 38px;
    }
    
    .social-icon svg {
        width: 18px;
        height: 18px;
    }
}

