/* ================================================================
   cyberpuponline — custom theme extras
   Catppuccin Mocha + pastel pink · chaotic little creature
   ================================================================ */


/* ── Avatar spinning gradient ring ─────────────────────────────── */

.avatar-ring-wrapper {
    display: inline-block;
    border-radius: 50%;
    padding: 4px;
    background: conic-gradient(
        #f5c2e7,
        #cba6f7,
        #b4befe,
        #cba6f7,
        #f5c2e7
    );
    animation: spinBorder 4s linear infinite;
    line-height: 0;
}

.avatar-ring-wrapper .rounded-avatar {
    border-radius: 50%;
    display: block;
    animation: counterSpin 4s linear infinite;
    background: #1e1e2e;
}


/* ── Floating emoji ─────────────────────────────────────────────── */

.floating-emoji {
    position: fixed;
    bottom: -60px;
    z-index: 0;
    pointer-events: none;
    user-select: none;
    animation: floatUp linear forwards;
    will-change: transform, opacity;
}

/* Keep page content above the emoji layer */
.container {
    position: relative;
    z-index: 1;
}


/* ── Page title (name) styling ──────────────────────────────────── */

h1 {
    background: linear-gradient(135deg, #f5c2e7 30%, #cba6f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* ── Bio / description text ─────────────────────────────────────── */

p {
    color: #bac2de;
    font-size: 16px;
}


/* ── Social icons glow on hover ─────────────────────────────────── */

.social-icon {
    transition: color 0.2s ease, filter 0.2s ease;
}

.social-icon:hover {
    color: #f5c2e7 !important;
    filter: drop-shadow(0 0 6px rgba(245, 194, 231, 0.7));
}


/* ── Button pink glow (default + custom) ────────────────────────── */

.button.button-default:hover,
.button.button-custom:hover {
    box-shadow: 0 0 20px rgba(245, 194, 231, 0.5), 0 0 40px rgba(203, 166, 247, 0.25);
}


/* ── Twitch button extra flair ──────────────────────────────────── */

.button.button-twitch:hover {
    box-shadow: 0 0 20px rgba(145, 70, 255, 0.55);
}


/* ── Credit footer ──────────────────────────────────────────────── */

.credit-txt-clr {
    color: #6c7086 !important;
    transition: color 0.2s ease;
}

.credit-txt-clr:hover {
    color: #f5c2e7 !important;
}
