:root {
    --bg-color: #0f172a;
    --card-bg: #1e293b;
    --text-primary: #f8fafc;
    --accent: #38bdf8;
    --transition: all 0.3s ease;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    text-align: center;
    width: 90%;
    max-width: 400px;
}

.profile-image {
    width: 100px; /* Slightly larger for better visual impact */
    height: 100px;
    border-radius: 50%; /* Makes it a circle */
    object-fit: cover; /* Prevents the image from stretching */
    border: 3px solid var(--accent); /* Adds a nice ring around your photo */
    margin-bottom: 1rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.profile-placeholder {
    width: 80px;
    height: 80px;
    background: var(--accent);
    color: var(--bg-color);
    font-size: 2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1rem;
}

h1 { margin: 0; font-size: 1.8rem; }
.tagline { color: #94a3b8; margin-top: 0.5rem; }

.links {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.link-card {
    background: var(--card-bg);
    color: var(--text-primary);
    text-decoration: none;
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid transparent;
    transition: var(--transition);
}

.link-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    background: #2d3748;
}

.highlight {
    background: var(--accent);
    color: var(--bg-color);
    font-weight: bold;
}

.highlight:hover {
    background: #7dd3fc;
    color: var(--bg-color);
}

footer {
    margin-top: 3rem;
    font-size: 0.8rem;
    color: #64748b;
}