body {
    background-color: #0b0f17;
    color: #94a3b8;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 2rem 1.5rem;
    box-sizing: border-box;
}

.main-box {
    max-width: 750px;
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 3.5rem;
}

.profile-img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #1e293b;
    background-color: #1a1d23;
    display: block;
    flex-shrink: 0;
}

.content-box {
    flex-grow: 1;
}

h1 {
    font-size: 2.2rem;
    color: #fff;
    margin: 0 0 0.25rem 0;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.tagline {
    font-size: 1.2rem;
    color: #38bdf8;
    margin: 0 0 2rem 0;
}

p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
}

.contact-info {
    margin-top: 2rem;
    border-top: 1px dashed #1e293b;
    padding-top: 1.5rem;
}

a {
    color: #38bdf8;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

a:hover {
    border-color: #38bdf8;
}

.footer {
    margin-top: 4rem;
    font-size: 0.8rem;
    color: #475569;
}

@media (max-width: 650px) {
    .main-box {
        flex-direction: column;
        text-