
:root {
    --primary-color: oklch(65% 0.25 260);
    --secondary-color: oklch(85% 0.15 260);
    --text-color: oklch(98% 0.02 260);
    --bg-color: oklch(20% 0.02 260);
    --glow-color: oklch(75% 0.3 260 / 50%);
    --shadow-color: oklch(20% 0.02 260 / 50%);
}

body {
    font-family: sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    margin: 0;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"%3E%3Cfilter id="n"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.75" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100" height="100" filter="url(%23n)" opacity="0.1"/%3E%3C/svg%3E');
}

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

header {
    margin-bottom: 2rem;
}

.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 4px solid var(--primary-color);
    box-shadow: 0 0 20px var(--glow-color);
}

h1 {
    font-size: 2rem;
    margin: 0;
    color: var(--primary-color);
}

p {
    font-size: 1rem;
    color: var(--secondary-color);
}

.social-links {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-links a {
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.1);
}

.links-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

jide-link {
    display: block;
}
