:root {
    --bg: #fafafa;
    --fg: #111111;
    --dim: #666666;
    --serif: 'EB Garamond', Georgia, serif;
    --mono: 'Space Mono', 'Courier New', monospace;
}

body {
    background-color: var(--bg);
    color: var(--fg);
    font-family: var(--serif);
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
}

.carousel {
    position: relative;
    width: 100%;
    max-width: 600px;
    overflow: hidden;
    margin-bottom: 2rem;
    border-radius: 4px;
    cursor: pointer;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s ease;
}

.carousel-track img {
    min-width: 100%;
    width: 100%;
    height: auto;
    display: block;
    flex-shrink: 0;
    object-fit: contain;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    border: none;
    font-size: 2rem;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    line-height: 1;
    z-index: 2;
}

.carousel:hover .carousel-btn {
    opacity: 1;
}

.carousel-btn-prev {
    left: 0.5rem;
}

.carousel-btn-next {
    right: 0.5rem;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.6);
}

.profile-pic {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 2rem;
    filter: grayscale(20%);
}

h1 {
    font-size: 2.5rem;
    font-weight: 400;
    margin: 0 0 0.5rem 0;
}

.moniker {
    font-family: var(--mono);
    font-size: 0.9rem;
    color: var(--dim);
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 3rem;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pathway {
    font-family: var(--mono);
    font-size: 0.85rem;
    color: var(--dim);
    opacity: 0.5;
}
