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

body {
    font-family: "Simsun";
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
    font-size: 18px;
}

.container {
    max-width: 680px;
    margin: 0 auto;
    padding: 60px 20px;
}

.header {
    margin-bottom: 60px;
    text-align: center;
    position: relative;
}

.profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    border: 4px solid #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #6b7280;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.profile-placeholder {
    font-weight: 600;
    user-select: none;
}

.name-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
    min-height: 58px;
}

.typewriter {
    border-right: 3px solid #1a1a1a;
    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    50% {
        border-color: #1a1a1a;
    }

    51%,
    100% {
        border-color: transparent;
    }
}

.value-prop {
    font-size: 22px;
    color: #6b7280;
    font-weight: 400;
    margin-bottom: 40px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #f3f4f6;
    border-radius: 50%;
    color: #6b7280;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid #e5e7eb;
}

.social-link:hover {
    background: #1a1a1a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.social-icon {
    font-size: 18px;
    line-height: 1;
}

.content {
    margin-bottom: 50px;
}

.section {
    margin-bottom: 50px;
}

.section-title {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e5e7eb;
}

.elevator-pitch {
    font-size: 20px;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 40px;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.skill-item {
    background: #f3f4f6;
    color: #374151;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 500;
    border: 1px solid #e5e7eb;
    transition: all 0.2s ease;
}

.skill-item:hover {
    background: #e5e7eb;
    transform: translateY(-1px);
}

/* Education Section Styles */
.education-item {
    margin-bottom: 20px;
}

.education-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
    flex-wrap: wrap;
    gap: 10px;
}

.degree {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    flex: 1;
}

.graduation-year {
    font-size: 16px;
    font-weight: 500;
    color: #6b7280;
    background: #f3f4f6;
    padding: 4px 12px;
    border-radius: 12px;
    white-space: nowrap;
}

.school {
    font-size: 18px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
}

.education-details {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.5;
}

/* Abilities Section Styles */
.abilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.ability-item {
    padding: 20px;
    background: #f9fafb;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    transition: all 0.2s ease;
}

.ability-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.ability-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.ability-description {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
}

/* Languages Section Styles */
.languages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}

.language-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #f3f4f6;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    transition: all 0.2s ease;
}

.language-item:hover {
    background: #e5e7eb;
    transform: translateY(-1px);
}

.language-name {
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
}

.language-level {
    font-size: 14px;
    color: #6b7280;
    background: #ffffff;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 500;
}

/* Hobbies Section Styles */
.hobbies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.hobby-item {
    padding: 20px;
    background: #fef7ff;
    border-radius: 12px;
    border: 1px solid #f3e8ff;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hobby-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(147, 51, 234, 0.1);
    border-color: #e9d5ff;
}

.hobby-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #8b5cf6, #a855f7, #c084fc);
}

.hobby-name {
    font-size: 18px;
    font-weight: 600;
    color: #6b21a8;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hobby-icon {
    width: 20px;
    height: 20px;
    color: #8b5cf6;
}

.hobby-description {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

.achievement-list {
    list-style: none;
    margin-bottom: 30px;
}

.achievement-item {
    font-size: 18px;
    color: #374151;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.achievement-item::before {
    content: "•";
    color: #1a1a1a;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.testimonial {
    background: #f9fafb;
    border-left: 4px solid #1a1a1a;
    padding: 30px;
    margin: 40px 0;
    border-radius: 0 8px 8px 0;
}

.testimonial-text {
    font-size: 20px;
    font-style: italic;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 16px;
}

.testimonial-author {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
}

.cta {
    text-align: center;
    margin-top: 60px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1a1a1a;
    color: white;
    padding: 16px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.2s ease;
}

.cta-button:hover {
    background: #374151;
    transform: translateY(-2px);
}

.cta-button svg {
    width: 18px;
    height: 18px;
    transition: transform 0.2s ease;
}

.cta-button:hover svg {
    transform: translateX(2px);
}

@media (max-width: 768px) {
    .container {
        padding: 40px 16px;
    }

    .name-title {
        font-size: 36px;
    }

    .value-prop {
        font-size: 20px;
    }

    .elevator-pitch {
        font-size: 18px;
    }

    .skills-list {
        gap: 8px;
    }

    .skill-item {
        font-size: 14px;
        padding: 6px 12px;
    }

    .education-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .degree {
        font-size: 18px;
    }

    .abilities-grid {
        grid-template-columns: 1fr;
    }

    .languages-grid {
        grid-template-columns: 1fr;
    }

    .hobbies-grid {
        grid-template-columns: 1fr;
    }

    .social-links {
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .name-title {
        font-size: 28px;
        min-height: 34px;
    }

    .value-prop {
        font-size: 18px;
    }

    .section-title {
        font-size: 20px;
    }

    .testimonial {
        padding: 20px;
    }

    .degree {
        font-size: 16px;
    }

    .school {
        font-size: 16px;
    }

    .ability-title {
        font-size: 16px;
    }

    .ability-description {
        font-size: 13px;
    }

    .social-links {
        gap: 10px;
    }

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