:root {
    color-scheme: dark;
    --bg: #0f0f0f;
    --text: #eaeaea;
    --accent: #1e1e1e;
    --hover: #b0b0b0;
    --font: 'Inter', system-ui, -apple-system, sans-serif;
}
body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font);
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}
header {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    padding: 20px 40px;
    box-sizing: border-box;
    font-size: 0.95rem;
}
header a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.2s;
}
header a:hover {
    color: var(--hover);
}
main {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    box-sizing: border-box;
}
.hero-banner {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #403f79;
    margin: 40px 0;
    padding: 40px 0;
    border-radius: 10px;
    overflow: hidden;
}
.hero-banner::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, #8b82f7, transparent 60%),
                radial-gradient(circle at 70% 70%, #ff7eb6, transparent 60%),
                radial-gradient(circle at 40% 80%, #7bd5f5, transparent 60%);
    filter: blur(80px);
    animation: blobMove 8s infinite alternate ease-in-out;
    z-index: 0;
}
.hero-banner {
    position: relative;
    z-index: 1;
}
.hero-banner > * {
    z-index: 2;
}

@keyframes blobMove {
    0% { transform: translate(0, 0); }
    50% { transform: translate(15%, -15%) scale(1.1); }
    100% { transform: translate(-15%, 15%); }
}

.avatar {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: var(--accent);
    margin-bottom: 20px;
    background-position: center;
    background-size: cover;
}
.tagline {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 10px;
}
.sub-tagline{
    font-size: 1.1rem;
    font-weight: bold;
}
.sections {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1000px;
}
.section {
    background: var(--accent);
    border-radius: 10px;
    padding: 20px;
    flex: 1 1 250px;
    max-width: 300px;
    box-sizing: border-box;
    text-align: left;
}
.section h3 {
    margin-top: 0;
    color: var(--hover);
}
.section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.section li {
    margin-bottom: 10px;
}
.section a {
    color: #3758dd;
    text-decoration: none;
    transition: color 0.2s;
}
.section a:hover {
    color: var(--hover);
}
footer {
    padding: 20px;
    font-size: 0.85rem;
    color: #777;
}