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

#particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
}

body {
    font-family:
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        sans-serif;
    background-color: #f5f0eb;
    color: #2c2c2c;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 5rem;
    padding-bottom: 10vh;
}

.container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.profile-image {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #e8e0d8;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.8rem;
}

.intro {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-bottom: 3rem;
}

.name {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 5rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    color: #1a1a1a;
    text-align: right;
}

.tagline {
    font-size: 1.5rem;
    font-weight: 300;
    color: #666;
    letter-spacing: 0.01em;
    text-align: right;
}

.role {
    position: relative;
    text-decoration: none;
}

.role::after {
    content: "";
    position: absolute;
    left: -0.15em;
    right: 0.2em;
    bottom: -0.65em;
    height: 0.65em;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 40' preserveAspectRatio='none'%3E%3Cpath d='M6 32 C 2 30, 0 26, 2 22 Q 30 2, 80 6 Q 140 10, 180 16 C 195 18, 198 20, 196 24 C 194 28, 188 28, 175 26 Q 130 20, 70 18 Q 25 16, 8 34 C 6 36, 6 34, 6 32 Z' fill='%23e07850'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.social-links {
    display: flex;
    flex-direction: row;
    gap: 1.25rem;
    justify-content: flex-end;
}

.link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #2c2c2c;
    opacity: 0.8;
}

.link:hover {
    opacity: 1;
}

.link svg {
    width: 48px;
    height: 48px;
}

@media (max-width: 760px) {
    body {
        display: flex;
        align-items: center;
        padding-left: 3rem;
        padding-right: 3rem;
        text-align: center;
    }

    .container {
        align-items: center;
    }

    .intro {
        align-items: center;
    }

    .name {
        font-size: 10vw;
    }

    .tagline {
        font-size: 3.5vw;
    }
}

@media (max-width: 460px) {
    body {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .tagline {
        font-size: 1rem;
    }
}
