:root {
    --bg: #000000;
    --card-bg: #111111;
    --card-border: #1a1a1a;
    --text-main: #f8fafc;
    --text-muted: #64748b;
    --accent: #3b82f6;
    --border: #1e293b;
    --action-primary: #ffffff;
    --action-secondary: #0a0a0a;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--text-main);
    line-height: 1.6;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
    -webkit-font-smoothing: antialiased;
}

.site-wrapper {
    width: 100%;
    max-width: 580px;
    margin-top: 10vh;
}

/* Site Header */
.site-header {
    text-align: center;
    margin-bottom: 5rem;
}

.avatar-frame {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.avatar {
    width: 128px;
    height: 128px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--border);
    background-color: var(--card-bg);
}

.no-image .avatar {
    display: none;
}

.no-image::before {
    content: "AH";
    width: 128px;
    height: 128px;
    background: #111111;
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2rem;
    font-weight: 600;
    font-family: 'IBM Plex Mono', monospace;
    border: 1px solid var(--border);
}

.name {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    letter-spacing: -0.05em;
    font-family: 'Inter', sans-serif;
}

.role {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 2.5rem;
    font-weight: 500;
    font-family: 'IBM Plex Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Actions */
.contact-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.action-primary,
.action-secondary {
    display: inline-block;
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.15s ease;
    font-family: 'IBM Plex Mono', monospace;
}

.action-primary {
    background-color: var(--action-primary);
    color: #000;
}

.action-primary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.action-secondary {
    background-color: var(--action-secondary);
    color: var(--text-main);
    border: 1px solid var(--border);
}

.action-secondary:hover {
    border-color: var(--text-muted);
}

/* Content Sections */
section {
    margin-bottom: 4rem;
}

.section-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 0.5rem;
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 500;
}

p {
    margin-bottom: 1.5rem;
    color: #cbd5e1;
    font-size: 1.05rem;
}

strong {
    color: #fff;
    font-weight: 600;
}

/* Skill List */
.skill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.skill {
    background: #0a0a0a;
    border: 1px solid var(--border);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    color: #94a3b8;
    font-family: 'IBM Plex Mono', monospace;
    transition: all 0.2s ease;
}

.skill:hover {
    border-color: var(--text-muted);
    color: #fff;
}

/* Project/Interests List */
.project-list {
    list-style: none;
}

.project-list li {
    margin-bottom: 0.5rem;
}

.project-list .interest-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: #e2e8f0;
    padding: 14px;
    background: #080808;
    border-radius: 4px;
    border: 1px solid var(--border);
    transition: all 0.15s ease;
    font-size: 0.95rem;
}

.project-list .interest-item:hover {
    border-color: var(--text-muted);
}

.site-footer {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 5rem;
    padding-bottom: 3rem;
    font-family: 'IBM Plex Mono', monospace;
}
