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

body {
    background-color: #0f0f0f;
    color: #e0e0e0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

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

.profile-section {
    max-width: 1000px;
}

.profile-image {
    width: 120px;
    height: 120px;
    border-radius: 24px;
    object-fit: cover;
    margin-bottom: 32px;
    background-color: #2a2a2a;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-image:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.1);
}

.name {
    font-size: 3.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.title {
    font-size: 2rem;
    color: #888888;
    margin-bottom: 48px;
    font-weight: 400;
}

.description {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.intro,
.passion {
    font-size: 1.5rem;
    color: #b0b0b0;
    line-height: 1.7;
    font-weight: 300;
}

.company {
    color: #e0e0e0;
    font-weight: 400;
}

.social-links {
    display: flex;
    gap: 24px;
    margin-top: 48px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.7;
}

.social-icon:hover {
    transform: translateY(-4px);
    opacity: 1;
}

.social-icon img {
    width: 100%;
    height: 100%;
    filter: invert(1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .name {
        font-size: 2.5rem;
    }

    .title {
        font-size: 1.5rem;
        margin-bottom: 32px;
    }

    .intro,
    .passion {
        font-size: 1.2rem;
    }

    .profile-image {
        width: 100px;
        height: 100px;
        margin-bottom: 24px;
    }

    .social-links {
        gap: 20px;
        margin-top: 36px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .name {
        font-size: 2rem;
    }

    .title {
        font-size: 1.25rem;
    }

    .intro,
    .passion {
        font-size: 1.1rem;
    }

    .profile-image {
        width: 90px;
        height: 90px;
    }

    .description {
        gap: 24px;
    }

    .social-links {
        gap: 16px;
        margin-top: 32px;
    }

    .social-icon {
        width: 20px;
        height: 20px;
    }
}