body { background: #000; color: #0f0; font-family: 'VT323', monospace; margin: 0; overflow-x: hidden; }

/* EFECTO DE IMAGEN FRAGMENTADA */
.avatar-shard-container { position: relative; width: 95px; height: 95px; margin-bottom: 15px; }
.avatar-shard {
    position: absolute; width: 100%; height: 25%;
    background-size: 95px 95px;
    filter: invert(1) contrast(500%) hue-rotate(calc(var(--index) * 90deg));
    top: calc(var(--index) * 25%);
    left: calc(var(--index) * 5px); /* Desplazamiento lateral */
    animation: shard-float 0.2s infinite alternate;
}

/* IMAGEN DE POST SHATTERED */
.post-img-shatter { height: 420px; position: relative; overflow: hidden; filter: saturate(0) contrast(200%); }
.img-piece {
    position: absolute; width: 100%; height: 16%;
    background-size: cover; background-position: center var(--p);
    top: var(--p);
    left: var(--off)px;
    image-rendering: pixelated; /* Pixeleado forzado */
    mix-blend-mode: screen;
    opacity: 0.8;
    animation: glitch-rgb 0.1s infinite;
}

/* BLOQUES DE RUIDO ALEATORIO */
.hex-noise { background: #f00; color: #000; font-size: 0.7rem; padding: 0 2px; }
.glitch-char { color: #fff; text-shadow: 2px 0 #f0f, -2px 0 #0ff; }

/* ANIMACIONES EXTREMAS */
@keyframes shard-float {
    0% { transform: translateX(0); }
    100% { transform: translateX(15px); filter: invert(0) brightness(2); }
}

@keyframes glitch-rgb {
    0% { filter: hue-rotate(0deg) translateX(0); }
    50% { filter: hue-rotate(180deg) translateX(5px); }
    100% { filter: hue-rotate(360deg) translateX(-5px); }
}

.crypt-body {
    word-break: break-all; font-size: 0.9rem; line-height: 0.8;
    color: #004400; background: rgba(0,20,0,0.3); padding: 10px;
    border: 1px solid #001100; position: relative;
}

/* Pixeles Muertos que aparecen encima */
.crypt-body::after {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(red 1px, transparent 1px);
    background-size: 10px 10px; opacity: 0.2; pointer-events: none;
}

/* =========================
   IDENTIDAD DE USUARIOS
========================= */

.user-line{
    margin: 6px 0 10px 0;
    font-size: 18px;
    color: #fff;
    display: flex;
    align-items: center;
}

.verified{
    color: #00e5ff;
    margin-left: 6px;
    font-weight: bold;
    text-shadow: 0 0 5px #00e5ff;
}

.corrupt-username{
    letter-spacing: 2px;
}

.real-leak {
    color: #fff;
    background: #ff0000;
    padding: 0 4px;
    margin: 0 2px;
    display: inline-block;
    animation: leakFlash 0.4s infinite alternate;
    font-weight: bold;
}

@keyframes leakFlash {
    from { opacity: 0.2; transform: translateY(0); }
    to { opacity: 1; transform: translateY(-2px); }
}
