/* Global styles */
body {
    font-family: Arial, sans-serif;
    background: #111;
    color: #eee;
    margin: 0;
    padding: 0;
}

/* Centered card like your CV */
.container {
    max-width: 900px;
    margin: 50px auto;
    padding: 40px 20px 60px;
    background: #181818;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0,0,0,0.7);
}

/* Header */
h1 {
    text-align: center;
    margin: 0 0 5px;
}

.tagline {
    text-align: center;
    font-size: 0.95rem;
    color: #bbb;
    margin: 0 0 20px;
}

/* Navigation links */
.nav-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.nav-links a {
    color: #4ea3ff;
    text-decoration: none;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid #4ea3ff;
    font-size: 0.9rem;
}

.nav-links a:hover {
    background: #4ea3ff;
    color: #111;
}

/* Intro text */
.intro {
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
    font-size: 1rem;
}

.intro p {
    margin-bottom: 12px;
}

/* Links in body */
a {
    color: #4ea3ff;
}

a:hover {
    text-decoration: underline;
}

/* Print-friendly if you ever print it */
@media print {
    body { background: #fff; color: #000; }
    .container {
        background: #fff;
        box-shadow: none;
        margin: 0;
        border-radius: 0;
    }
}
