:root {
    --bg-color: #0f172a;
    --text-color: #e2e8f0;
    --primary-color: #38bdf8;
    --secondary-color: #1e293b;
    --accent-color: #7dd3fc;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 2rem;
}

.container {
    text-align: center;
    max-width: 600px;
    width: 100%;
    animation: fadeIn 1s ease-out;
}

header {
    margin-bottom: 3rem;
}

.profile-pic {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.avatar-placeholder {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    font-weight: bold;
    color: var(--bg-color);
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.3);
}

h1 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.highlight {
    color: var(--primary-color);
}

.subtitle {
    font-size: 1.25rem;
    color: #94a3b8;
    font-weight: 300;
}

.intro {
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: #cbd5e1;
}

.links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: rgba(56, 189, 248, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(56, 189, 248, 0.2);
}

.btn.primary {
    background-color: var(--primary-color);
    color: var(--bg-color);
}

.btn.primary:hover {
    background-color: var(--accent-color);
    color: var(--bg-color);
}

footer {
    margin-top: 4rem;
    font-size: 0.9rem;
    color: #64748b;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
