/* ============================================================
   Üye profili — modüler blok tasarımı (pofil.png mock'u)
   Katmanlar: banner (kapak görseli) → üstüne bindirmeli kart + grid.
   Yüzey dili sitenin geri kalanıyla aynı: #262423 + imza bevel.
   ============================================================ */

.vgnw-pf { background: var(--bg-1); }

/* Kapak bandı */
.vgnw-pf__banner {
  height: 300px;
  background-position: center;
  background-size: cover;
  position: relative;
}
.vgnw-pf__banner::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(23,22,21,0.15) 0%, rgba(23,22,21,0) 35%, rgba(23,22,21,0.55) 100%);
}

/* Rol rengi bant — düz renk, görsel yok */
.vgnw-pf__banner--flat { background-image: none; }
/* Banner'sız (normal üye) — içerik normal akışta başlar */
.vgnw-pf__wrap--flat { margin-top: 28px !important; }

/* İçerik — banner'a bindirme */
.vgnw-pf__wrap {
  position: relative;
  z-index: 1;
  max-width: 1104px;
  margin: -122px auto 0;
  padding: 0 16px 56px;
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 20px;
  align-items: start;
}

/* ── Sol kimlik kartı ── */
.vgnw-pf__card {
  background: var(--bg-2);
  box-shadow:
    inset -4px 4px 0 rgba(255,255,255,0.06),
    inset 4px -4px 0 rgba(0,0,0,0.5),
    0 4px 0 rgba(0,0,0,0.35);
  padding: 28px 26px 30px;
  display: flex;
  flex-direction: column;
  min-height: 780px;
}
.vgnw-pf__id { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.vgnw-pf__name {
  margin: 0;
  color: var(--fg-1);
  font-family: var(--font-body); font-weight: 700;
  font-size: 30px; line-height: 1;
}
.vgnw-pf__role {
  margin: 8px 0 0;
  color: var(--fg-muted);
  font-family: var(--font-body); font-size: 15px; line-height: 1;
}
/* Seviye — piksel altıgen */
.vgnw-pf__level {
  width: 62px; height: 70px; flex: none;
  clip-path: polygon(50% 0, 100% 26%, 100% 74%, 50% 100%, 0 74%, 0 26%);
  background: #1FC02A;
  display: flex; align-items: center; justify-content: center;
}
.vgnw-pf__level-in {
  width: 54px; height: 62px;
  clip-path: polygon(50% 0, 100% 26%, 100% 74%, 50% 100%, 0 74%, 0 26%);
  background: #101a10;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  color: #5DFF76;
}
.vgnw-pf__level-in small {
  font-family: var(--font-pixel); font-weight: 700;
  font-size: 7px; letter-spacing: 1.2px; text-transform: uppercase; line-height: 1;
}
.vgnw-pf__level-in strong { font-family: var(--font-body); font-weight: 700; font-size: 18px; line-height: 1; }

.vgnw-pf__actions { display: grid; gap: 10px; margin-top: 24px; }
.vgnw-pf__btn {
  display: flex; align-items: center; justify-content: center;
  height: 44px; width: 100%; box-sizing: border-box;
  background: var(--bg-3);
  border: 0; cursor: pointer;
  color: var(--fg-1); text-decoration: none;
  font-family: var(--font-pixel); font-weight: 700;
  font-size: 10px; letter-spacing: 1.6px; text-transform: uppercase;
  box-shadow: 0 3px 0 0 #4D4D4D;
  transition: filter var(--dur-default) var(--ease-ui), transform var(--dur-default) var(--ease-ui);
}
.vgnw-pf__btn:hover { filter: brightness(1.12); }
.vgnw-pf__btn:active { transform: translateY(2px); box-shadow: 0 1px 0 0 #4D4D4D; }

/* ── Modüler bloklar: kaldır (×), "+" slotu, eğlenceli boş durumlar ── */
.vgnw-pf__mod,
.vgnw-pf__statswrap { position: relative; }
.vgnw-pf__mod-x-form { position: absolute; top: 10px; right: 10px; z-index: 3; margin: 0; }
.vgnw-pf__mod-x {
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.45);
  border: 0; cursor: pointer;
  color: var(--fg-muted);
  font-family: var(--font-body); font-size: 15px; line-height: 1;
  opacity: 0;
  transition: opacity var(--dur-default) var(--ease-ui), background var(--dur-default) var(--ease-ui), color var(--dur-default) var(--ease-ui);
}
.vgnw-pf__mod:hover .vgnw-pf__mod-x,
.vgnw-pf__statswrap:hover .vgnw-pf__mod-x,
.vgnw-pf__mod-x:focus-visible { opacity: 1; }
.vgnw-pf__mod-x:hover { background: var(--mctr-red); color: var(--fg-1); }

.vgnw-pf__empty {
  min-height: 150px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  padding: 16px;
  text-align: center;
  color: var(--fg-muted);
  font-family: var(--font-body); font-size: 14.5px;
}
.vgnw-pf__empty-btn {
  background: transparent; border: 0; cursor: pointer; padding: 0;
  color: var(--fg-2);
  text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(255,255,255,0.25);
  font-family: var(--font-body); font-size: 13px;
  transition: color var(--dur-default) var(--ease-ui);
}
.vgnw-pf__empty-btn:hover { color: var(--mctr-red); }

.vgnw-pf__slot {
  min-height: 180px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  background: rgba(255,255,255,0.02);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.07);
}
.vgnw-pf__slot-plus {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 0; cursor: pointer;
  color: var(--fg-muted);
  font-family: var(--font-body); font-size: 26px; line-height: 1;
  box-shadow: inset 0 -3px 0 rgba(0,0,0,0.35);
  transition: color var(--dur-default) var(--ease-ui), background var(--dur-default) var(--ease-ui);
}
.vgnw-pf__slot-plus:hover { color: var(--fg-1); background: rgba(255,255,255,0.09); }
.vgnw-pf__picker { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; padding: 0 16px; }
.vgnw-pf__picker button {
  padding: 8px 12px;
  background: var(--bg-3);
  border: 0; cursor: pointer;
  color: var(--fg-1);
  font-family: var(--font-pixel); font-weight: 700;
  font-size: 9px; letter-spacing: 1.2px; text-transform: uppercase;
  box-shadow: 0 3px 0 0 #4D4D4D;
  transition: filter var(--dur-default) var(--ease-ui), transform var(--dur-default) var(--ease-ui);
}
.vgnw-pf__picker button:hover { filter: brightness(1.12); }
.vgnw-pf__picker button:active { transform: translateY(2px); box-shadow: 0 1px 0 0 #4D4D4D; }

/* Yerinde düzenleme paneli */
.vgnw-pf__saved {
  margin: 14px 0 0;
  padding: 10px 12px;
  background: rgba(87,211,101,0.10);
  box-shadow: inset 0 0 0 1px rgba(87,211,101,0.35);
  color: #57d365;
  font-family: var(--font-body); font-size: 13px;
}
.vgnw-pf__edit {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: grid; gap: 12px;
}
.vgnw-pf__edit label {
  display: grid; gap: 6px;
  color: var(--fg-muted);
  font-family: var(--font-body); font-size: 12.5px;
}
.vgnw-pf__edit input[type="text"],
.vgnw-pf__edit textarea {
  width: 100%; box-sizing: border-box;
  padding: 10px 12px;
  background: var(--bg-darker);
  border: 0;
  color: var(--fg-1);
  font-family: var(--font-body); font-size: 13.5px; line-height: 1.5;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.10);
}
.vgnw-pf__edit textarea { resize: vertical; }
.vgnw-pf__edit input:focus,
.vgnw-pf__edit textarea:focus { outline: none; box-shadow: inset 0 0 0 1px var(--mctr-red); }
.vgnw-pf__edit input[type="file"] { color: var(--fg-2); font-size: 12px; }
.vgnw-pf__edit-check { display: flex !important; align-items: center; gap: 8px; }
.vgnw-pf__btn--save { background: var(--mctr-red); box-shadow: 0 3px 0 0 var(--mctr-red-dark); }
.vgnw-pf__btn--save:active { box-shadow: 0 1px 0 0 var(--mctr-red-dark); }

.vgnw-pf__meta {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: grid; gap: 12px;
}
.vgnw-pf__meta div { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.vgnw-pf__meta span { color: var(--fg-muted); font-family: var(--font-body); font-size: 13.5px; white-space: nowrap; }
.vgnw-pf__meta strong { color: var(--fg-1); font-family: var(--font-body); font-weight: 400; font-size: 13.5px; text-align: right; }

.vgnw-pf__skin {
  margin-top: auto;
  padding-top: 26px;
  display: flex; justify-content: center;
}
.vgnw-pf__skin { align-items: flex-end; }
.vgnw-pf__skin img {
  width: 178px; height: auto; image-rendering: pixelated;
  -webkit-mask-image: linear-gradient(180deg, #000 62%, transparent 97%);
  mask-image: linear-gradient(180deg, #000 62%, transparent 97%);
}

/* ── Sağ modül ızgarası ── */
.vgnw-pf__grid {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: 20px;
  align-items: start;
}
.vgnw-pf__mod {
  background: var(--bg-2);
  box-shadow:
    inset -4px 4px 0 rgba(255,255,255,0.06),
    inset 4px -4px 0 rgba(0,0,0,0.5),
    0 4px 0 rgba(0,0,0,0.35);
  padding: 24px 26px;
  min-width: 0;
}
.vgnw-pf__mod--activity,
.vgnw-pf__mod--recent,
.vgnw-pf__mod--wall { grid-column: 1 / -1; }
.vgnw-pf__mod-title {
  margin: 0 0 16px;
  color: var(--fg-2);
  font-family: var(--font-pixel); font-weight: 700;
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  line-height: 1.4;
}

/* Hakkında */
.vgnw-pf__about {
  margin: 0;
  color: var(--fg-1);
  font-family: var(--font-body); font-size: 15.5px; line-height: 1.6;
}
.vgnw-pf__about--empty { color: var(--fg-muted); }
.vgnw-pf__socials { display: grid; gap: 8px; margin-top: 20px; }
.vgnw-pf__soc {
  display: flex; align-items: center; gap: 9px;
  height: 46px; width: 100%; box-sizing: border-box;
  padding: 0 14px;
  background: #2d2b2b;
  border: 0; cursor: pointer;
  color: inherit; text-decoration: none; text-align: left;
  font-family: var(--font-body); font-size: 14px;
  transition: background var(--dur-default) var(--ease-ui);
}
.vgnw-pf__soc:hover { background: #353232; }
.vgnw-pf__soc-icon { width: 17px; height: 17px; flex: none; }
.vgnw-pf__soc-label { flex: none; font-size: 14.5px; font-weight: 600; }
.vgnw-pf__soc-arrow {
  margin-left: auto; flex: none;
  width: 13px; height: 13px;
  color: var(--fg-muted);
  transition: color var(--dur-default) var(--ease-ui);
}
.vgnw-pf__soc:hover .vgnw-pf__soc-arrow { color: var(--mctr-red); }
.vgnw-pf__soc-value {
  color: var(--fg-1);
  min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.vgnw-pf__soc-action {
  margin-left: auto; flex: none;
  width: 15px; height: 15px;
  color: var(--fg-muted);
  font-size: 14px; line-height: 1; font-style: normal;
}

/* İstatistik kartları */
.vgnw-pf__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-content: start;
}
.vgnw-pf-stat {
  position: relative;
  min-height: 172px;
  overflow: hidden;
  padding: 24px 26px 0;
  text-align: left;
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: flex-start;
  background: var(--bg-2);
  box-shadow:
    inset -4px 4px 0 rgba(255,255,255,0.06),
    inset 4px -4px 0 rgba(0,0,0,0.5),
    0 4px 0 rgba(0,0,0,0.35);
}
.vgnw-pf-stat__label {
  display: block;
  color: var(--fg-2);
  font-family: var(--font-pixel); font-weight: 700;
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  line-height: 1.4;
}
.vgnw-pf-stat__value {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 10px;
  margin-top: 10px;
  color: var(--fg-1);
  font-family: var(--font-display);
  font-size: 42px; line-height: 1;
}
.vgnw-pf-stat__value .vgnw-pf-stat__arrow { width: 15px; height: 15px; color: var(--mctr-red); flex: none; }
.vgnw-pf-stat--locked { cursor: default; }
.vgnw-pf-stat--locked:hover { filter: none; }
.vgnw-pf-stat--locked .vgnw-pf-stat__value { color: var(--fg-muted); }
.vgnw-pf-stat__value i {
  font-style: normal;
  color: var(--mctr-red);
  font-size: 20px; vertical-align: 8px;
}
.vgnw-pf-stat__art {
  position: absolute; left: 0; right: 0; bottom: 0;
  width: 100%; height: 58%;
  object-fit: cover; object-position: center top;
  image-rendering: pixelated;
  pointer-events: none;
}
.vgnw-pf-stat__art--contain {
  left: auto; right: 10px; bottom: 6px;
  width: auto; height: 62%;
  object-fit: contain;
}
/* Mockup kirpiklari: gorselin buyuk kismi kartin alt kenarindan tasar */
.vgnw-pf-stat__art--followers {
  left: 50%; right: auto; bottom: -34px;
  transform: translateX(-50%);
  width: 74%; height: auto;
  object-fit: contain;
}
.vgnw-pf-stat__art--topics {
  left: 50%; right: auto; bottom: -20px;
  transform: translateX(-50%);
  width: 62%; height: auto;
  object-fit: contain;
}
.vgnw-pf-stat__art--likes {
  left: 50%; right: auto; bottom: -52px;
  transform: translateX(-50%);
  width: 56%; height: auto;
  object-fit: contain;
}
.vgnw-pf-stat__art--trophy {
  left: auto; right: 14px; bottom: -14px;
  width: 44%; height: auto;
  object-fit: contain;
}
.vgnw-pf-stat--gold {
  background: linear-gradient(180deg, #ffe14d 0%, #ffc42b 100%);
  box-shadow:
    inset -4px 4px 0 rgba(255,255,255,0.28),
    inset 4px -4px 0 rgba(0,0,0,0.28),
    0 4px 0 rgba(0,0,0,0.35);
}
.vgnw-pf-stat--gold .vgnw-pf-stat__label { color: rgba(23,22,21,0.72); }
.vgnw-pf-stat--gold .vgnw-pf-stat__value { color: #171615; }
.vgnw-pf-stat--gold .vgnw-pf-stat__value i { color: #171615; }

/* Kullanıcı yorumları */
.vgnw-pf__wc-author { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.vgnw-pf__wc-author img { width: 30px; height: 30px; image-rendering: pixelated; }
.vgnw-pf__wc-author strong { color: var(--fg-1); font-family: var(--font-body); font-size: 14.5px; }
.vgnw-pf__wc-text {
  margin: 0;
  color: var(--fg-2);
  font-family: var(--font-body); font-size: 14.5px; line-height: 1.5;
}
.vgnw-pf__wc-empty { margin: 0 0 6px; color: var(--fg-muted); font-family: var(--font-body); font-size: 14px; }
.vgnw-pf__wc-footer {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  margin-top: 18px;
}
.vgnw-pf__wc-count {
  display: flex; align-items: center; gap: 10px;
  color: var(--fg-muted);
  font-family: var(--font-body); font-size: 13px;
}
.vgnw-pf__wc-count em { display: block; width: 96px; height: 2px; background: rgba(255,255,255,0.14); }
.vgnw-pf__wc-cta {
  color: var(--fg-2);
  text-decoration: none;
  font-family: var(--font-body); font-size: 13.5px;
  transition: color var(--dur-default) var(--ease-ui);
}
.vgnw-pf__wc-cta:hover { color: var(--mctr-red); }

/* Çalıştığı sunucu */
.vgnw-pf__mod--server { position: relative; overflow: hidden; }
.vgnw-pf__srv-name {
  display: block;
  color: var(--fg-1); text-decoration: none;
  font-family: var(--font-body); font-weight: 700;
  font-size: 26px; line-height: 1.15;
  max-width: 60%;
  transition: color var(--dur-default) var(--ease-ui);
}
.vgnw-pf__srv-name:hover { color: var(--mctr-red); }
.vgnw-pf__srv-ip {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 14px; padding: 0;
  background: transparent; border: 0; cursor: pointer;
  color: var(--fg-2);
  font-family: var(--font-body); font-size: 14px;
  text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(255,255,255,0.25);
  transition: color var(--dur-default) var(--ease-ui);
}
.vgnw-pf__srv-ip:hover { color: var(--fg-1); }
.vgnw-pf__srv-ip svg { width: 14px; height: 14px; color: var(--fg-muted); }
.vgnw-pf__srv-status {
  display: flex; align-items: center; gap: 6px;
  margin: 12px 0 0;
  color: var(--fg-muted);
  font-family: var(--font-body); font-size: 13px;
}
.vgnw-pf__srv-status strong { color: var(--status-online, #57d365); font-weight: 700; }
.vgnw-pf__srv-dot { width: 7px; height: 7px; background: var(--status-online, #57d365); flex: none; }
.vgnw-pf__srv-status em { font-style: normal; margin-left: 6px; }
.vgnw-pf__srv-art {
  position: absolute; right: 18px; bottom: 16px;
  width: 112px; height: 112px;
  object-fit: contain;
  image-rendering: pixelated;
}

/* Aktivite ısı haritası */
.vgnw-pf__act-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.vgnw-pf__act-title {
  margin: 0;
  color: var(--fg-muted);
  font-family: var(--font-body); font-size: 15px; font-weight: 400; line-height: 1;
}
.vgnw-pf__act-title strong { color: var(--fg-1); font-weight: 700; }
.vgnw-pf__act-year { color: var(--fg-2); font-family: var(--font-body); font-size: 14px; }
.vgnw-pf__act-months {
  display: flex; justify-content: space-between; gap: 4px;
  margin-bottom: 10px;
  color: var(--fg-muted);
  font-family: var(--font-pixel); font-weight: 700;
  font-size: 9px; letter-spacing: 0.8px; text-transform: uppercase;
}
.vgnw-pf__act-grid {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(7, 1fr);
  grid-auto-columns: 1fr;
  gap: 3px;
}
.vgnw-pf__act-cell { aspect-ratio: 1; min-width: 0; background: #2e2c2c; }
.vgnw-pf__act-cell--void { background: transparent; }
.vgnw-pf__act-cell--l1 { background: #1a6c2e; }
.vgnw-pf__act-cell--l2 { background: #2e9f43; }
.vgnw-pf__act-cell--l3 { background: #57d365; }

/* Son konular */
.vgnw-pf__recent { display: grid; gap: 8px; }
.vgnw-pf__recent-row {
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
  padding: 12px 14px;
  background: rgba(0,0,0,0.18);
  color: inherit; text-decoration: none;
  transition: background var(--dur-default) var(--ease-ui);
}
.vgnw-pf__recent-row:hover { background: rgba(0,0,0,0.32); }
.vgnw-pf__recent-title {
  min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  color: var(--fg-1);
  font-family: var(--font-body); font-size: 14.5px;
}
.vgnw-pf__recent-date { flex: none; color: var(--fg-muted); font-family: var(--font-body); font-size: 12.5px; }

/* Duyarlılık */
@media (max-width: 980px) {
  .vgnw-pf__wrap { grid-template-columns: 1fr; margin-top: -80px; }
  .vgnw-pf__card { min-height: 0; }
  .vgnw-pf__skin { padding-top: 20px; }
  .vgnw-pf__skin img { width: 180px; }
  .vgnw-pf__grid { grid-template-columns: 1fr; }
  .vgnw-pf__banner { height: 220px; }
}
@media (max-width: 560px) {
  .vgnw-pf__stats { grid-template-columns: 1fr; }
  .vgnw-pf__act-months span:nth-child(2n) { display: none; }
}

/* ═══════════════════════════════════════════════════════════════
   PROFİL v2 — sabit Hakkında kutusu, görünüm panelleri, katkı haritası
   ═══════════════════════════════════════════════════════════════ */

/* Kimlik kartı: tek ekrana sığsın, skin biraz aşağıda otursun */
.vgnw-pf__card { min-height: 700px; }
.vgnw-pf__skin { padding-top: 34px; }
.vgnw-pf__btn { height: 46px; font-size: 11.5px; letter-spacing: 1.8px; }
.vgnw-pf__btn--share[data-copied="1"] { color: #57d365; }

/* Hakkında — SABİT kutu: içerik ne olursa olsun boyut değişmez */
.vgnw-pf__mod--fixed {
  height: 372px;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.vgnw-pf__about-view { display: flex; flex-direction: column; flex: 1; min-height: 0; position: relative; }
.vgnw-pf__about-clamp {
  color: var(--fg-1);
  font-family: var(--font-body); font-size: 15px; line-height: 1.55;
  overflow: hidden;
  flex: 1; min-height: 0;
  position: relative;
}
.vgnw-pf__about-clamp { transition: max-height 0.45s var(--ease-ui); }
.vgnw-pf__about-view.is-overflowing .vgnw-pf__about-clamp {
  -webkit-mask-image: linear-gradient(180deg, #000 28%, rgba(0,0,0,0.4) 68%, transparent 94%);
          mask-image: linear-gradient(180deg, #000 28%, rgba(0,0,0,0.4) 68%, transparent 94%);
}
.vgnw-pf__about-view.is-open .vgnw-pf__about-clamp {
  -webkit-mask-image: none;
          mask-image: none;
}
.vgnw-pf__about-more {
  background: transparent; border: 0; cursor: pointer;
  padding: 8px 0;
  color: var(--fg-2);
  font-family: var(--font-body); font-size: 13.5px;
  transition: color var(--dur-default) var(--ease-ui);
  align-self: center;
}
.vgnw-pf__about-more:hover { color: var(--fg-1); }
.vgnw-pf__about-view .vgnw-pf__about-more {
  position: static;
  align-self: center;
  background: transparent;
  padding: 8px 0 0;
  color: var(--fg-muted);
  font-family: var(--font-pixel); font-weight: 700;
  font-size: 9px; letter-spacing: 1.4px; text-transform: uppercase;
}
.vgnw-pf__about-view .vgnw-pf__about-more:hover { color: var(--fg-1); }
.vgnw-pf__about-view .vgnw-pf__about-more[hidden] { display: none; }
.vgnw-pf__about-full { display: flex; flex-direction: column; flex: 1; min-height: 0; }
.vgnw-pf__about-full[hidden] { display: none; }
.vgnw-pf__about-fulltext {
  flex: 1; min-height: 0;
  overflow-y: auto;
  color: var(--fg-1);
  font-family: var(--font-body); font-size: 15px; line-height: 1.55;
  scrollbar-width: thin;
}
.vgnw-pf__socials { margin-top: auto; padding-top: 14px; }

/* Sosyal satır tintleri (Figma) */
.vgnw-pf__soc--discord { background: rgba(88, 101, 242, 0.14); }
.vgnw-pf__soc--discord:hover { background: rgba(88, 101, 242, 0.22); }
.vgnw-pf__soc--discord .vgnw-pf__soc-icon,
.vgnw-pf__soc--discord .vgnw-pf__soc-label { color: #8b96f5; }
.vgnw-pf__soc--instagram { background: rgba(241, 76, 158, 0.10); }
.vgnw-pf__soc--instagram:hover { background: rgba(241, 76, 158, 0.18); }
.vgnw-pf__soc--instagram .vgnw-pf__soc-icon,
.vgnw-pf__soc--instagram .vgnw-pf__soc-label { color: #f14c9e; }
.vgnw-pf__soc--website { background: rgba(224, 183, 63, 0.09); }
.vgnw-pf__soc--website:hover { background: rgba(224, 183, 63, 0.16); }
.vgnw-pf__soc--website .vgnw-pf__soc-icon,
.vgnw-pf__soc--website .vgnw-pf__soc-label { color: #d8b356; }

/* İstatistik kartları — artık buton; ok sayı rengini alır, 0'da ok yok */
.vgnw-pf-stat {
  border: 0; cursor: pointer; text-align: left;
  font: inherit; color: inherit;
  transition: filter var(--dur-default) var(--ease-ui), transform var(--dur-default) var(--ease-ui);
}
.vgnw-pf-stat:hover { filter: brightness(1.08); }
.vgnw-pf-stat:active { transform: translateY(1px); }
.vgnw-pf-stat__arrow { width: 13px; height: 13px; margin-left: 8px; display: inline-block; vertical-align: 4px; }

/* Boş durum ikonları (mcearth) */
.vgnw-pf__empty--tall { min-height: 280px; }
.vgnw-pf__empty-icon { width: 64px; height: 64px; object-fit: contain; image-rendering: pixelated; opacity: 0.9; }
.vgnw-pf__empty-icon--sm { width: 46px; height: 46px; }

/* Kullanıcı yorumları — boş durum */
.vgnw-pf__wc-none {
  display: flex; align-items: center; gap: 14px;
  padding: 14px;
  background: rgba(0,0,0,0.18);
}
.vgnw-pf__wc-none img { width: 40px; height: 40px; image-rendering: pixelated; flex: none; }
.vgnw-pf__wc-none p { margin: 0; color: var(--fg-2); font-family: var(--font-body); font-size: 14px; line-height: 1.5; }
.vgnw-pf__wc-none p span { color: var(--fg-muted); font-size: 12.5px; }
.vgnw-pf__wc-cta { background: transparent; border: 0; cursor: pointer; padding: 0; }

/* Görünüm panelleri */
.vgnw-pf__panels { min-width: 0; }
.vgnw-pf__view[hidden] { display: none; }
.vgnw-pf__view-head {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  margin-bottom: 20px;
}
.vgnw-pf__view-crumb {
  color: var(--fg-1);
  font-family: var(--font-pixel); font-weight: 700;
  font-size: 11px; letter-spacing: 1.4px; text-transform: uppercase;
}
.vgnw-pf__view-crumb em { font-style: normal; color: var(--fg-muted); }
.vgnw-pf__view-back {
  background: transparent; border: 0; cursor: pointer;
  color: var(--fg-muted);
  font-family: var(--font-pixel); font-weight: 700;
  font-size: 11px; letter-spacing: 1.4px; text-transform: uppercase;
  transition: color var(--dur-default) var(--ease-ui);
}
.vgnw-pf__view-back:hover { color: var(--fg-1); }

/* Konu kartları (Figma grid) */
.vgnw-pf__topics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.vgnw-pf__topic {
  display: flex; flex-direction: column; gap: 9px;
  background: var(--bg-2);
  padding-bottom: 14px;
  color: inherit; text-decoration: none;
  box-shadow:
    inset -4px 4px 0 rgba(255,255,255,0.06),
    inset 4px -4px 0 rgba(0,0,0,0.5),
    0 4px 0 rgba(0,0,0,0.35);
  transition: transform var(--dur-default) var(--ease-ui);
}
.vgnw-pf__topic:hover { transform: translateY(-2px); }
.vgnw-pf__topic-img { display: block; aspect-ratio: 16/8.5; overflow: hidden; }
.vgnw-pf__topic-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vgnw-pf__topic .vgnw-mc-badge { margin: 2px 12px 0; align-self: flex-start; }
.vgnw-pf__topic-title {
  padding: 0 12px;
  color: var(--fg-1);
  font-family: var(--font-body); font-size: 14.5px; line-height: 1.35;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.vgnw-pf__topic-meta {
  padding: 0 12px;
  display: flex; align-items: center; gap: 7px;
  color: var(--fg-muted);
  font-family: var(--font-body); font-size: 12px;
}
.vgnw-pf__topic-meta img { width: 18px; height: 18px; image-rendering: pixelated; }

/* Katkı haritası — hizalı ay etiketleri + tooltip */
.vgnw-pf__act-months {
  display: grid;
  gap: 3px;
  margin-bottom: 10px;
}
.vgnw-pf__act-months span { grid-row: 1; }
.vgnw-pf__act-cell { position: relative; }
.vgnw-pf__act-cell[data-tip]:hover { box-shadow: inset 0 0 0 1px rgba(255,255,255,0.6); }
.vgnw-pf__act-cell[data-tip]:hover::after {
  content: attr(data-tip);
  position: absolute;
  bottom: calc(100% + 7px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  padding: 7px 10px;
  background: #100f0e;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.15), 0 3px 0 rgba(0,0,0,0.4);
  color: var(--fg-1);
  font-family: var(--font-body); font-size: 12px; line-height: 1.5;
  white-space: pre-line;
  text-align: left;
  pointer-events: none;
}

@media (max-width: 900px) {
  .vgnw-pf__topics { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .vgnw-pf__topics { grid-template-columns: 1fr; }
  .vgnw-pf__mod--fixed { height: auto; min-height: 300px; }
}

/* Stat kartı okunurluğu — sayı/etiket görselin önünde, hafif gölgeyle */
.vgnw-pf-stat { min-height: 165px; }
.vgnw-pf-stat__label { position: relative; z-index: 1; text-shadow: 0 2px 0 rgba(0,0,0,0.55); color: var(--fg-2); }
.vgnw-pf-stat__value { text-shadow: 0 2px 0 rgba(0,0,0,0.55); }
.vgnw-pf-stat__art { height: 52%; }
.vgnw-pf-stat--gold .vgnw-pf-stat__label,
.vgnw-pf-stat--gold .vgnw-pf-stat__value { text-shadow: none; }

/* ═════ v2.1 düzeltmeleri ═════ */

/* KRİTİK: display kuralları hidden attribute'unu eziyordu (form hep açıktı) */
.vgnw-pf [hidden] { display: none !important; }

/* Kalem (blok düzenle) — × yerine */
.vgnw-pf__mod-pen {
  position: absolute; top: 10px; right: 10px; z-index: 3;
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.45);
  border: 0; cursor: pointer;
  color: var(--fg-muted);
  opacity: 0;
  transition: opacity var(--dur-default) var(--ease-ui), background var(--dur-default) var(--ease-ui), color var(--dur-default) var(--ease-ui);
}
.vgnw-pf__mod-pen svg { width: 13px; height: 13px; }
.vgnw-pf__mod:hover .vgnw-pf__mod-pen,
.vgnw-pf__mod-pen:focus-visible { opacity: 1; }
.vgnw-pf__mod-pen:hover { background: var(--mctr-red); color: var(--fg-1); }

/* Düzenleme formu açıkken sabit kutu serbest kalır */
.vgnw-pf__mod--fixed:has(.vgnw-pf__edit:not([hidden])) { height: auto; }

/* Banner düzenleme — hover'da belirir */
.vgnw-pf__banner { z-index: 0; }
.vgnw-pf__banner-btn {
  position: absolute; left: max(20px, calc(50% - 594px)); bottom: 132px; z-index: 3;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 13px;
  background: rgba(16,15,14,0.85);
  border: 0; cursor: pointer;
  color: var(--fg-1);
  font-family: var(--font-pixel); font-weight: 700;
  font-size: 9px; letter-spacing: 1.4px; text-transform: uppercase;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.15);
  opacity: 0;
  transition: opacity var(--dur-default) var(--ease-ui), background var(--dur-default) var(--ease-ui);
}
.vgnw-pf__banner:hover .vgnw-pf__banner-btn,
.vgnw-pf__banner-btn:focus-visible { opacity: 1; }
.vgnw-pf__banner-btn:hover { background: rgba(16,15,14,1); }
.vgnw-pf__banner-btn svg { width: 12px; height: 12px; }
.vgnw-pf__banner-btn:hover { background: var(--mctr-red); }
.vgnw-pf__banner-form {
  position: absolute; right: 22px; bottom: 96px; z-index: 4;
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  max-width: 420px;
  padding: 12px 14px;
  background: #100f0e;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.14), 0 4px 0 rgba(0,0,0,0.4);
  color: var(--fg-2);
  font-family: var(--font-body); font-size: 12.5px;
}
.vgnw-pf__banner-form input[type="file"] { color: var(--fg-2); font-size: 12px; max-width: 210px; }
.vgnw-pf__banner-form button[type="submit"] {
  padding: 8px 14px;
  background: var(--mctr-red);
  border: 0; cursor: pointer;
  color: var(--fg-1);
  font-family: var(--font-pixel); font-weight: 700;
  font-size: 9px; letter-spacing: 1.4px; text-transform: uppercase;
  box-shadow: 0 3px 0 0 var(--mctr-red-dark);
}

/* Bloklar satır içinde EŞİT yükseklikte */
.vgnw-pf__grid { align-items: stretch; }
.vgnw-pf__stats { grid-template-rows: 1fr 1fr; }
.vgnw-pf__mod--comments,
.vgnw-pf__mod--server { display: flex; flex-direction: column; }
.vgnw-pf__mod--comments .vgnw-pf__wc-footer { margin-top: auto; padding-top: 18px; }

/* Sosyal satırlar — Figma: soldan renk geçişi + altta 3D oturma bandı */
.vgnw-pf__socials { gap: 12px; }
.vgnw-pf__soc { box-shadow: 0 4px 0 0 rgba(0,0,0,0.55); }
.vgnw-pf__soc--discord { background: linear-gradient(90deg, rgba(88,101,242,0.34) 0%, rgba(255,255,255,0.05) 62%); }
.vgnw-pf__soc--discord:hover { background: linear-gradient(90deg, rgba(88,101,242,0.44) 0%, rgba(255,255,255,0.07) 62%); }
.vgnw-pf__soc--instagram { background: linear-gradient(90deg, rgba(241,76,158,0.26) 0%, rgba(255,255,255,0.05) 62%); }
.vgnw-pf__soc--instagram:hover { background: linear-gradient(90deg, rgba(241,76,158,0.36) 0%, rgba(255,255,255,0.07) 62%); }
.vgnw-pf__soc--website { background: linear-gradient(90deg, rgba(216,179,86,0.24) 0%, rgba(255,255,255,0.05) 62%); }
.vgnw-pf__soc--website:hover { background: linear-gradient(90deg, rgba(216,179,86,0.34) 0%, rgba(255,255,255,0.07) 62%); }

/* Katkı haritası — ferahlık: daha geniş sayfa + büyük hücreler */
.vgnw-pf__wrap { max-width: 1220px; }
.vgnw-pf__act-grid { gap: 4px; }
.vgnw-pf__act-months { gap: 4px; margin-bottom: 12px; }
.vgnw-pf__mod--activity { padding: 26px 28px; }

/* Ay etiketleri kolonları genişletmesin (profildeki yatay taşmanın köküydü) */
.vgnw-pf__act-months span { width: 0; min-width: 0; white-space: nowrap; overflow: visible; }

/* Mobil: katkı haritası sabit hücreyle yatay kaydırılır, kartlar tek/iki kolon */
@media (max-width: 700px) {
  .vgnw-pf__mod--activity { overflow-x: auto; }
  .vgnw-pf__act-months { grid-template-columns: repeat(54, 12px) !important; width: max-content; gap: 3px; }
  .vgnw-pf__act-grid { grid-template-rows: repeat(7, 12px); grid-auto-columns: 12px; width: max-content; gap: 3px; }
  .vgnw-pf__act-cell { aspect-ratio: auto; width: 12px; height: 12px; }
  .vgnw-pf__banner-btn { opacity: 1; bottom: 20px; }
  .vgnw-pf__topics { grid-template-columns: 1fr; }
}

/* ── Profil v3 eklemeleri ── */
/* Seviye: polygon rozet, XP ilerledikce tepeden saat yonunde dolar (conic inline) */
.vgnw-pf__level { position: relative; background: #24421f; cursor: help; }
.vgnw-pf__level-in { position: relative; z-index: 1; }

/* Sosyal deger fontu buyusun */
.vgnw-pf__soc-value { font-size: 14.5px; }

/* Takip Et / Takipten Cik */
.vgnw-pf__btn--follow.is-following {
  background: transparent;
  color: var(--fg-2);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.22);
}
.vgnw-pf__btn--follow.is-following:hover { color: var(--mctr-red); box-shadow: inset 0 0 0 1px rgba(237,44,41,0.5); }
.vgnw-pf__btn--follow:disabled { opacity: 0.6; cursor: wait; }

/* Yorum sahnesi: yumusak gecis */
.vgnw-pf__wc-stage { position: relative; }
.vgnw-pf__wc-item[hidden] { display: none; }
.vgnw-pf__wc-item { animation: vgnw-pf-wc-in 0.35s var(--ease-ui); }
@keyframes vgnw-pf-wc-in { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }

/* Yerinde duzenleme — gorunumle ayni yerlesim */
.vgnw-pf__edit-inline { display: flex; flex-direction: column; gap: 14px; }
.vgnw-pf__edit-inline .vgnw-pf__mod-title { margin: 0; }
.vgnw-pf__edit-about {
  width: 100%; box-sizing: border-box;
  min-height: 96px; resize: vertical;
  padding: 10px 12px;
  background: rgba(0,0,0,0.25);
  border: 0; color: var(--fg-2);
  font-family: var(--font-body); font-size: 14.5px; line-height: 1.6;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.14);
}
.vgnw-pf__edit-about:focus { outline: none; box-shadow: inset 0 0 0 1px var(--mctr-red); }
.vgnw-pf__socials--edit .vgnw-pf__soc { cursor: text; }
.vgnw-pf__socials--edit .vgnw-pf__soc input {
  flex: 1; min-width: 0;
  padding: 4px 8px;
  background: rgba(0,0,0,0.25);
  border: 0; color: var(--fg-1);
  font-family: var(--font-body); font-size: 14px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12);
}
.vgnw-pf__socials--edit .vgnw-pf__soc input:focus { outline: none; box-shadow: inset 0 0 0 1px var(--mctr-red); }
.vgnw-pf__soc--mc .vgnw-pf__soc-icon { width: 20px; height: 20px; image-rendering: pixelated; }
.vgnw-pf__edit-actions { display: flex; justify-content: flex-end; gap: 10px; }
.vgnw-pf__edit-actions .vgnw-pf__btn { height: 40px; padding: 0 18px; }
.vgnw-pf__mod--about.is-editing .vgnw-pf__about-view,
.vgnw-pf__mod--about.is-editing .vgnw-pf__about-full,
.vgnw-pf__mod--about.is-editing .vgnw-pf__empty { display: none; }

/* Takipci listesi */
.vgnw-pf__followers {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 12px;
}
.vgnw-pf__follower {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  background: var(--bg-2);
  box-shadow: inset -4px 4px 0 rgba(255,255,255,0.06), inset 4px -4px 0 rgba(0,0,0,0.5), 0 4px 0 rgba(0,0,0,0.35);
  color: var(--fg-1); text-decoration: none;
  font-family: var(--font-body); font-size: 14px;
  transition: filter var(--dur-default) var(--ease-ui);
}
.vgnw-pf__follower:hover { filter: brightness(1.1); }
.vgnw-pf__follower img { width: 30px; height: 30px; image-rendering: pixelated; flex: none; }

/* Sunucu default gorseli */
.vgnw-pf__srv-art--default { opacity: 0.9; }

/* ── Profil v3.1 ── */
/* Kart ikonlari: kontrollu boy + alt kenardan az tasma */
.vgnw-pf__stats { grid-auto-rows: 1fr; }
.vgnw-pf-stat { min-height: 176px; }
.vgnw-pf-stat__art--followers { width: auto; height: 96px; bottom: -22px; }
.vgnw-pf-stat__art--topics { width: auto; height: 86px; bottom: -12px; }
.vgnw-pf-stat__art--likes { width: auto; height: 88px; bottom: -34px; }
.vgnw-pf-stat__art--visitors {
  left: 50%; right: auto; bottom: -16px;
  transform: translateX(-50%);
  width: auto; height: 84px;
  object-fit: contain;
}

/* Para/rozet tekli kare satiri */
.vgnw-pf__currency {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.vgnw-pf__currency .vgnw-pf-stat { min-height: 128px; }
.vgnw-pf__currency .vgnw-pf-stat__value { font-size: 32px; }
.vgnw-pf-stat__art--cur {
  left: auto; right: 12px; bottom: -8px;
  width: auto; height: 64px;
  object-fit: contain;
}
@media (max-width: 900px) {
  .vgnw-pf__currency { grid-template-columns: 1fr 1fr; }
}

/* Duzenleme modunda gorunumdeki baslik da gizlenir (cift Hakkinda olmasin) */
.vgnw-pf__mod--about.is-editing > .vgnw-pf__mod-title { display: none; }

/* Yorumlari paneli */
.vgnw-pf__ucomments { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.vgnw-pf__ucomment {
  display: flex; flex-direction: column; gap: 6px;
  padding: 14px 16px;
  background: var(--bg-2);
  box-shadow: inset -4px 4px 0 rgba(255,255,255,0.06), inset 4px -4px 0 rgba(0,0,0,0.5), 0 4px 0 rgba(0,0,0,0.35);
  text-decoration: none;
  transition: filter var(--dur-default) var(--ease-ui);
}
.vgnw-pf__ucomment:hover { filter: brightness(1.08); }
.vgnw-pf__ucomment-title { color: var(--fg-1); font-family: var(--font-body); font-size: 14px; font-weight: 600; }
.vgnw-pf__ucomment-text { color: var(--fg-2); font-family: var(--font-body); font-size: 13.5px; line-height: 1.5; }
.vgnw-pf__ucomment-meta { color: var(--fg-muted); font-family: var(--font-body); font-size: 12px; }
@media (max-width: 900px) { .vgnw-pf__ucomments { grid-template-columns: 1fr; } }

/* Para kartlari tam kare */
.vgnw-pf__currency .vgnw-pf-stat { aspect-ratio: 1 / 1; min-height: 0; }
.vgnw-pf__currency .vgnw-pf-stat__value { font-size: 36px; }
.vgnw-pf-stat__art--cur { height: 42%; }

/* Sunucudaki rol */
.vgnw-pf__srv-role {
  margin: 4px 0 0;
  color: var(--fg-muted);
  font-family: var(--font-pixel); font-weight: 700;
  font-size: 9px; letter-spacing: 1.4px; text-transform: uppercase;
}

/* Ziyaretçi listesi */
.vgnw-pf__visitors { display: flex; flex-direction: column; gap: 10px; }
.vgnw-pf__visitor {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 10px 14px;
  background: var(--bg-2);
  box-shadow: inset -4px 4px 0 rgba(255,255,255,0.06), inset 4px -4px 0 rgba(0,0,0,0.5), 0 4px 0 rgba(0,0,0,0.35);
}
.vgnw-pf__visitor-who {
  display: flex; align-items: center; gap: 10px;
  color: var(--fg-1); text-decoration: none;
  font-family: var(--font-body); font-size: 14px;
}
a.vgnw-pf__visitor-who:hover span { color: var(--mctr-red); }
.vgnw-pf__visitor-who img { width: 28px; height: 28px; image-rendering: pixelated; flex: none; }
.vgnw-pf__visitor-meta {
  display: flex; align-items: center; gap: 12px;
  color: var(--fg-muted);
  font-family: var(--font-body); font-size: 12.5px;
}
.vgnw-pf__visitor-ip {
  padding: 3px 8px;
  background: rgba(0,0,0,0.3);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.10);
  font-size: 12px;
}

/* Kullanıcı adının altında forum flaması */
.vgnw-pf__rank {
  display: inline-block;
  margin-top: 8px;
  padding: 4px 10px;
  font-family: var(--font-pixel); font-weight: 700;
  font-size: 9px; letter-spacing: 1.2px; text-transform: uppercase;
}

/* Hakkında açıkken kutu overlay olur: grid yerini korur, altındakilerin üstüne uzar */
.vgnw-pf__mod--about.about-open {
  box-shadow:
    inset -4px 4px 0 rgba(255,255,255,0.06),
    inset 4px -4px 0 rgba(0,0,0,0.5),
    0 8px 0 rgba(0,0,0,0.45);
}
/* Sunucu tarafı 'Profil güncellendi' notu artık toast'a taşınır */
.vgnw-pf__saved { display: none; }
