#cursor {
    position: fixed;
    top: 0; left: 0;
    width: 10px; height: 10px;
    background-color: #fff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 100000;
    mix-blend-mode: difference;
    transform: translate(-50%, -50%);
    
    transition: width 0.2s ease-out, height 0.2s ease-out;
    will-change: transform, width, height;
}
body.hovering #cursor {
    width: 14px;
    height: 14px;
}
:root {
    --bg: #050505;
    --card: rgba(20, 20, 20, 0.6);
    --border: rgba(255, 255, 255, 0.06);
    --text: #ffffff;
    --text-dim: #737373;
    --accent: #fff;
    --online: #23a559;
    --idle: #f0b232;
    --dnd: #f23f43;
    --offline: #80848e;
}
html, body { width: 100%; height: 100%; margin: 0; padding: 0; overflow: hidden; background-color: var(--bg); }
* { box-sizing: border-box; font-family: 'Inter', sans-serif; -webkit-font-smoothing: antialiased; cursor: none !important; }
body { color: var(--text); display: flex; justify-content: center; align-items: center; position: relative; perspective: 1500px; }
.mesh-bg { position: fixed; inset: -20%; background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.03) 0%, transparent 50%), radial-gradient(circle at 0% 0%, rgba(60, 60, 60, 0.05) 0%, transparent 40%), radial-gradient(circle at 100% 100%, rgba(30, 30, 30, 0.05) 0%, transparent 40%); z-index: -2; animation: pulseBg 10s ease-in-out infinite alternate; }
@keyframes pulseBg { 0% { transform: scale(1); } 100% { transform: scale(1.05); } }
.noise-overlay { position: fixed; inset: 0; opacity: 0.03; pointer-events: none; z-index: -1; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E"); }
.card-wrapper { width: 360px; background: var(--card); backdrop-filter: blur(40px); -webkit-backdrop-filter: blur(40px); border: 1px solid var(--border); border-radius: 24px; box-shadow: 0 0 0 1px rgba(0,0,0,0.2), 0 20px 40px -10px rgba(0,0,0,0.5); position: relative; transform-style: preserve-3d; transition: transform 0.1s ease-out; }
.card-banner { height: 130px; background-size: cover; background-position: center; border-radius: 24px 24px 0 0; mask-image: linear-gradient(to bottom, black 40%, transparent 100%); -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%); }
.card-content { padding: 0 24px 24px; position: relative; z-index: 2; transform: translateZ(20px); }
.header { display: flex; align-items: flex-end; gap: 16px; margin-top: -50px; margin-bottom: 20px; }
.avatar-block { position: relative; width: 88px; height: 88px; flex-shrink: 0; }
#avatar { width: 100%; height: 100%; border-radius: 50%; border: 5px solid #141414; background: #141414; }
.status-cutout { position: absolute; bottom: 0; right: 0; width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; }
.status-bg { position: absolute; inset: -4px; border-radius: 50%; background: #141414; z-index: 1; }
.status-indicator { position: relative; z-index: 2; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.s-dot { width: 100%; height: 100%; border-radius: 50%; }
.s-online { background: var(--online); }
.s-offline { border: 3px solid #141414; background: var(--offline); width: 12px; height: 12px; margin: auto; }
.s-dnd { background: var(--dnd); width: 100%; height: 100%; border-radius: 50%; position: relative; }
.s-dnd::after { content:''; position: absolute; width: 10px; height: 3px; background: #141414; border-radius: 2px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.s-idle { background: var(--idle); width: 100%; height: 100%; border-radius: 50%; mask: radial-gradient(circle at 20% 20%, transparent 38%, black 40%); -webkit-mask: radial-gradient(circle at 20% 20%, transparent 38%, black 40%); transform: rotate(-30deg); }
.user-info { padding-bottom: 6px; }
.name-row { display: flex; align-items: center; gap: 6px; }
h1 { font-size: 1.25rem; font-weight: 600; letter-spacing: -0.02em; }
.verify { font-size: 0.9rem; color: var(--text); opacity: 0.8; }
.username { font-size: 0.85rem; color: var(--text-dim); display: block; margin-top: 2px; }
.lang-row { display: flex; justify-content: center; gap: 10px; margin-bottom: 12px; }
.lang-pill { display: flex; align-items: center; gap: 6px; background: rgba(255, 255, 255, 0.03); border: 1px solid var(--border); padding: 4px 10px; border-radius: 20px; font-size: 0.75rem; color: var(--text-dim); transition: 0.3s; }
.lang-pill:hover { background: rgba(255, 255, 255, 0.08); color: var(--text); border-color: rgba(255, 255, 255, 0.15); }
.lang-pill img { width: 14px; height: 14px; border-radius: 50%; object-fit: cover; }
.tech-stack { display: flex; gap: 12px; margin-bottom: 24px; justify-content: center; }
.tech { font-size: 1.25rem; color: var(--text-dim); transition: 0.3s; filter: grayscale(1); opacity: 0.6; }
.tech:hover { filter: grayscale(0); opacity: 1; transform: translateY(-2px); }
.js:hover { color: #f7df1e; }
.html:hover { color: #6cc24a; }
.react:hover { color: #61dbfb; }
.csharp:hover { color: #4584b6; }
.db:hover { color: #f29111; }
.csharp span {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700; 
    font-size: 1.1rem;
    letter-spacing: -1px;
    margin-top: 2px;
}
.csharp:hover { 
    color: #9b4993; 
    border-color: #9b4993;
    text-shadow: 0 0 15px rgba(155, 73, 147, 0.4);
}
.separator { height: 1px; background: var(--border); width: 100%; margin: 20px 0; }
.stats-row { display: flex; justify-content: space-between; background: rgba(255,255,255,0.02); border-radius: 12px; padding: 12px 16px; font-size: 0.85rem; color: var(--text-dim); border: 1px solid var(--border); }
.stat { display: flex; align-items: center; gap: 8px; }
.interact { cursor: pointer; transition: 0.2s; }
.interact:hover { color: var(--dnd); }
.interact.liked { color: var(--dnd); }
.hidden { display: none !important; }
.activity-widget { margin-top: 20px; position: relative; background: rgba(0,0,0,0.2); border-radius: 16px; padding: 16px; border: 1px solid var(--border); }
.act-body { display: flex; gap: 12px; align-items: center; position: relative; }
#act-img { width: 48px; height: 48px; border-radius: 8px; object-fit: cover; }
.act-icon-small img { width: 18px; height: 18px; border-radius: 50%; position: absolute; bottom: -4px; left: 36px; background: #000; border: 2px solid #000; }
.act-text { flex: 1; overflow: hidden; display: flex; flex-direction: column; justify-content: center; }
#act-name { font-size: 0.9rem; font-weight: 600; display: block; }
#act-details, #act-state { font-size: 0.75rem; color: var(--text-dim); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block; }
.act-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.1); border-radius: 50%; cursor: pointer; font-size: 0.7rem; color: var(--text); opacity: 0; transition: 0.2s; z-index: 10; }
.activity-widget:hover .act-nav { opacity: 1; }
.prev { left: -10px; } .next { right: -10px; }
.act-nav:hover { background: rgba(255,255,255,0.2); }
.progress-line { width: 100%; height: 2px; background: rgba(255,255,255,0.05); margin-top: 12px; overflow: hidden; border-radius: 2px; }
#progress-fill { width: 0%; height: 100%; background: var(--text); transition: width 1s linear; }
.act-timer { font-size: 0.7rem; color: var(--text-dim); margin-top: 4px; text-align: right; font-variant-numeric: tabular-nums; }
.input-area { display: flex; gap: 8px; align-items: center; }
#anon-input { flex: 1; background: transparent; border: none; padding: 10px 0; color: var(--text); font-size: 0.9rem; outline: none; border-bottom: 1px solid var(--border); transition: 0.3s; }
#anon-input:focus { border-bottom-color: var(--text); }
#anon-input::placeholder { color: rgba(255,255,255,0.2); }
#send-btn { background: transparent; border: 1px solid var(--border); color: var(--text); width: 36px; height: 36px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), width 0.3s ease; overflow: hidden; white-space: nowrap; }
#send-btn:hover { background: var(--text); color: #000; transform: rotate(-45deg); }
#send-btn.btn-success { background-color: var(--online) !important; border-color: var(--online) !important; color: #fff !important; transform: scale(1.05); }
#send-btn.btn-error { background-color: var(--dnd) !important; border-color: var(--dnd) !important; color: #fff !important; animation: shake 0.4s ease-in-out; }
@keyframes flyAway { 0% { transform: translate(0, 0) scale(1); opacity: 1; } 50% { transform: translate(15px, -15px) scale(0.8); opacity: 0.5; } 100% { transform: translate(30px, -30px) scale(0); opacity: 0; } }
.icon-fly { display: inline-block; animation: flyAway 0.6s forwards ease-in-out; }
@keyframes popIn { 0% { transform: scale(0); opacity: 0; } 80% { transform: scale(1.2); opacity: 1; } 100% { transform: scale(1); opacity: 1; } }
.icon-pop { display: inline-block; animation: popIn 0.3s forwards ease-out; }
@keyframes shake { 0%, 100% { transform: translateX(0); } 25% { transform: translateX(-5px); } 50% { transform: translateX(5px); } 75% { transform: translateX(-5px); } }
#preloader { position: fixed; inset: 0; background: #000; z-index: 999999; display: flex; justify-content: center; align-items: center; transition: opacity 0.8s ease-out, visibility 0.8s; cursor: pointer; }
#preloader.loaded { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-content { display: flex; flex-direction: column; align-items: center; gap: 20px; color: #fff; font-family: 'Inter', monospace; font-size: 0.9rem; letter-spacing: 2px; animation: blinkText 2s infinite; }
@keyframes blinkText { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
#audio-toggle { position: fixed; top: 20px; right: 20px; width: 40px; height: 40px; background: rgba(255,255,255,0.05); border: 1px solid var(--border); border-radius: 50%; color: var(--text-dim); display: flex; justify-content: center; align-items: center; cursor: pointer; z-index: 200000; transition: 0.3s; }
#audio-toggle:hover { color: #fff; background: rgba(255,255,255,0.1); }
#username-copy { cursor: pointer; transition: 0.3s; position: relative; }
#username-copy:hover { color: #fff; text-shadow: 0 0 10px rgba(255,255,255,0.5); }
#username-copy::after { content: 'Skopiowano!'; position: absolute; top: -25px; left: 50%; transform: translateX(-50%); background: #fff; color: #000; padding: 2px 6px; border-radius: 4px; font-size: 0.7rem; opacity: 0; pointer-events: none; transition: 0.2s; }
#username-copy.copied::after { opacity: 1; top: -30px; }
#hacker-overlay { position: fixed; inset: 0; background: #000; z-index: 99999; display: flex; justify-content: center; align-items: center; opacity: 0; pointer-events: none; transition: opacity 0.5s ease-out; }
#hacker-overlay.active { opacity: 1; pointer-events: all; }
#hacker-overlay img { width: 100%; height: 100%; object-fit: contain; }
.discord-guzik {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 10px;
}
.discord-guzik:hover {
    background: rgba(88, 101, 242, 0.1);
    border-color: #5865F2;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(88, 101, 242, 0.2);
}
.discord-guzik i {
    font-size: 1.1rem;
}
.discord-guzik {
    cursor: none !important;
}