/* Reset and Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #000000; /* Dark background */
    color: #ffffff;
    font-family: sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

/* Container */
.container {
    width: 100%;
    max-width: 480px;
    text-align: center;
}

/* Header */
header {
    margin-bottom: 32px;
}

.profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    margin-bottom: 16px;
}

h1 {
    font-size: 2rem;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.bio {
    color: #a0a0a0;
    font-size: 0.95rem;
}

/* Buttons */
.links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.link-btn {
    display: block;
    padding: 16px;
    color: #fff;
    background-color: #222;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.2s, background-color 0.2s;
    border: 1px solid #333;
}

/* Hover effect */
.link-btn:hover {
    transform: scale(1.02);
    background-color: #333;
}

/* Optional Custom Brand Colors */
.link-btn.jobu:hover { background-color: #ea0000; border-color: #ffffff; }

/* Footer */
footer {
    margin-top: 40px;
    font-size: 0.8rem;
    color: #555;
}