* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Archivo", sans-serif;
    background: url('bg.jpg') center center no-repeat;
    background-size: cover;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    line-height: 1.6;
    color: #000;
}

.container {
    width: 100%;
    max-width: 600px;
}

.profile-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    padding-bottom: 30px;
    border: 2px solid #000;
    text-align: center;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 20px;
    text-align: left;
}

.photo-container {
    flex-shrink: 0;
}

.profile-photo {
    width: 136px;
    height: 136px;
    border-radius: 20px;
    object-fit: cover;
    object-position: center 36%;
    border: 2px solid #000;
}

.header-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.name {
    font-family: "Bebas Neue", sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #000;
    margin: 0;
    line-height: 1.1;
}

.subtitle {
    font-size: 1rem;
    color: #000;
    margin: 0;
}

.bio {
    text-align: left;
    margin-bottom: 20px;
    color: #000;
    font-size: 0.9rem;
    line-height: 1.8;
}

.bio p {
    margin: 0 0 1em 0;
}

.bio p:last-child {
    margin-bottom: 0;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #000;
    text-decoration: none;
    font-size: 1.8rem;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.icon-link:hover {
    opacity: 0.7;
    transform: scale(1.1);
}

.icon-link:active {
    opacity: 0.5;
    transform: scale(1.05);
}

.connect-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 6px 12px;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    border: 2px solid #000;
    border-radius: 8px;
    background: #000;
    transition: transform 0.2s ease;
}

.connect-btn i {
    font-size: 1.25rem;
}

.connect-btn:hover {
    transform: scale(1.05);
}

.connect-btn:active {
    transform: scale(0.98);
}

@media (max-width: 600px) {
    body {
        background-attachment: scroll;
    }

    .profile-card {
        padding: 30px 20px;
    }
    
    .profile-header {
        flex-direction: column;
        text-align: center;
    }

    .header-info {
        align-items: center;
    }

    .profile-photo {
        width: 150px;
        height: 150px;
    }
    
    .name {
        font-size: 2.4rem;
    }

    .subtitle {
        font-size: 0.95rem;
    }
    
    .bio {
        font-size: 0.95rem;
    }
    
    .social-icons {
        gap: 20px;
    }
    
    .icon-link {
        font-size: 1.3rem;
    }
}
