* {
    box-sizing: border-box;
}

:root {
    --gold: #d6b76a;
    --gold-light: #efd995;
    --dark: #090909;
    --card: rgba(23, 22, 20, .88);
    --border: rgba(255,255,255,.09);
    --muted: #85827b;
    --white: #fff;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;

    background:
        radial-gradient(
            circle at 50% -10%,
            rgba(214,183,106,.17),
            transparent 35%
        ),
        #080808;

    color: var(--white);

    font-family:
        "DM Sans",
        Arial,
        sans-serif;

    overflow-x: hidden;
}


/* BACKGROUND */

.background-glow {
    position: fixed;

    width: 260px;
    height: 260px;

    border-radius: 50%;

    background: rgba(214,183,106,.09);

    filter: blur(100px);

    pointer-events: none;
}

.glow-one {
    top: 15%;
    left: -170px;
}

.glow-two {
    right: -170px;
    bottom: 10%;
}


/* MAIN */

main {
    position: relative;
    z-index: 2;

    width: min(620px, calc(100% - 28px));

    margin: auto;

    padding:
        34px 0
        45px;
}


/* PROFILE */

.profile {
    text-align: center;
}

.profile-photo {
    width: 92px;
    height: 92px;

    padding: 2px;

    margin: auto;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #f3dc99,
            #806027
        );

    box-shadow:
        0 15px 45px rgba(0,0,0,.35);
}

.profile-photo img,
.photo-fallback {
    display: block;

    width: 100%;
    height: 100%;

    border-radius: 50%;

    object-fit: cover;

    background: #151515;
}

.photo-fallback {
    display: none;

    place-items: center;

    color: var(--gold);

    font-size: 27px;
}

.brand {
    margin-top: 14px;

    color: var(--gold);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 3px;
}

.profile h1 {
    margin: 6px 0 2px;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 27px;
    font-weight: 600;
}

.verified {
    display: inline-grid;
    place-items: center;

    width: 17px;
    height: 17px;

    margin-left: 3px;

    border-radius: 50%;

    background: var(--gold);

    color: #111;

    font-family: Arial;

    font-size: 8px;

    vertical-align: 3px;
}

.username {
    color: #666;

    font-size: 10px;
}

.role {
    margin: 7px 0 0;

    color: #c4bdaF;

    font-size: 11px;
    font-weight: 600;
}

.bio {
    max-width: 390px;

    margin: 7px auto 0;

    color: var(--muted);

    font-size: 10px;

    line-height: 1.5;
}


/* SOCIALS */

.socials {
    display: flex;
    justify-content: center;

    gap: 9px;

    margin: 18px 0 22px;
}

.socials a {
    display: grid;
    place-items: center;

    width: 35px;
    height: 35px;

    border: 1px solid var(--border);

    border-radius: 50%;

    background: rgba(255,255,255,.025);

    color: #aaa;

    text-decoration: none;

    font-size: 12px;

    transition:
        transform .2s ease,
        color .2s ease,
        border-color .2s ease,
        background .2s ease;
}

.socials a:hover {
    transform: translateY(-3px);

    color: var(--gold-light);

    border-color: rgba(214,183,106,.4);

    background: rgba(214,183,106,.08);
}


/* LINKS */

.links {
    display: flex;
    flex-direction: column;

    gap: 10px;
}

.links-list {
    display: flex;
    flex-direction: column;

    gap: 10px;
}


/* LINK CARD */

.link-card {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 64px;

    gap: 13px;

    padding: 9px 13px 9px 9px;

    border: 1px solid var(--border);

    border-radius: 16px;

    background:
        linear-gradient(
            100deg,
            rgba(24,23,21,.94),
            rgba(14,14,14,.90)
        );

    color: var(--white);

    text-decoration: none;

    box-shadow:
        0 8px 30px rgba(0,0,0,.12);

    transition:
        transform .2s ease,
        border-color .2s ease,
        background .2s ease,
        box-shadow .2s ease;
}

.link-card:hover {
    transform: translateY(-2px);

    border-color:
        rgba(214,183,106,.38);

    background:
        linear-gradient(
            100deg,
            rgba(34,30,22,.98),
            rgba(17,17,17,.96)
        );

    box-shadow:
        0 12px 35px rgba(0,0,0,.23);
}


/* FEATURED */

.link-card.featured {
    border-color:
        rgba(214,183,106,.32);

    background:
        linear-gradient(
            100deg,
            rgba(39,33,23,.96),
            rgba(18,17,15,.94)
        );
}

.link-card.featured .link-icon {
    background:
        rgba(214,183,106,.14);
}


/* ICON */

.link-icon {
    display: grid;
    place-items: center;

    width: 43px;
    height: 43px;

    flex: 0 0 43px;

    border-radius: 12px;

    background:
        rgba(255,255,255,.045);

    color: var(--gold);

    font-size: 15px;

    transition:
        transform .2s ease,
        background .2s ease;
}

.link-card:hover .link-icon {
    transform: scale(1.04);

    background:
        rgba(214,183,106,.12);
}


/* TEXT */

.link-text {
    flex: 1;

    min-width: 0;

    text-align: left;
}

.link-text strong {
    display: block;

    font-size: 11px;
    font-weight: 700;
}

.link-text small {
    display: block;

    margin-top: 3px;

    overflow: hidden;

    color: #72706b;

    font-size: 9px;

    white-space: nowrap;

    text-overflow: ellipsis;
}


/* ARROW */

.link-arrow {
    display: grid;
    place-items: center;

    width: 29px;
    height: 29px;

    flex: 0 0 29px;

    border-radius: 50%;

    color: #5f5d58;

    font-size: 8px;

    transition:
        color .2s ease,
        transform .2s ease;
}

.link-card:hover .link-arrow {
    color: var(--gold);

    transform: translateX(2px);
}


/* CONTACT */

.contact-box {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-top: 22px;

    padding: 13px;

    border:
        1px solid rgba(255,255,255,.06);

    border-radius: 15px;

    background:
        rgba(255,255,255,.025);
}

.contact-icon {
    display: grid;
    place-items: center;

    width: 35px;
    height: 35px;

    flex: 0 0 35px;

    border-radius: 10px;

    background:
        rgba(214,183,106,.08);

    color: var(--gold);

    font-size: 12px;
}

.contact-box strong {
    display: block;

    font-size: 10px;
}

.contact-box small {
    display: block;

    margin-top: 3px;

    color: #666;

    font-size: 8px;
}


/* FOOTER */

footer {
    text-align: center;

    padding-top: 30px;
}

.footer-brand {
    color: var(--gold);

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 14px;
}

.footer-line {
    width: 38px;
    height: 1px;

    margin: 9px auto;

    background:
        rgba(214,183,106,.35);
}

footer small {
    color: #444;

    font-size: 8px;
}


/* MOBILE */

@media (max-width: 480px) {

    main {
        width: calc(100% - 22px);

        padding-top: 25px;
    }

    .profile-photo {
        width: 84px;
        height: 84px;
    }

    .profile h1 {
        font-size: 24px;
    }

    .bio {
        padding: 0 10px;
    }

    .link-card {
        min-height: 62px;

        border-radius: 15px;
    }

    .link-icon {
        width: 41px;
        height: 41px;

        flex-basis: 41px;
    }

}


/* VERY SMALL MOBILE */

@media (max-width: 350px) {

    main {
        width: calc(100% - 18px);
    }

    .link-card {
        gap: 10px;

        padding-right: 9px;
    }

    .link-text small {
        font-size: 8px;
    }

}