* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    min-height: 100vh;
    background-color: #ebecde;
}

.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    position: relative;
    overflow: hidden;
}

.background-decorations {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.decoration {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.decoration-1 {
    top: 40px;
    left: 40px;
    width: 192px;
    height: 192px;
    background: linear-gradient(45deg, rgba(147, 197, 253, 0.3), rgba(196, 181, 253, 0.3));
}

.decoration-2 {
    bottom: 40px;
    right: 40px;
    width: 256px;
    height: 256px;
    background: linear-gradient(45deg, rgba(251, 182, 206, 0.3), rgba(147, 197, 253, 0.3));
}

.decoration-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 240px;
    height: 240px;
    background: linear-gradient(45deg, rgba(196, 181, 253, 0.2), rgba(251, 182, 206, 0.2));
}

.contact-card {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    backdrop-filter: blur(16px);
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid #333a2f;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.05);
    min-height: 90vh;
    display: flex;
    flex-direction: column;
}

.card-content {
    padding: 24px 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.profile-section {
    text-align: center;
    margin-bottom: 32px;
}

.avatar-container {
    position: relative;
    margin-bottom: 24px;
}

.avatar {
    width: 98px;
    height: 98px;
    margin: 0 auto;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.5);
    overflow: hidden;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-image {
    width: 102%;
    height: 102%;
    object-fit: contain;
}

.avatar-glow {
    position: absolute;
    inset: 0;
    width: 96px;
    height: 96px;
    margin: 0 auto;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(147, 197, 253, 0.2), rgba(196, 181, 253, 0.2));
    filter: blur(8px);
    z-index: -1;
}

.company-name {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    background-color: #333a2f;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.company-tagline {
    font-size: 18px;
    font-weight: 700;
    background-color: #333a2f;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.company-description {
    color: #363941;
    line-height: 1.6;
    font-size: 14px;
    padding: 0 8px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    justify-content: center;
}

.social-button {
    width: 100%;
    height: 48px;
    backdrop-filter: blur(4px);
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 600;
    color: #374151;
}

.social-button:hover {
    background: #333a2f56;
    transform: translateY(-1px);
}

.social-button>i {
    font-size: 1rem;
}

.icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

/* .social-button:nth-child(1) .icon {
} */

/* .social-button:nth-child(2) > img {
} */

.social-button:nth-child(3) .icon {
    width: 15px !important;
    height: 15px !important;
}

.bottom-decoration {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #333a2f;
    text-align: center;
}

.top-decoration {
    padding-top: 24px;
    border-top: 1px solid #333a2f;
}

.bottom-decoration p {
    font-size: 12px;
    color: #363941;
}

/* Mobile responsive */
@media (min-width: 640px) {
    .container {
        padding: 16px;
    }

    .contact-card {
        width: 100%;
        min-height: 0;
    }

    .card-content {
        padding: 32px;
    }

    .avatar {
        width: 128px;
        height: 128px;
    }

    .avatar-glow {
        width: 128px;
        height: 128px;
    }

    .company-name {
        font-size: 30px;
    }

    .decoration-1 {
        top: 80px;
        left: 80px;
        width: 288px;
        height: 288px;
    }

    .decoration-2 {
        bottom: 80px;
        right: 80px;
        width: 384px;
        height: 384px;
    }

    .decoration-3 {
        width: 320px;
        height: 320px;
    }

}

