/* Letter Glitch Background Styles */

/* Profile wrapper - outer box with glitch background */
.profile-wrapper {
    position: relative;
    width: 260px;
    height: 350px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

#letter-glitch-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    overflow: hidden;
    z-index: 0;
    border-radius: 16px;
}

.letter-glitch-canvas {
    display: block;
    width: 100%;
    height: 100%;
}

.letter-glitch-outer-vignette {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(0,0,0,0) 60%, rgba(0,0,0,1) 100%);
    border-radius: 16px;
}

.letter-glitch-center-vignette {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 60%);
    border-radius: 16px;
}

/* Make the photo container sit on top of glitch background */
.profile-wrapper .container {
    position: relative;
    z-index: 1;
}
