
body {
  background:#0d0d0d;
  color:#eee;
}

.profile {
  max-width:720px;
  margin:auto;
  padding:16px;
}

.gallery {
  background:#111;
  padding:16px;
  border-radius:16px;
}

/* CONTENEDOR */
.main-image {
  width:100%;
  max-height:max-content;
  display:flex;
  justify-content:center;
}

/* WRAPPER REAL */
.image-box {
  position:relative;
  max-width:420px;
  width:100%;
  border-radius:14px;
  overflow:hidden;
  background:#000;
}

/* IMG */
.image-box img {
  width:100%;
  height:auto;
  display:block;
  transition:.25s;
}

.image-box.locked img {
  filter:blur(14px);
}

/* OVERLAY */
.censor-overlay {
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.65);
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:24px;
}

.censor-overlay h5 {
  color:#fff;
  font-weight:700;
  margin-bottom:6px;
}

.censor-overlay p {
  color:#ddd;
  font-size:.9rem;
  margin-bottom:12px;
}

/* THUMBS */
.thumbs {
  display:flex;
  gap:10px;
  margin-top:14px;
  overflow-x:auto;
}

.thumb {
  width:78px;
  height:100px;
  border-radius:10px;
  overflow:hidden;
  cursor:pointer;
  border:2px solid transparent;
  position:relative;
}

.thumb img {
  width:100%;
  height:100%;
  object-fit:cover;
}

.thumb.locked img {
  filter:blur(8px);
}

.thumb.locked::after {
  content:"🔒";
  position:absolute;
  inset:0;
  display:flex;
  justify-content:center;
  align-items:center;
  background:rgba(0,0,0,.45);
}