* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #0f172a;
    color: #ffffff;
    line-height: 1.5;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.container {
    width: 100%;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 28px;
    padding: 40px 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.profile-section {
    margin-bottom: 2rem;
    color: #000000;
}

.profile-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.profile-name {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #000000;
    text-align: center;
}

.bio {
    font-size: 1.1rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
    text-align: center;
}

.location {
    color: #475569;
    font-size: 0.9rem;
    text-align: center;
}

.location i {
    margin-right: 0.5rem;
}

.social-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.social-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border-radius: 12px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: transform 0.2s ease, opacity 0.2s ease;
    background-color: rgba(255, 255, 255, 0.1);
}

.social-button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.social-button i {
    font-size: 1.5rem;
    margin-right: 0.75rem;
}

.social-button span {
    font-size: 1rem;
}

.website {
    background-color: #3b82f6;
}

.whatsapp {
    background-color: #25d366;
}

.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.linkedin {
    background-color: #0077b5;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .container {
        margin: 16px;
        padding: 30px 20px;
        max-width: calc(100% - 32px);
    }

    .profile-image {
        width: 120px;
        height: 120px;
        margin-bottom: 20px;
    }

    .profile-name {
        font-size: 24px;
    }

    .bio {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .location {
        font-size: 14px;
    }

    .social-buttons {
        gap: 12px;
    }

    .social-button {
        padding: 14px;
        font-size: 14px;
    }
}

@media (max-width: 360px) {
    .container {
        margin: 12px;
        padding: 24px 16px;
        max-width: calc(100% - 24px);
    }

    .profile-image {
        width: 100px;
        height: 100px;
    }

    .social-button {
        padding: 12px;
        font-size: 13px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.social-button {
    animation: fadeIn 0.5s ease forwards;
}

.social-button:nth-child(1) { animation-delay: 0.1s; }
.social-button:nth-child(2) { animation-delay: 0.2s; }
.social-button:nth-child(3) { animation-delay: 0.3s; }
.social-button:nth-child(4) { animation-delay: 0.4s; } 