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

body {
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f6d365, #fda085);
    padding: 2rem;
    color: #333;
}

.card {
    display: flex;
    position: relative;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    max-width: 1050px;
    width: 100%;
    overflow: hidden;
}

.corner-img {
    position: absolute;
    top: 100px;
    right: 0;
    width: 200px;
    height: auto;
    transform: rotate(270deg);
    z-index: 10;
    pointer-events: none;
}

.card-left {
    background: linear-gradient(160deg, #6c5ce7, #a855f7);
    color: #fff;
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 360px;
}

.profile-photo {
    width: 260px;
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.35);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.profile-photo:hover {
    transform: scale(1.04) rotate(-1deg);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
}

.name {
    font-size: 1.4rem;
    font-weight: 800;
    text-align: center;
    letter-spacing: 0.02em;
}

.card-right {
    padding: 3rem 3rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}

section h2 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #fff;
    margin-bottom: 0.8rem;
    padding: 0.35rem 0.9rem;
    background: linear-gradient(135deg, #6c5ce7, #a855f7);
    border-radius: 20px;
    display: inline-block;
}

section .entry + .entry {
    margin-top: 1rem;
}

.entry h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    color: #2d2d3a;
}

.entry .detail {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.2rem;
}

.date {
    font-size: 0.8rem;
    color: #999;
    font-weight: 500;
}

.skills-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.skills-list li {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1), rgba(168, 85, 247, 0.1));
    padding: 0.5rem 1rem;
    border-radius: 24px;
    font-size: 0.9rem;
    color: #444;
    border: 1px solid rgba(108, 92, 231, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.skills-list li:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108, 92, 231, 0.2);
}

@media (max-width: 600px) {
    body {
        padding: 1rem;
    }

    .card {
        flex-direction: column;
    }

    .card-left {
        min-width: unset;
        padding: 2rem 1.5rem;
    }

    .profile-photo {
        width: 200px;
    }

    .card-right {
        padding: 1.5rem;
    }
}
