/* FlikTix Organizer Profile — social-media-style profile page */

#fliktix-profile-root {
  max-width: 900px;
  margin: 0 auto 80px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: var(--paper, #f2f0ea);
}

/* ---------- COVER + IDENTITY ---------- */
#fliktix-profile-root .cover {
  width: 100%;
  height: 260px;
  background: var(--ink2, #161616) center/cover no-repeat;
  border-bottom: 3px solid var(--acid, #d4ff3f);
}

#fliktix-profile-root .identity {
  text-align: center;
  padding: 0 20px 32px;
  border-bottom: 1px solid var(--line, #2a2a2a);
  margin-bottom: 32px;
}

#fliktix-profile-root .avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--line, #2a2a2a) center/cover no-repeat;
  border: 4px solid var(--ink, #0c0c0c);
  margin: -60px auto 16px;
}

#fliktix-profile-root .identity h1 {
  font-family: 'Archivo Black', sans-serif;
  text-transform: uppercase;
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1.05;
  margin: 0 0 12px;
}

#fliktix-profile-root .identity .bio {
  max-width: 560px;
  margin: 0 auto 18px;
  color: var(--mid, #7a776e);
  font-size: 15px;
  line-height: 1.5;
}

#fliktix-profile-root .social-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

#fliktix-profile-root .social-row a {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid var(--line, #2a2a2a);
  border-radius: 20px;
  color: var(--paper, #f2f0ea);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .3px;
  transition: border-color .15s, color .15s;
}

#fliktix-profile-root .social-row a:hover {
  border-color: var(--acid, #d4ff3f);
  color: var(--acid, #d4ff3f);
}

/* ---------- MAIN SECTIONS ---------- */
#fliktix-profile-root main {
  padding: 0 20px;
}

#fliktix-profile-root section {
  margin-bottom: 44px;
}

#fliktix-profile-root section h2 {
  font-family: 'Archivo Black', sans-serif;
  text-transform: uppercase;
  font-size: 20px;
  letter-spacing: .5px;
  padding-bottom: 10px;
  margin: 0 0 20px;
  border-bottom: 2px solid var(--acid, #d4ff3f);
}

#fliktix-profile-root .empty {
  color: var(--mid, #7a776e);
  font-size: 14px;
  padding: 8px 0;
}

/* ---------- EVENT CARDS ---------- */
#fliktix-profile-root .event-card {
  display: flex;
  gap: 16px;
  align-items: center;
  background: var(--ink2, #161616);
  border: 1px solid var(--line, #2a2a2a);
  border-radius: 6px;
  padding: 12px;
  margin-bottom: 12px;
  transition: border-color .15s, transform .15s;
}

#fliktix-profile-root a:hover .event-card {
  border-color: var(--acid, #d4ff3f);
  transform: translateY(-1px);
}

#fliktix-profile-root .event-card img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 4px;
  background: var(--line, #2a2a2a);
  flex-shrink: 0;
}

#fliktix-profile-root .event-card .meta {
  font-size: 12px;
  color: var(--acid, #d4ff3f);
  text-transform: uppercase;
  letter-spacing: .3px;
  margin-bottom: 4px;
}

#fliktix-profile-root .event-card .title {
  font-family: 'Archivo Black', sans-serif;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 1.25;
}

/* ---------- EMBEDS ---------- */
#fliktix-profile-root .embed-wrap {
  margin-bottom: 14px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line, #2a2a2a);
}

#fliktix-profile-root .embed-wrap iframe {
  width: 100%;
  border: 0;
  display: block;
}

/* ---------- STATUS UPDATES ---------- */
#fliktix-profile-root .status-card {
  background: var(--ink2, #161616);
  border: 1px solid var(--line, #2a2a2a);
  border-radius: 6px;
  padding: 16px;
  margin-bottom: 12px;
}

#fliktix-profile-root .status-card .when {
  font-size: 12px;
  color: var(--mid, #7a776e);
  margin-bottom: 6px;
}

#fliktix-profile-root .status-card img {
  width: 100%;
  border-radius: 4px;
  margin-top: 10px;
}

/* ---------- GALLERY ---------- */
#fliktix-profile-root .gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
}

#fliktix-profile-root .gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 4px;
  background: var(--line, #2a2a2a);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 600px) {
  #fliktix-profile-root .cover { height: 160px; }
  #fliktix-profile-root .avatar { width: 90px; height: 90px; margin-top: -45px; }
  #fliktix-profile-root .event-card img { width: 72px; height: 72px; }
}
