
body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    background: #f4f6f9;
    color: #222;
    line-height: 1.6;
}

header {
    background: #111;
    color: #fff;
    padding: 70px 20px;
    text-align: center;
}

main {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

section {
    margin-bottom: 70px;
}

h2 {
    margin-bottom: 15px;
    border-bottom: 2px solid #e5e5e5;
    padding-bottom: 8px;
}

.pearls {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.pearls li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
}

.pearls li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid rgba(170, 110, 12, 0.45);

    /* Layered shading to fake translucent glossy gold */
    background:
        /* bright internal glow */
        radial-gradient(circle at 42% 40%,
            rgba(255, 244, 170, 0.95) 0%,
            rgba(255, 217, 92, 0.82) 22%,
            rgba(242, 170, 34, 0.62) 48%,
            rgba(166, 96, 10, 0.38) 72%,
            rgba(80, 42, 2, 0.18) 100%),

        /* darker edge / volume */
        radial-gradient(circle at 70% 72%,
            rgba(120, 70, 5, 0.00) 40%,
            rgba(110, 62, 3, 0.18) 62%,
            rgba(68, 36, 1, 0.30) 100%),

        /* subtle vertical tint to enhance translucency */
        linear-gradient(145deg,
            rgba(255, 235, 150, 0.18) 0%,
            rgba(220, 145, 18, 0.10) 45%,
            rgba(90, 52, 4, 0.12) 100%);

    box-shadow:
        /* outer contact shadow */
        0 1px 2px rgba(0, 0, 0, 0.16),
        /* warm emitted glow */
        0 0 5px rgba(255, 190, 45, 0.16),
        0 0 10px rgba(255, 190, 45, 0.08),
        /* inner refraction / depth */
        inset -2px -2px 4px rgba(90, 48, 2, 0.22),
        inset 2px 2px 3px rgba(255, 247, 214, 0.26);
}

.pearls li::after {
    content: "";
    position: absolute;
    left: 3px;
    top: 6px;
    width: 7px;
    height: 5px;
    border-radius: 50%;

    /* specular highlight / glossy reflection */
    background: radial-gradient(circle at 35% 35%,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.75) 35%,
        rgba(255, 250, 225, 0.35) 70%,
        rgba(255, 250, 225, 0.00) 100%);

    transform: rotate(-18deg);
    filter: blur(0.1px);
    pointer-events: none;
}

.github-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #24292e;
    color: #fff;
    padding: 10px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s ease;
}

.github-button:hover {
    background: #000;
}

.github-button svg {
    width: 18px;
    height: 18px;
}

.profile-link {
    display: inline-block;
    margin-top: 18px;
}

.avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.profile-link:hover .avatar {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.30);
}

.header-logo {
    display: block;
    margin: 0 auto 14px auto;
    color: rgba(255, 255, 255, 0.92);
}

.header-logo svg {
    width: 80px;
    height: 80px;
    display: block;
    margin: 0 auto;
    opacity: 0.95;
}

footer {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 40px 20px;
}