/* === CARD === */
.velvet-card {
  width: 760px;
  margin: 5px auto 20px auto;
  background: radial-gradient(circle at top, #1a211e, #050706);
  border: 1px solid rgba(210,165,135,0.12);
  color: #d6dbd8;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 0 70px rgba(0,0,0,0.95);
  position: relative;
  overflow: hidden;
}

/* HEADER */
.vc-header {
  display: flex;
  align-items: center;
  padding: 25px 30px;
  border-bottom: 1px solid rgba(210,165,135,0.08);
}

.vc-title {
  flex: 1;
  min-width: 0;
  margin-left: 18px;
}

.vc-name {
  font-family: 'Cinzel', serif;
  font-size: 26px;
  letter-spacing: 2px;
  color: #e6ebe8;
  line-height: 1.2;
}

.vc-sub {
  font-size: 10px;
  color: #8f9792;
  letter-spacing: 2px;
  margin-top: 6px;
}

/* AVATAR */
.vc-avatar {
  width: 100px;
  margin-left: 30px;
  margin-right: 18px;
  flex-shrink: 0;
}

.vc-avatar img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border: 1px solid rgba(210,165,135,0.1);
}

/* BODY */
.vc-body {
  display: flex;
  padding: 20px 30px;
  gap: 14px;
  height: 520px;
  align-items: stretch; /* 🔥 FIX */
}

/* LEFT */
.vc-left {
  width: 55%;
  display: flex;
  flex-direction: column;
  height: 100%; /* 🔥 FIX */
}

/* SECTION */
.vc-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(210,165,135,0.08);
  background: rgba(255,255,255,0.015);
  padding: 16px;
  min-height: 0;
  margin-top: 8px;
  box-sizing: border-box;
}

.vc-section:first-child {
  margin-top: 0;
}

/* TITLE */
.vc-section-title {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 3px;
  color: #e0b29c;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(210,165,135,0.12);
  padding-bottom: 5px;

  height: 22px;              /* 🔥 FIX */
  display: flex;
  align-items: center;
}

/* TEXT */
.vc-text {
  flex: 1;
  min-height: 0;             /* 🔥 FIX */
  overflow-y: auto;
  font-size: 10px;
  line-height: 1.3;
  color: #949c97;
  padding-right: 14px;
  text-align: justify;
}

/* RIGHT */
.vc-right {
  width: 45%;
  position: relative;
  border: 1px solid rgba(210,165,135,0.1);
  overflow: hidden;
  margin-right: 15px;
  height: 100%;              /* 🔥 FIX */
}

.vc-right img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* FADE */
.vc-right::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 60%,
    rgba(0,0,0,0.65) 85%,
    rgba(0,0,0,0.95) 100%
  );
}

/* ROLE */
.vc-role {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Cinzel', serif;
  font-size: 15px;
  letter-spacing: 4px;
  color: #e6ebe8;
  z-index: 2;
}

/* STATS */
.vc-stats {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 8px;
  letter-spacing: 2px;
  color: #9ea4a0;
  z-index: 2;
  text-align: center;
  white-space: nowrap;
}

/* FOOTER */
.vc-footer {
  padding: 18px 30px;
  border-top: 1px solid rgba(210,165,135,0.08);
  display: flex;
  align-items: center;
  gap: 15px;
}

.vc-player-info {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  color: #ffffff;
}

.vc-player-info span {
  display: block;
  font-size: 10px;
  color: #7f8782;
  margin-top: 4px;
}

.vc-player-img img {
  width: 45px;
  height: 45px;
  object-fit: cover;
  opacity: 0.8;
  margin-left: 18px;
}

/* SCROLL */
.vc-text::-webkit-scrollbar {
  width: 5px;
}

.vc-text::-webkit-scrollbar-thumb {
  background: linear-gradient(
    to bottom,
    rgba(180,140,110,0.9),
    rgba(120,90,70,0.9)
  );
}