    :root {
        --accent: 208 100% 50%;
        /* use HSL hue for nice accents if you want */
        --glass-bg: rgba(255, 255, 255, 0.06);
        --glass-border: rgba(255, 255, 255, 0.14);
        --text: rgba(255, 255, 255, 0.95);
        --muted: rgba(255, 255, 255, 0.7);
    }

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

    html,
    body,
    #app {
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    body {
        font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
        color: var(--text);
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        background: #111;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Background image (replace 'background.jpg' with your image) */
    .bg {
        position: fixed;
        inset: 0;
        background-image: url('../images/bg.gif');
        background-size: cover;
        background-position: center;
        filter: brightness(0.6) saturate(1.05);
        z-index: -3;
    }

    /* soft color overlay */
    .bg::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.45));
    }

    /* Container */
    .card {
        width: min(720px, 92vw);
        max-width: 720px;
        border-radius: 18px;
        padding: 28px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02));
        border: 1px solid var(--glass-border);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(10px) saturate(120%);
        -webkit-backdrop-filter: blur(10px) saturate(120%);
        display: grid;
        grid-template-columns: 1fr;
        gap: 18px;
        align-items: center;
    }

    /* Header: profile image + name */
    .profile {
        display: flex;
        gap: 16px;
        align-items: center;
    }

    .avatar {
        width: 84px;
        height: 84px;
        border-radius: 50%;
        overflow: hidden;
        border: 2px solid rgba(255, 255, 255, 0.12);
        flex-shrink: 0;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent);
    }

    .avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block
    }

    .meta h1 {
        font-size: 20px;
        margin-bottom: 4px
    }

    .meta p {
        color: var(--muted);
        font-size: 13px
    }

    /* Links list */
    .links {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px
    }

    .link-btn {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 16px;
        border-radius: 12px;
        text-decoration: none;
        color: var(--text);
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
        border: 1px solid rgba(255, 255, 255, 0.04);
        transition: transform .14s ease, box-shadow .14s ease, background .14s ease;
        box-shadow: 0 1px 0 rgba(255, 255, 255, 0.02) inset;
    }

    .link-btn:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45)
    }

    .link-icon {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        display: grid;
        place-items: center;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
        border: 1px solid rgba(255, 255, 255, 0.03)
    }

    .link-label {
        flex: 1;
        text-align: left
    }

    .link-title {
        font-weight: 600
    }

    .link-sub {
        font-size: 12px;
        color: var(--muted);
        margin-top: 2px
    }

    /* small footer */
    .footer {
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--muted);
        font-size: 13px;
        padding-top: 4px
    }

    /* responsive */
    @media (min-width:720px) {
        .card {
            grid-template-columns: 1fr 360px;
            gap: 22px
        }

        .links {
            grid-column: 2/3
        }

        .meta {
            grid-column: 1/2
        }

        .profile {
            flex-direction: column;
            align-items: center;
            text-align: center
        }

        .meta h1 {
            font-size: 22px
        }
    }

    /* small touches */
    .pill {
        padding: 6px 10px;
        border-radius: 999px;
        font-size: 12px;
        border: 1px solid rgba(255, 255, 255, 0.04);
        background: rgba(255, 255, 255, 0.02)
    }

    @media(max-width: 311px){
        .profile{
            flex-direction: column;
        }
    }