/* â•â•â• PROFILE PAGE CSS v6 - ulica.club â•â•â• */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

:root {
    --bg: #07070b;
    --accent: #6c5ce7;
    --accent-rgb: 108, 92, 231;
    --accent-glow: rgba(108, 92, 231, .35);
    --card-bg: #0e0e16;
    --card-opacity: 0.72;
    --card-blur: 40px;
    --card-bdr-w: 1px;
    --card-bdr-c: rgba(255, 255, 255, .05);
    --card-r: 18px;
    --card-shadow: 0 8px 40px rgba(0, 0, 0, .35);
    --card-border: rgba(255, 255, 255, .05);
    --text: #e5e5eb;
    --dim: #7d7f8a;
    --muted: #3e3f47;
    --r: 18px;
    --ease: cubic-bezier(.4, 0, 0, 1);
    color-scheme: dark
}

::selection { background: rgba(108, 92, 231, .35); color: #fff; }
::-moz-selection { background: rgba(108, 92, 231, .35); color: #fff; }

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--font, 'Inter'), system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100dvh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    cursor: var(--cursor, auto)
}

/* â•â•â• BG LAYERS â•â•â• */
.bg-layer {
    position: fixed;
    inset: 0;
    z-index: 0
}

.bg-main {
    transition: background .8s ease
}

.bg-main.has-img {
    background-size: cover;
    background-position: center
}

.bg-main::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 30%, transparent 0%, rgba(6, 6, 8, .6) 65%, rgba(6, 6, 8, .9) 100%)
}

.bg-video {
    position: fixed;
    inset: 0;
    z-index: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    opacity: .4
}

.bg-noise {
    z-index: 1;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.025'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: .12
}

.bg-overlay {
    z-index: 2;
    pointer-events: none
}


@keyframes grainShift {
    from {
        translate: 0 0
    }

    to {
        translate: -2px 2px
    }
}

.bg-fx {
    z-index: 3;
    pointer-events: none;
    overflow: visible;
    width: 100vw;
    height: 100vh
}

/* â•â•â• WRAPPER â•â•â• */
.page-wrap {
    position: relative;
    z-index: 5;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 20px;
    gap: 10px
}

/* â•â•â• Card Connector â•â•â• */
.card-connector {
    width: 1px;
    height: 12px;
    background: linear-gradient(180deg, rgba(108, 92, 231, 0.15), rgba(108, 92, 231, 0.03));
    flex-shrink: 0;
}

/* â•â•â• PROFILE CARD â•â•â• */
.profile-card {
    width: 100%;
    max-width: 480px;
    background: var(--card-computed, rgba(14, 14, 22, 0.72));
    backdrop-filter: blur(var(--card-blur, 40px)) saturate(1.4);
    -webkit-backdrop-filter: blur(var(--card-blur, 40px)) saturate(1.4);
    border: var(--card-bdr-w, 1px) solid var(--card-bdr-c, rgba(255, 255, 255, .05));
    border-radius: var(--card-r, 18px);
    overflow: hidden;
    position: relative;
    animation: cardIn .8s var(--ease) both;
    box-shadow: var(--card-shadow, 0 8px 40px rgba(0, 0, 0, .35));
    display: flex;
    flex-direction: column
}

.profile-card.no-border {
    border: none;
    box-shadow: var(--card-shadow, 0 8px 40px rgba(0, 0, 0, .35))
}

.profile-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--card-r, 18px);
    background: linear-gradient(180deg, rgba(var(--accent-rgb), .04) 0%, transparent 40%);
    pointer-events: none;
    z-index: 1
}

@keyframes cardIn {
    from {
        opacity: 0;
        translate: 0 32px;
        filter: blur(6px)
    }

    to {
        opacity: 1;
        translate: 0;
        filter: blur(0)
    }
}

/* â•â•â• CARD DECORATIONS â•â•â• */
.card-deco {
    position: absolute;
    z-index: 10;
    pointer-events: none;
    inset: 0
}

/* --- neon-glow: pulsating neon border using accent color --- */
.profile-card.deco-neon-glow {
    animation: cardIn .8s var(--ease) both, neonGlowPulse 3s ease-in-out infinite;
}
@keyframes neonGlowPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(var(--accent-rgb), .25), 0 0 60px rgba(var(--accent-rgb), .1),
                    inset 0 0 20px rgba(var(--accent-rgb), .05), 0 8px 40px rgba(0, 0, 0, .35)
    }
    50% {
        box-shadow: 0 0 40px rgba(var(--accent-rgb), .45), 0 0 100px rgba(var(--accent-rgb), .2),
                    inset 0 0 40px rgba(var(--accent-rgb), .08), 0 8px 40px rgba(0, 0, 0, .35)
    }
}

/* --- holographic: iridescent sweeping shimmer across card border --- */
.profile-card.deco-holographic {
    border-image: linear-gradient(
        var(--holo-angle, 135deg),
        rgba(255,0,128,.4), rgba(0,255,200,.4), rgba(100,100,255,.4),
        rgba(255,200,0,.4), rgba(255,0,128,.4)
    ) 1;
    animation: cardIn .8s var(--ease) both, holoSweep 4s linear infinite;
}
@keyframes holoSweep {
    0% { --holo-angle: 0deg }
    100% { --holo-angle: 360deg }
}
@property --holo-angle {
    syntax: '<angle>';
    initial-value: 135deg;
    inherits: false;
}
.profile-card.deco-holographic::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(
        var(--holo-angle, 135deg),
        rgba(255,0,128,.15), rgba(0,255,200,.15), rgba(100,100,255,.15),
        rgba(255,200,0,.15), rgba(255,0,128,.15)
    );
    z-index: -1;
    animation: holoSweep 4s linear infinite;
    filter: blur(8px);
}

/* --- shadow-pulse: expanding/contracting shadow aura --- */
.profile-card.deco-shadow-pulse {
    animation: cardIn .8s var(--ease) both, shadowPulseCard 2.5s ease-in-out infinite;
}
@keyframes shadowPulseCard {
    0%, 100% {
        box-shadow: 0 0 30px rgba(var(--accent-rgb), .08), 0 4px 20px rgba(0,0,0,.3)
    }
    50% {
        box-shadow: 0 0 60px rgba(var(--accent-rgb), .2), 0 0 100px rgba(var(--accent-rgb), .08),
                    0 8px 40px rgba(0,0,0,.35)
    }
}

/* --- corner-stars: animated glowing dots in each corner --- */
.card-deco.deco-corner-stars::before,
.card-deco.deco-corner-stars::after {
    content: 'âś¦';
    position: absolute;
    font-size: 14px;
    color: var(--accent);
    filter: drop-shadow(0 0 6px var(--accent-glow));
    animation: cornerTwinkle 2s ease-in-out infinite;
    z-index: 11;
}
.card-deco.deco-corner-stars::before { top: 8px; left: 10px; }
.card-deco.deco-corner-stars::after { top: 8px; right: 10px; animation-delay: .5s; }
.profile-card.deco-corner-stars .p-body::before,
.profile-card.deco-corner-stars .p-body::after {
    content: 'âś¦';
    position: absolute;
    font-size: 14px;
    color: var(--accent);
    filter: drop-shadow(0 0 6px var(--accent-glow));
    animation: cornerTwinkle 2s ease-in-out infinite;
    z-index: 11;
    bottom: 8px;
}
.profile-card.deco-corner-stars .p-body::before { left: 10px; animation-delay: 1s; }
.profile-card.deco-corner-stars .p-body::after { right: 10px; animation-delay: 1.5s; }
@keyframes cornerTwinkle {
    0%, 100% { opacity: .4; scale: .8; }
    50% { opacity: 1; scale: 1.2; }
}

/* --- gradient-frame: rotating gradient border effect --- */
.profile-card.deco-gradient-frame {
    position: relative;
    animation: cardIn .8s var(--ease) both;
}
.profile-card.deco-gradient-frame::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: conic-gradient(from var(--grad-angle, 0deg),
        var(--accent), #00cec9, #fd79a8, #fdcb6e, var(--accent));
    z-index: -1;
    animation: gradFrameRot 4s linear infinite;
    opacity: .6;
}
.profile-card.deco-gradient-frame::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: conic-gradient(from var(--grad-angle, 0deg),
        var(--accent), #00cec9, #fd79a8, #fdcb6e, var(--accent));
    z-index: -1;
    animation: gradFrameRot 4s linear infinite;
    filter: blur(12px);
    opacity: .3;
}
@property --grad-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}
@keyframes gradFrameRot {
    to { --grad-angle: 360deg; }
}

/* â•â•â• BANNER â•â•â• */
.p-banner {
    height: 160px;
    width: 100%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(var(--accent-rgb), .12), rgba(var(--accent-rgb), .03));
    flex-shrink: 0
}

.p-banner img,
.p-banner video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.p-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(14, 14, 22, .85) 0%, rgba(14, 14, 22, .15) 50%, transparent 100%)
}

/* â•â•â• BODY â•â•â• */
.p-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 28px 28px;
    position: relative;
    z-index: 2;
    gap: 6px;
    flex: 1
}

/* â•â•â• HORIZONTAL LAYOUT â•â•â• */
.p-body-horizontal {
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    padding: 0 28px 16px
}

.p-body-horizontal .avatar-ring {
    margin-top: -40px;
    margin-bottom: 0;
    flex-shrink: 0
}

.p-body-horizontal .p-left {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center
}

.p-body-horizontal .p-right {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-top: 8px
}

.p-body-horizontal .p-name {
    text-align: left;
    font-size: 22px
}

.p-body-horizontal .p-badges {
    justify-content: flex-start
}

.p-body-horizontal .p-tags {
    justify-content: flex-start
}

.p-body-horizontal .p-bio {
    text-align: left;
    margin-bottom: 0
}

.p-body-bottom {
    padding: 6px 28px 24px;
    position: relative;
    z-index: 2
}

.layout-horizontal .p-banner {
    height: 170px
}

/* Horizontal - link cards get full width inside p-body-bottom */
.layout-horizontal .p-body-bottom .p-links {
    width: 100%
}

@media (max-width: 380px) {
    .p-body-horizontal {
        flex-direction: column;
        align-items: center
    }
    .p-body-horizontal .p-name {
        text-align: center;
        font-size: 24px
    }
    .p-body-horizontal .p-badges,
    .p-body-horizontal .p-tags {
        justify-content: center
    }
    .p-body-horizontal .p-bio {
        text-align: center
    }
}

/* â•â•â• AVATAR â•â•â• */
.avatar-ring {
    margin-top: -48px;
    position: relative;
    z-index: 2;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    padding: 4px;
    margin-bottom: 4px;
    background: transparent;
    flex-shrink: 0
}

/* --- conic-spin: smoothly rotating conic gradient --- */
.avatar-ring.ring-conic-spin {
    background: conic-gradient(from var(--ring-angle, 0deg), var(--accent), #00cec9, #e84393, var(--accent));
    animation: ringConicSpin 3s linear infinite;
}
@property --ring-angle { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
@keyframes ringConicSpin { to { --ring-angle: 360deg; } }

/* --- plasma: morphing gradient with color shifts --- */
.avatar-ring.ring-plasma {
    background: linear-gradient(var(--plasma-angle, 0deg),
        #7c4dff, #ff006e, #00e5ff, #76ff03, #7c4dff);
    background-size: 400% 400%;
    animation: plasmaMorph 4s ease-in-out infinite;
}
@property --plasma-angle { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
@keyframes plasmaMorph {
    0% { background-position: 0% 50%; --plasma-angle: 0deg; filter: brightness(1); }
    25% { background-position: 50% 100%; --plasma-angle: 90deg; filter: brightness(1.15); }
    50% { background-position: 100% 50%; --plasma-angle: 180deg; filter: brightness(.95); }
    75% { background-position: 50% 0%; --plasma-angle: 270deg; filter: brightness(1.1); }
    100% { background-position: 0% 50%; --plasma-angle: 360deg; filter: brightness(1); }
}

/* --- pulse-wave: radiating waves from avatar --- */
.avatar-ring.ring-pulse-wave {
    background: var(--accent);
    animation: pulseWaveRing 2.5s ease-in-out infinite;
}
@keyframes pulseWaveRing {
    0%, 100% {
        scale: 1;
        box-shadow: 0 0 0 0 rgba(var(--accent-rgb), .4), 0 0 0 0 rgba(var(--accent-rgb), .2);
    }
    50% {
        scale: 1.03;
        box-shadow: 0 0 0 8px rgba(var(--accent-rgb), 0), 0 0 0 16px rgba(var(--accent-rgb), 0);
    }
}

/* --- rgb-shift: chromatic aberration effect on ring --- */
.avatar-ring.ring-rgb-shift {
    background: var(--accent);
    position: relative;
}
.avatar-ring.ring-rgb-shift::before,
.avatar-ring.ring-rgb-shift::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    mix-blend-mode: screen;
}
.avatar-ring.ring-rgb-shift::before {
    background: conic-gradient(from 0deg, #ff0040, transparent 120deg);
    animation: rgbShiftA 3s ease-in-out infinite;
}
.avatar-ring.ring-rgb-shift::after {
    background: conic-gradient(from 180deg, #00f0ff, transparent 120deg);
    animation: rgbShiftB 3s ease-in-out infinite;
}
@keyframes rgbShiftA {
    0%, 100% { rotate: 0deg; opacity: .6; }
    50% { rotate: 60deg; opacity: .9; }
}
@keyframes rgbShiftB {
    0%, 100% { rotate: 0deg; opacity: .6; }
    50% { rotate: -60deg; opacity: .9; }
}

/* --- aurora-ring: northern lights shimmer --- */
.avatar-ring.ring-aurora-ring {
    background: linear-gradient(var(--aurora-angle, 0deg),
        #00ff88, #00bfff, #8b5cf6, #ff006e, #00ff88);
    background-size: 300% 300%;
    animation: auroraRingShift 6s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(0, 191, 255, .2), 0 0 40px rgba(139, 92, 246, .1);
}
@property --aurora-angle { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
@keyframes auroraRingShift {
    0% { background-position: 0% 50%; --aurora-angle: 0deg; }
    33% { background-position: 100% 0%; --aurora-angle: 120deg; }
    66% { background-position: 50% 100%; --aurora-angle: 240deg; }
    100% { background-position: 0% 50%; --aurora-angle: 360deg; }
}

/* --- ring-none fallback --- */
.avatar-ring.ring-none {
    background: rgba(14, 14, 22, .9)
}

.avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    background: rgba(255, 255, 255, .04)
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, .04);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--muted)
}

/* â•â•â• NAME EFFECTS â•â•â• */
.p-name {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -.03em;
    text-align: center;
    line-height: 1.2;
    animation: fadeSlide .5s var(--ease) .15s both;
    width: 100%;
    position: relative
}

/* --- glitch: cyber RGB distortion with clip-path flashes --- */
.p-name.fx-glitch {
    position: relative;
    animation: fadeSlide .5s var(--ease) .15s both, glitchJitter 4s step-end infinite;
}
.p-name.fx-glitch::before,
.p-name.fx-glitch::after {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.p-name.fx-glitch::before {
    color: #ff0040;
    animation: glitchClipA 3s steps(2, end) infinite;
    clip-path: inset(0 0 60% 0);
    text-shadow: 2px 0 #ff0040;
}
.p-name.fx-glitch::after {
    color: #00f0ff;
    animation: glitchClipB 3.5s steps(2, end) infinite;
    clip-path: inset(40% 0 0 0);
    text-shadow: -2px 0 #00f0ff;
}
@keyframes glitchJitter {
    0%, 88%, 100% { text-shadow: none; translate: 0; }
    89% { text-shadow: 3px 0 #ff0040, -3px 0 #00f0ff; translate: -2px 1px; }
    91% { text-shadow: -3px 0 #ff0040, 3px 0 #00f0ff; translate: 2px -1px; }
    93% { text-shadow: none; translate: 0; }
}
@keyframes glitchClipA {
    0% { clip-path: inset(0 0 85% 0); } 20% { clip-path: inset(10% 0 60% 0); }
    40% { clip-path: inset(30% 0 40% 0); } 60% { clip-path: inset(50% 0 20% 0); }
    80% { clip-path: inset(70% 0 5% 0); } 100% { clip-path: inset(0 0 85% 0); }
}
@keyframes glitchClipB {
    0% { clip-path: inset(80% 0 0 0); } 20% { clip-path: inset(50% 0 0 0); }
    40% { clip-path: inset(20% 0 30% 0); } 60% { clip-path: inset(0 0 50% 0); }
    80% { clip-path: inset(40% 0 10% 0); } 100% { clip-path: inset(80% 0 0 0); }
}

/* --- neon-pulse: breathing neon glow with multi-layer text-shadow --- */
.p-name.fx-neon-pulse {
    text-shadow:
        0 0 7px currentColor, 0 0 20px currentColor,
        0 0 60px rgba(var(--accent-rgb), .3), 0 0 120px rgba(var(--accent-rgb), .1);
    animation: fadeSlide .5s var(--ease) .15s both, neonBreath 2.5s ease-in-out infinite;
}
@keyframes neonBreath {
    0%, 100% {
        filter: brightness(1);
        text-shadow: 0 0 7px currentColor, 0 0 20px currentColor, 0 0 60px rgba(var(--accent-rgb), .3);
    }
    50% {
        filter: brightness(.8);
        text-shadow: 0 0 4px currentColor, 0 0 12px currentColor, 0 0 30px rgba(var(--accent-rgb), .15);
    }
}

/* --- rainbow-flow: smooth rainbow gradient flowing across text --- */
.p-name.fx-rainbow-flow {
    background: linear-gradient(90deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3, #54a0ff, #5f27cd, #ff6b6b);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeSlide .5s var(--ease) .15s both, rainbowSlide 3s linear infinite;
}
@keyframes rainbowSlide {
    to { background-position: -300% 0; }
}

/* --- typewriter: blinking cursor at end --- */
.p-name.fx-typewriter {
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid currentColor;
    display: inline-block;
    animation: fadeSlide .5s var(--ease) .15s both, typeCaretBlink .8s step-end infinite;
}
@keyframes typeCaretBlink {
    0%, 100% { border-color: currentColor; }
    50% { border-color: transparent; }
}

/* --- hologram: scanning holographic line effect --- */
.p-name.fx-hologram {
    position: relative;
    color: rgba(var(--accent-rgb), .9);
    text-shadow: 0 0 8px rgba(var(--accent-rgb), .4);
    animation: fadeSlide .5s var(--ease) .15s both, holoFlicker 4s ease-in-out infinite;
}
.p-name.fx-hologram::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 0%, rgba(var(--accent-rgb), .1) 50%, transparent 100%);
    background-size: 100% 4px;
    animation: holoScan 2s linear infinite;
    pointer-events: none;
}
@keyframes holoFlicker {
    0%, 100% { opacity: 1; }
    92% { opacity: 1; }
    93% { opacity: .6; }
    94% { opacity: 1; }
    96% { opacity: .8; }
    97% { opacity: 1; }
}
@keyframes holoScan {
    from { background-position: 0 0; }
    to { background-position: 0 8px; }
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        translate: 0 10px
    }

    to {
        opacity: 1;
        translate: 0
    }
}

/* â•â•â• BADGES / TAGS / BIO â•â•â• */

.p-badges {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeSlide .4s var(--ease) .25s both;
    width: 100%
}

.p-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    background: rgba(255, 255, 255, .04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 100px;
    font-size: 10px;
    font-weight: 700;
    color: var(--dim);
    transition: all .3s var(--ease)
}

.p-badge:hover {
    background: rgba(var(--accent-rgb), .08);
    border-color: rgba(var(--accent-rgb), .12);
    color: var(--accent)
}

.p-tags {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeSlide .4s var(--ease) .28s both;
    width: 100%
}

.p-tag {
    padding: 3px 12px;
    background: rgba(var(--accent-rgb), .08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(var(--accent-rgb), .1);
    border-radius: 100px;
    font-size: 10px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: .06em;
    transition: all .3s var(--ease)
}

.p-tag:hover {
    background: rgba(var(--accent-rgb), .15);
    border-color: rgba(var(--accent-rgb), .2);
    box-shadow: 0 0 12px rgba(var(--accent-rgb), .12)
}

.p-bio {
    font-size: 13px;
    text-align: center;
    color: var(--dim);
    line-height: 1.7;
    max-width: 380px;
    animation: fadeSlide .5s var(--ease) .3s both;
    width: 100%
}

/* â•â•â• SOCIAL ICONS (bare logos, no background) â•â•â• */
.p-social-icons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 14px;
    animation: fadeSlide .5s var(--ease) .32s both
}

.social-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--dim);
    cursor: pointer;
    transition: color .25s var(--ease), transform .25s var(--ease), filter .25s;
    position: relative;
    background: none;
    border: none;
    padding: 4px;
    text-decoration: none;
    outline: none
}

.social-icon-btn:hover {
    color: var(--text);
    transform: scale(1.25);
    filter: drop-shadow(0 0 8px rgba(var(--accent-rgb), .3))
}

.social-icon-btn[data-tooltip]::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 12px;
    background: rgba(10, 10, 14, .92);
    backdrop-filter: blur(12px);
    color: var(--text);
    font-size: 11px;
    font-weight: 600;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s, translate .2s;
    translate: 0 4px;
    z-index: 20;
    border: 1px solid rgba(255, 255, 255, .06)
}

.social-icon-btn:hover[data-tooltip]::before {
    opacity: 1;
    translate: 0 0
}

.social-icon-btn.copied {
    color: var(--accent)
}

.social-icon-btn.copied[data-tooltip]::before {
    content: 'Skopiowano!';
    opacity: 1;
    translate: 0 0;
    background: var(--accent);
    color: #fff;
    border-color: transparent
}

/* â•â•â• LINK CARDS â•â•â• */
.p-links {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px
}

.link-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .04);
    border-radius: 12px;
    color: var(--text);
    text-decoration: none;
    transition: all .35s var(--ease);
    position: relative;
    overflow: hidden;
    cursor: pointer
}

.link-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--link-color, var(--accent));
    border-radius: 0 2px 2px 0;
    opacity: 0;
    scale: .5 1;
    transition: all .35s var(--ease)
}

.link-card:hover {
    background: rgba(var(--accent-rgb), .06);
    border-color: rgba(var(--accent-rgb), .12);
    translate: 0 -2px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .2)
}

.link-card:hover::before {
    opacity: 1;
    scale: 1
}

.link-card-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(var(--accent-rgb), .08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0
}

.link-card-body {
    flex: 1;
    min-width: 0
}

.link-card-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3
}

.link-card-url {
    font-size: 11px;
    color: var(--muted);
    margin-top: 1px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.link-card-arrow {
    color: var(--muted);
    font-size: 12px;
    transition: all .3s var(--ease);
    flex-shrink: 0
}

.link-card:hover .link-card-arrow {
    color: var(--accent);
    translate: 4px 0
}

.link-card.copied-feedback .link-card-title::after {
    content: ' âś“';
    color: var(--accent)
}

/* Link animations */
.link-card.la-pulse {
    animation: laPulse 2s ease-in-out infinite
}

@keyframes laPulse {

    0%,
    100% {
        box-shadow: none
    }

    50% {
        box-shadow: 0 0 16px rgba(var(--accent-rgb), .15)
    }
}

.link-card.la-glow {
    box-shadow: 0 0 8px rgba(var(--accent-rgb), .1);
    animation: laGlow 3s ease-in-out infinite
}

@keyframes laGlow {

    0%,
    100% {
        box-shadow: 0 0 8px rgba(var(--accent-rgb), .1)
    }

    50% {
        box-shadow: 0 0 20px rgba(var(--accent-rgb), .25)
    }
}

.link-card.la-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(var(--accent-rgb), .06), transparent);
    translate: -100% 0;
    animation: laSlide 3s ease-in-out infinite
}

@keyframes laSlide {
    0% {
        translate: -100% 0
    }

    50% {
        translate: 100% 0
    }

    100% {
        translate: 100% 0
    }
}

.link-card.la-shake:hover {
    animation: laShake .4s ease-in-out
}

@keyframes laShake {

    0%,
    100% {
        translate: 0
    }

    25% {
        translate: -3px 0
    }

    75% {
        translate: 3px 0
    }
}

.link-card.la-bounce:hover {
    animation: laBounce .5s ease
}

@keyframes laBounce {

    0%,
    100% {
        translate: 0
    }

    50% {
        translate: 0 -6px
    }
}

.link-card.la-fade-in {
    animation: laFadeIn 1.5s ease-in-out infinite
}

@keyframes laFadeIn {
    0%, 100% { opacity: 1 }
    50% { opacity: .5 }
}

/* â•â•â• DISCORD CARD - matches profile card design â•â•â• */
.dc-card {
    width: 100%;
    max-width: 480px;
    background: var(--card-computed, rgba(14, 14, 22, 0.72));
    backdrop-filter: blur(var(--card-blur, 40px)) saturate(1.4);
    -webkit-backdrop-filter: blur(var(--card-blur, 40px)) saturate(1.4);
    border: var(--card-bdr-w, 1px) solid var(--card-bdr-c, rgba(255, 255, 255, .05));
    border-radius: var(--card-r, 18px);
    overflow: hidden;
    animation: cardIn .8s var(--ease) .15s both;
    box-shadow: var(--card-shadow, 0 8px 40px rgba(0, 0, 0, .35));
    transform-style: preserve-3d;
    transition: transform .08s ease-out;
    will-change: transform;
    position: relative
}

.dc-card.no-border {
    border: none
}

.dc-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--card-r, 18px);
    background: linear-gradient(180deg, rgba(var(--accent-rgb), .03) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0
}

.dc-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px
}

.dc-av-wrap {
    position: relative;
    flex-shrink: 0;
    width: 48px;
    height: 48px
}

.dc-av {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(255, 255, 255, .04)
}

.dc-av img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

/* Status dot - Discord-accurate */
.dc-dot {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 16px;
    height: 16px;
    border: 3px solid rgba(14, 14, 22, .85);
    border-radius: 50%;
    box-sizing: border-box
}

.dc-dot.online {
    background: #23a55a
}

.dc-dot.idle {
    background: #f0b232;
    clip-path: url(#idle-clip)
}

.dc-dot.dnd {
    background: #f23f43
}

.dc-dot.dnd::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 3px;
    background: rgba(14, 14, 22, .85);
    border-radius: 1.5px
}

.dc-dot.offline {
    background: transparent;
    border: 3px solid rgba(14, 14, 22, .85)
}

.dc-dot.offline::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2.5px solid #80848e;
    box-sizing: border-box
}

.dc-dot.offline::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(14, 14, 22, .85)
}

.dc-info {
    flex: 1;
    min-width: 0
}

.dc-name {
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px
}

.dc-status-pill {
    font-size: 10px;
    padding: 2px 8px;
    background: rgba(255, 255, 255, .06);
    border-radius: 100px;
    font-weight: 700;
    color: var(--dim);
    letter-spacing: .02em
}

/* Clan / Guild Tag */
.dc-clan-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 2px 10px;
    background: rgba(88, 101, 242, .1);
    border: 1px solid rgba(88, 101, 242, .15);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 800;
    color: #5865F2;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-top: 4px
}

.dc-clan-tag i {
    font-size: 9px;
    opacity: .7
}

.dc-clan-badge {
    width: 16px;
    height: 16px;
    border-radius: 3px;
    object-fit: contain
}

.dc-custom {
    font-size: 12px;
    color: var(--dim);
    margin-top: 3px;
    display: flex;
    align-items: center;
    gap: 4px
}

.dc-section {
    padding: 0 20px 12px
}

.dc-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 4px
}

.dc-badge-pill {
    padding: 2px 8px;
    background: rgba(255, 255, 255, .04);
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    color: var(--dim);
    display: flex;
    align-items: center;
    gap: 3px
}

.dc-roles {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 4px
}

.dc-role {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 8px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .03);
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    color: var(--dim)
}

.dc-role-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0
}

.dc-divider {
    height: 1px;
    margin: 0 20px;
    background: rgba(255, 255, 255, .04)
}

/* Activities */
.dc-activities {
    padding: 12px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.dc-act {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, .025);
    border-radius: 10px;
    position: relative
}

.dc-act-art {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: rgba(255, 255, 255, .04);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative
}

.dc-act-art img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.dc-act-art i {
    font-size: 22px;
    color: var(--muted)
}

/* Small icon overlay (Discord-style) */
.dc-act-art .dc-act-small {
    position: absolute;
    bottom: -3px;
    right: -3px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(14, 14, 22, .85);
    background: rgba(14, 14, 22, .85)
}

.dc-act-art .dc-act-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%
}

.dc-act-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1px
}

.dc-act-type {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--muted);
    margin-bottom: 1px;
    display: flex;
    align-items: center;
    gap: 4px
}

.dc-act-name {
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.dc-act-detail {
    font-size: 11px;
    color: var(--dim);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.dc-act-elapsed {
    font-size: 10px;
    color: var(--muted);
    margin-top: 2px
}

/* Spotify bar */
.sp-bar {
    margin-top: 6px;
    height: 4px;
    background: rgba(255, 255, 255, .08);
    border-radius: 4px;
    overflow: hidden
}

.sp-fill {
    height: 100%;
    background: #1db954;
    border-radius: 4px;
    transition: width 1s linear
}

.sp-times {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: var(--muted);
    margin-top: 3px
}

/* â•â•â• MUSIC FAB â•â•â• */
.music-fab {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 50;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--card);
    backdrop-filter: blur(24px);
    border: 1px solid var(--card-border);
    color: var(--dim);
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .3s var(--ease)
}

.music-fab:hover {
    scale: 1.1;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .3)
}

.music-fab.playing {
    color: var(--accent);
    box-shadow: 0 0 24px var(--accent-glow);
    animation: mBounce 1s ease infinite
}

@keyframes mBounce {

    0%,
    100% {
        scale: 1
    }

    50% {
        scale: 1.1
    }
}

/* â•â•â• BACK / 404 / LOADING â•â•â• */
.back-link {
    font-size: 12px;
    color: var(--muted);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color .3s ease, gap .3s ease;
    animation: fadeSlide .5s var(--ease) .5s both;
    position: relative;
    padding: 8px 0;
    margin-top: 4px
}

.back-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .3s var(--ease)
}

.back-link:hover {
    color: var(--accent);
    gap: 8px
}

.back-link:hover::after {
    transform: scaleX(1)
}

.not-found {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 60px 20px;
    text-align: center;
    color: var(--muted);
    animation: fadeSlide .6s var(--ease) both
}

.not-found i {
    font-size: 52px;
    opacity: .25
}

.nf-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--dim)
}

.loading-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 100px 0;
    color: var(--muted)
}

.loader-ring {
    width: 24px;
    height: 24px;
    border: 2.5px solid rgba(255, 255, 255, .06);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spinR .65s linear infinite
}

@keyframes spinR {
    to {
        rotate: 360deg
    }
}

/* â•â•â• PARTICLES - unique per type â•â•â• */
.fx-p {
    position: absolute;
    border-radius: 50%
}

/* --- stardust: tiny twinkling star particles drifting upward --- */
.fx-p.stardust {
    background: radial-gradient(circle, rgba(var(--accent-rgb), .6) 0%, rgba(var(--accent-rgb), .1) 50%, transparent 100%);
    box-shadow: 0 0 6px rgba(var(--accent-rgb), .3);
    animation: stardustFloat linear infinite;
    filter: blur(.3px);
}
@keyframes stardustFloat {
    0% { translate: 0 100vh; opacity: 0; scale: .3; }
    10% { opacity: .8; }
    50% { opacity: .5; scale: 1; }
    90% { opacity: .2; }
    100% { translate: var(--dx, 30px) -10vh; opacity: 0; scale: .5; }
}

/* --- snow: realistic snowflakes falling with gentle sway --- */
.fx-p.snow {
    background: radial-gradient(circle, rgba(255,255,255,.9) 0%, rgba(255,255,255,.3) 50%, transparent 100%);
    animation: snowFall linear infinite;
}
@keyframes snowFall {
    0% { translate: 0 -5vh; opacity: 0; }
    10% { opacity: .7; }
    50% { translate: var(--dx, 20px) 50vh; opacity: .5; }
    100% { translate: calc(var(--dx, 20px) * -1) 105vh; opacity: 0; }
}

/* --- rain: fast-falling rain streaks --- */
.fx-p.rain {
    width: 1px !important;
    height: 16px !important;
    border-radius: 0 !important;
    background: linear-gradient(to bottom, transparent, rgba(150,200,255,.6));
    animation: rainDrop linear infinite;
}
@keyframes rainDrop {
    0% { translate: 0 -5vh; opacity: 0; }
    5% { opacity: .7; }
    100% { translate: var(--dx, -10px) 105vh; opacity: .3; }
}

/* --- fireflies: slow pulsing floating lights --- */
.fx-p.fireflies {
    background: radial-gradient(circle, rgba(255,230,100,.8) 0%, rgba(255,200,50,.2) 40%, transparent 70%);
    box-shadow: 0 0 10px rgba(255,230,100,.4);
    animation: fireflyDrift ease-in-out infinite;
}
@keyframes fireflyDrift {
    0% { translate: 0 var(--sy, 50vh); opacity: 0; scale: .5; }
    25% { opacity: .8; scale: 1.2; }
    50% { translate: var(--dx, 40px) calc(var(--sy, 50vh) - 20vh); opacity: .3; scale: .7; }
    75% { opacity: .9; scale: 1; }
    100% { translate: calc(var(--dx, 40px) * -1) var(--sy, 50vh); opacity: 0; scale: .5; }
}

/* --- sakura: cherry blossom petals falling with rotation --- */
.fx-p.sakura {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% 0 50% 0 !important;
    background: linear-gradient(135deg, #ffb7c5, #ff69b4);
    animation: sakuraFall linear infinite;
    opacity: .7;
}
@keyframes sakuraFall {
    0% { translate: 0 -5vh; rotate: 0deg; opacity: 0; }
    10% { opacity: .7; }
    50% { translate: var(--dx, 30px) 50vh; rotate: 180deg; opacity: .5; }
    100% { translate: calc(var(--dx, 30px) * 1.5) 105vh; rotate: 360deg; opacity: 0; }
}

/* â•â•â• OVERLAY EFFECTS â€” premium tier â•â•â• */

/* --- vignette: dark corners radial gradient --- */
.bg-overlay.vignette {
    background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,.6) 100%);
}

/* --- scanlines: retro CRT effect --- */
.bg-overlay.scanlines {
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0,0,0,.08) 2px,
        rgba(0,0,0,.08) 4px
    );
    animation: scanlineScroll 8s linear infinite;
}
@keyframes scanlineScroll {
    0% { background-position: 0 0; }
    100% { background-position: 0 40px; }
}

/* --- bokeh: soft floating light orbs --- */
.bg-overlay.bokeh {
    background:
        radial-gradient(200px circle at 15% 25%, rgba(var(--accent-rgb), .08) 0%, transparent 100%),
        radial-gradient(250px circle at 85% 65%, rgba(100, 200, 255, .06) 0%, transparent 100%),
        radial-gradient(180px circle at 50% 80%, rgba(255, 100, 200, .05) 0%, transparent 100%),
        radial-gradient(150px circle at 70% 20%, rgba(255, 200, 50, .04) 0%, transparent 100%);
    animation: bokehDrift 12s ease-in-out infinite alternate;
}
@keyframes bokehDrift {
    0% { filter: blur(0px); opacity: .5; }
    50% { filter: blur(1px); opacity: .8; }
    100% { filter: blur(0px); opacity: .6; }
}

/* --- haze: colored fog shifting --- */
.bg-overlay.haze {
    background: linear-gradient(
        135deg,
        rgba(var(--accent-rgb), .06) 0%,
        transparent 40%,
        rgba(100, 200, 255, .04) 60%,
        transparent 100%
    );
    background-size: 200% 200%;
    animation: hazeDrift 10s ease-in-out infinite;
}
@keyframes hazeDrift {
    0%, 100% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
}

/* --- film-grain: subtle film noise --- */
.bg-overlay.film-grain {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.06'/%3E%3C/svg%3E");
    opacity: .4;
    animation: grainShift .3s steps(3) infinite;
}
@keyframes grainShift {
    0% { transform: translate(0, 0); }
    33% { transform: translate(-1px, 1px); }
    66% { transform: translate(1px, -1px); }
    100% { transform: translate(0, 0); }
}

/* ═══ LOADING SCREEN ═══ */
.ls-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity .8s cubic-bezier(.4,0,.2,1), visibility .8s;
}
.ls-overlay.ls-fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.ls-bg {
    position: absolute;
    inset: 0;
    background: #060608;
    z-index: 0;
}
.ls-content {
    position: relative;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}
.ls-logo {
    font-size: clamp(48px, 12vw, 96px);
    font-weight: 900;
    letter-spacing: .15em;
    background: linear-gradient(135deg, #fff 0%, rgba(var(--accent-rgb, 108,92,231), .8) 50%, #fff 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: lsLogoShimmer 4s ease-in-out infinite, lsLogoIn 1.2s cubic-bezier(.16,1,.3,1) both;
    filter: drop-shadow(0 0 40px rgba(var(--accent-rgb, 108,92,231), .3));
}
@keyframes lsLogoShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
@keyframes lsLogoIn {
    from { opacity: 0; translate: 0 30px; scale: .9; filter: blur(8px); }
    to { opacity: 1; translate: 0; scale: 1; filter: blur(0); }
}
.ls-text {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255,255,255,.5);
    letter-spacing: .08em;
    text-transform: uppercase;
    animation: lsTextIn 1s cubic-bezier(.16,1,.3,1) .6s both, lsPulse 3s ease-in-out 1.6s infinite;
}
@keyframes lsTextIn {
    from { opacity: 0; translate: 0 16px; }
    to { opacity: 1; translate: 0; }
}
@keyframes lsPulse {
    0%, 100% { opacity: .5; }
    50% { opacity: .9; }
}
.ls-hint {
    animation: lsTextIn 1s cubic-bezier(.16,1,.3,1) 1s both;
}
.ls-cursor {
    display: inline-block;
    width: 24px;
    height: 24px;
    border: 2px solid rgba(255,255,255,.25);
    border-radius: 50%;
    position: relative;
    animation: lsCursorPulse 2s ease-in-out infinite;
}
.ls-cursor::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255,255,255,.6);
    translate: -50% -50%;
}
@keyframes lsCursorPulse {
    0%, 100% { scale: 1; border-color: rgba(255,255,255,.25); }
    50% { scale: 1.15; border-color: rgba(255,255,255,.45); }
}

/* ═══ 404 PAGE - AUTH STYLE ═══ */
.nf-bg { position: fixed; inset: 0; z-index: 0; overflow: hidden }
.nf-glow {
    position: absolute; width: 500px; height: 500px; border-radius: 50%;
    filter: blur(120px); opacity: .08; animation: glowOrbit 20s ease-in-out infinite
}
.nf-glow-1 { background: #7c4dff; top: -200px; left: -200px }
.nf-glow-2 { background: #06b6d4; bottom: -200px; right: -200px; animation-delay: -10s; animation-direction: reverse }
@keyframes glowOrbit {
    0%,100% { translate: 0 0 } 25% { translate: 80px 60px }
    50% { translate: -40px 100px } 75% { translate: 60px -40px }
}

.nf-particles { position: absolute; inset: 0 }
.nf-particle {
    position: absolute; border-radius: 50%; background: rgba(124,77,255,.15);
    animation: nfPartFloat linear infinite
}
@keyframes nfPartFloat {
    0% { translate: 0 110vh; scale: 0; opacity: 0 } 10% { opacity: 1; scale: 1 }
    90% { opacity: .2 } 100% { translate: var(--drift, 0px) -10vh; scale: .3; opacity: 0 }
}

.nf-card {
    width: 100%; max-width: 420px; background: rgba(12,12,16,.75);
    backdrop-filter: blur(40px) saturate(1.4); border: 1px solid rgba(255,255,255,.06);
    border-radius: 14px; padding: 40px 32px; text-align: center; position: relative; overflow: hidden;
    animation: cardIn .7s cubic-bezier(.16,1,.3,1) both;
    box-shadow: 0 8px 40px rgba(0,0,0,.4)
}
.nf-card::before {
    content: ''; position: absolute; inset: -1px; border-radius: 15px; padding: 1px;
    background: linear-gradient(160deg, rgba(124,77,255,.25), transparent 40%, transparent 60%, rgba(6,182,212,.15));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; z-index: 1
}
.nf-icon {
    width: 64px; height: 64px; border-radius: 50%;
    background: rgba(124,77,255,.1);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px; font-size: 26px; color: #7c4dff;
    animation: logoPulse 3s ease-in-out infinite
}
@keyframes logoPulse {
    0%,100% { filter: drop-shadow(0 0 6px rgba(124,77,255,.25)); box-shadow: 0 0 20px rgba(124,77,255,.1) }
    50% { filter: drop-shadow(0 0 16px rgba(124,77,255,.4)); box-shadow: 0 0 40px rgba(124,77,255,.15) }
}
.nf-title { font-size: 24px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 8px }
.nf-desc { font-size: 13px; color: #8b8d95; line-height: 1.7; margin-bottom: 24px }
.nf-desc strong { color: #7c4dff }
.nf-btns { display: flex; flex-direction: column; gap: 8px }
.nf-btn {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 13px 24px; border: none; border-radius: 10px;
    font: inherit; font-size: 13px; font-weight: 700; cursor: pointer;
    text-decoration: none; transition: all .3s cubic-bezier(.16,1,.3,1); position: relative; overflow: hidden
}
.nf-btn.primary {
    background: #7c4dff; color: #fff
}
.nf-btn.primary:hover {
    background: #6a3de8; box-shadow: 0 4px 24px rgba(124,77,255,.3); scale: 1.01
}
.nf-btn.ghost {
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); color: #8b8d95
}
.nf-btn.ghost:hover { color: #e8e8ec; background: rgba(255,255,255,.06) }
.nf-btn .btn-shimmer {
    position: absolute; inset: 0;
    background: linear-gradient(110deg, transparent 25%, rgba(255,255,255,.08) 50%, transparent 75%);
    animation: shimmer 3s ease-in-out infinite
}
@keyframes shimmer { 0%,100% { translate: -100% 0 } 50% { translate: 100% 0 } }


/* ===== Ulica brand gradient ===== */
.ulica-brand-pre {
    background: linear-gradient(135deg, #6c5ce7 0%, #a78bfa 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    font-weight: inherit;
    font-size: inherit;
    font-family: inherit;
    letter-spacing: inherit;
}
.ulica-brand-post {
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
    font-weight: inherit;
    font-size: inherit;
    font-family: inherit;
    letter-spacing: inherit;
}
