/* RESET */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: "Nunito", sans-serif; background:#1a0e2e; color:#f0e8ff; min-height:100vh; }
a { text-decoration: none; }

/* LAYOUT */
.app-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 420px 1fr; /* Left fixed, right scrollable */
  gap: 20px;
  padding: 24px 20px 140px;
}

/* LEFT PANEL */
.left-panel {
  position: sticky;
  top: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.art-card {
  width: 100%;
  aspect-ratio: 1/1;
  background: rgba(255,255,255,0.07);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(168,85,247,0.22);
}
.art-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bio-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 12px 14px;
}

.title-card-center{
  text-align: center;
}

/* RIGHT PANEL */
.right-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow-y: auto;
  max-height: calc(100vh - 48px); /* scrollable */
}

/* PROFILE CARDS */
.profile-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(168,85,247,0.22);
  border-radius: 18px;
  padding: 20px;
  backdrop-filter: blur(12px);
}
.section-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8b6bcc;
  margin-bottom: 10px;
  text-align: center;
}

/* SOCIAL LINKS */
.art-socials {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.art-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(168,85,247,0.22);
  background: rgba(255,255,255,0.07);
  color: #f0e8ff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}
.art-social-link:hover { background: rgba(255,255,255,0.11); }

/* INFO LIST */
.info-list { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.info-list li { padding-left: 16px; position: relative; color: #c4a8ff; }
.info-list li::before { content: "✦"; position: absolute; left: 0; color: #a855f7; font-size: 0.6rem; top: 2px; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .app-wrap { grid-template-columns: 1fr; }
  .left-panel { position: relative; top: auto; }
  .right-panel { max-height: none; }
}