﻿:root {
    --ink: #e5e7eb;
    --paper: #0b1020;
    --brand: #7c3aed;
    --brand2: #06b6d4;
}

body {
    color: var(--ink);
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 6rem 0 4rem;
    background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,0));
    border-bottom: 1px solid rgba(255,255,255,.07);
}

.blob {
    position: absolute;
    inset: -20% -10% auto auto;
    width: 60vmax;
    height: 60vmax;
    background: radial-gradient(circle at 30% 30%, rgba(124,58,237,.3), transparent 40%), radial-gradient(circle at 70% 60%, rgba(6,182,212,.25), transparent 35%);
    filter: blur(40px);
    opacity: .5;
    pointer-events: none;
    animation: float 18s ease-in-out infinite alternate;
}

@keyframes float {
    from {
        transform: translateY(-2%) rotate(8deg);
    }

    to {
        transform: translateY( 2%) rotate(12deg);
    }
}

.brand-underline {
    position: relative;
    display: inline-block;
}

    .brand-underline::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: .15em;
        height: .5em;
        background: linear-gradient(90deg, rgba(124,58,237,.6), rgba(6,182,212,.6));
        z-index: -1;
        filter: blur(6px);
        border-radius: 6px;
        opacity: .7;
    }

.profile-card {
    background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 1.25rem;
    padding: 1.25rem;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,.35);
    transition: transform .25s ease, box-shadow .25s ease;
}

    .profile-card:hover {
        transform: translateY(-4px) scale(1.01);
        box-shadow: 0 20px 50px rgba(0,0,0,.45);
    }

.avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,.35);
    box-shadow: 0 8px 30px rgba(124,58,237,.25);
}

.flag-chip {
    border: 1px solid rgba(255,255,255,.15);
    padding: .35rem .6rem;
    border-radius: 999px;
    font-size: .9rem;
    background: rgba(255,255,255,.04);
    backdrop-filter: blur(6px);
}

.icon-burst {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(124,58,237,.12);
    box-shadow: inset 0 0 0 1px rgba(124,58,237,.3);
}

.reveal {
    opacity: 0;
    transform: translateY(16px) scale(.98);
    transition: all .6s ease;
}

    .reveal.show {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

.timeline {
    position: relative;
}

    .timeline::before {
        content: "";
        position: absolute;
        left: 20px;
        top: 0;
        bottom: 0;
        width: 2px;
        background: linear-gradient(var(--brand), transparent);
        opacity: .5;
    }

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 1.5rem;
}

    .timeline-item .dot {
        position: absolute;
        left: 12px;
        top: .25rem;
        width: 16px;
        height: 16px;
        background: var(--brand);
        border-radius: 50%;
        box-shadow: 0 0 0 6px rgba(124,58,237,.2);
    }

.gallery-card {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.08);
    background: #0b1222;
    transition: transform .25s ease, box-shadow .25s ease;
}

    .gallery-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 30px rgba(0,0,0,.45);
    }

    .gallery-card img {
        width: 100%;
        height: 260px;
        object-fit: cover;
        display: block;
        filter: saturate(1.05) contrast(1.05);
    }

.btn-brand {
    background: linear-gradient(90deg, var(--brand), var(--brand2));
    border: none;
    color: white;
    box-shadow: 0 8px 20px rgba(124,58,237,.35);
}

    .btn-brand:hover {
        filter: brightness(1.05);
        box-shadow: 0 10px 26px rgba(124,58,237,.5);
    }
