@import url("https://fonts.googleapis.com/css2?family=Lexend:wght@300;400;500;600;700&display=swap");
:root {
    --bg: #000;
    --font-family: Lexend, system-ui, sans-serif;
    --font-color: #fff;
    --font-size: 13px;
    --img-size: 90px;
    --icon-size: 20px;
    --icon-box: 30px;
    --icon-gap: 18px;
    --icon-color: #fff;
    --title-size: 16px;
    --subtitle-size: 10px;
    --title-glow: rgba(255, 255, 255, 0.34);
    --subtitle-glow: rgba(255, 255, 255, 0.18);
    --icon-glow: rgba(255, 255, 255, 0.67);
    --gap-after-image: 15px;
    --gap-after-title: 8px;
    --gap-after-subtitle: 15px
    }
html, body, #root {
    height: 100%
    }
body {
    margin: 0;
    background: var(--bg)
    }
* {
    box-sizing: border-box
    }
.wrap {
    min-height: 100vh;
    display: grid;
    place-items: center;
    font-family: var(--font-family);
    color: var(--font-color)
    }
.centerpiece {
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translatey(-20px)
    }
.frameWrap {
    position: relative;
    width: var(--img-size);
    height: var(--img-size);
    border-radius: 9999px;
    isolation: isolate
    }
.frameWrap::before {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: inherit;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 45%, transparent 75%);
    filter: blur(12px);
    z-index: -1;
    pointer-events: none
    }
.circleFrame {
    width: 100%;
    height: 100%;
    border-radius: 9999px;
    overflow: hidden;
    position: relative
    }
.circleImg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center
    }
.heroImage {
    position: relative;
    z-index: 1
    }
.lovingLayout .textBlock {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    margin-top: var(--gap-after-image)
    }
.titleText {
    margin: 0;
    margin-bottom: var(--gap-after-title);
    font-size: var(--title-size);
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0;
    color: var(--font-color);
    text-shadow: 0 0 8px var(--title-glow), 0 0 16px rgba(255, 255, 255, 0.12)
    }
.subtitleText {
    margin: 0;
    font-size: var(--subtitle-size);
    font-weight: 500;
    line-height: 1.15;
    color: rgba(255, 255, 255, 0.82);
    text-shadow: 0 0 10px var(--subtitle-glow)
    }
.lovingLayout .socials {
    display: flex;
    gap: var(--icon-gap);
    margin-top: var(--gap-after-subtitle)
    }
.socialLink {
    width: var(--icon-box);
    height: var(--icon-box);
    display: inline-grid;
    place-items: center;
    opacity: 0;
    animation: iconFadeIn 1400ms ease-out 0.15s forwards
    }
.socialLink img, .socialLink svg {
    width: var(--icon-size);
    height: var(--icon-size);
    transition: transform 320ms ease, filter 320ms ease, opacity 320ms ease;
    filter: drop-shadow(0 0 4px var(--icon-glow)) drop-shadow(0 0 10px rgba(255, 255, 255, 0.18))
    }
.throneIcon {
    color: var(--icon-color)
    }
.socials[data-hover="shrink"] .socialLink:hover img, .socials[data-hover="shrink"] .socialLink:hover svg {
    transform: scale(0.9);
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.7)) drop-shadow(0 0 14px rgba(255, 255, 255, 0.28))
    }
@keyframes iconFadeIn {
    to {
        opacity: 1;
        }
    }