/* ==========================================
   RESET
========================================== */

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

html,
body {
    min-height: 100vh;
}

body {
    font-family: 'Inter', sans-serif;

    display: flex;
    justify-content: center;
    align-items: center;

    background:
        radial-gradient(
            circle at top left,
            rgba(120, 119, 198, 0.2),
            transparent 35%
        ),
        radial-gradient(
            circle at bottom right,
            rgba(111, 66, 193, 0.18),
            transparent 40%
        ),
        linear-gradient(135deg, #06060a 0%, #0b1020 45%, #13182d 100%);

    color: #f8fafc;

    overflow: hidden;
    position: relative;
}

/* ==========================================
   STARS
========================================== */

body::before {
    content: '';

    position: absolute;
    inset: 0;

    background-image: radial-gradient(#ffffff 1px, transparent 1px);

    background-size: 60px 60px;

    opacity: 0.18;

    pointer-events: none;
}

/* ==========================================
   CARD
========================================== */

.card {
    width: min(420px, 90vw);

    padding: 3rem;

    text-align: center;

    background: rgba(255, 255, 255, 0.04);

    backdrop-filter: blur(18px);

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 28px;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.55),
        0 0 50px rgba(123, 104, 238, 0.15);
}

/* ==========================================
   AVATAR
========================================== */

.avatar {
    width: 140px;
    height: 140px;

    margin: 0 auto 1.5rem;

    border-radius: 50%;

    padding: 4px;

    background: #000;

    box-shadow: 0 0 30px #333;
}

.avatar img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 50%;

    display: block;
}

/* ==========================================
   TEXT
========================================== */

h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.4rem;

    letter-spacing: -1px;
}

.role {
    display: inline-block;

    color: #b8c2ff;

    font-size: 0.95rem;
    font-weight: 500;

    margin-bottom: 1.4rem;
}

p {
    color: #cbd5e1;

    line-height: 1.7;

    font-size: 0.95rem;

    margin-bottom: 2rem;
}

/* ==========================================
   BUTTONS
========================================== */

.actions {
    display: flex;
    gap: 1rem;

    justify-content: center;

    margin-bottom: 2rem;
}

.actions a {
    text-decoration: none;

    color: white;

    padding: 0.9rem 1.5rem;

    border-radius: 12px;

    font-weight: 600;

    background: linear-gradient(135deg, #7c3aed, #4f46e5);

    transition: 0.3s;
}

.actions a:hover {
    transform: translateY(-3px);

    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.45);
}

/* ==========================================
   SOCIAL
========================================== */

.social {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
}

.social a {
    color: #94a3b8;

    text-decoration: none;

    transition: 0.3s;
}

.social a:hover {
    color: #ffffff;
}
