/* Banners auto-slider */
.social-banner-slider {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  margin: 0 12px 12px;
}

.social-banner-track {
  display: flex;
  transition: transform 0.45s ease;
  will-change: transform;
}

.social-banner-slide {
  flex: 0 0 100%;
  min-height: 118px;
}

.social-banner-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 8px 0 4px;
}

.social-banner-dots button {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(201, 162, 39, 0.35);
  cursor: pointer;
}

.social-banner-dots button.active {
  background: #c9a227;
  width: 18px;
  border-radius: 4px;
}

/* Reels */
.social-reels-wrap {
  position: fixed;
  top: var(--social-video-tabs-h);
  left: 0;
  right: 0;
  bottom: calc(var(--social-bottom-nav-h) + var(--social-safe-bottom));
  z-index: 1;
  background: #000;
  overflow: hidden;
  pointer-events: none;
}

.social-reels-wrap .social-reels-scroll {
  pointer-events: auto;
  width: 100%;
  height: 100%;
}

.social-reel-ui {
  position: absolute;
  inset: 0;
  z-index: 25;
  pointer-events: none;
}

.social-reel-ui .social-reel-rail,
.social-reel-ui .social-reel-bottom,
.social-reel-ui button,
.social-reel-ui img {
  pointer-events: auto;
}

/* TikTok-style right rail + bottom caption */
.social-reel-rail {
  position: absolute;
  right: 10px;
  bottom: max(72px, calc(12px + env(safe-area-inset-bottom, 0px)));
  z-index: 35;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  pointer-events: auto;
}

.social-reel-author {
  position: relative;
  width: 52px;
  margin-bottom: 6px;
}

.social-reel-avatar-btn {
  display: block;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  border-radius: 50%;
}

.social-reel-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #fff;
  object-fit: cover;
  display: block;
}

.social-reel-follow-pill {
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: #fe2c55;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}

.social-reel-follow-pill.is-following {
  background: #22c55e;
  font-size: 12px;
}

.social-reel-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 0;
  border: none;
  background: none;
  color: #fff;
  cursor: pointer;
  min-width: 52px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.social-reel-action-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.55));
}

.social-reel-action.is-gift .social-reel-action-icon {
  color: #fecdd3;
}

.social-reel-action-count {
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.85);
}

.social-reel-action.is-liked .social-reel-action-icon {
  color: #fe2c55;
}

.social-reel-bottom {
  position: absolute;
  left: 14px;
  right: 82px;
  bottom: max(16px, calc(14px + env(safe-area-inset-bottom, 0px)));
  z-index: 35;
  pointer-events: auto;
}

.social-reel-name {
  margin: 0 0 6px;
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.75);
  cursor: pointer;
}

.social-reel-caption {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  line-height: 1.4;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.75);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.social-reels-scroll {
  height: 100%;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  -webkit-overflow-scrolling: touch;
}

.social-reel-slide {
  height: 100%;
  min-height: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  position: relative;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-reel-slide img,
.social-reel-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social-reel-slide video.is-portrait,
.social-reel-slide img.is-portrait {
  object-fit: contain;
  background: #000;
}

.social-reel-gradient {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 48%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.72));
  pointer-events: none;
  z-index: 2;
}

.social-reel-slide video,
.social-reel-slide img {
  position: relative;
  z-index: 1;
}

/* Square posts */
.social-post-feed {
  padding: 0 12px 88px;
}

.social-post-card {
  background: #fffdf8;
  border-radius: 14px;
  margin-bottom: 14px;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 39, 0.15);
  box-shadow: 0 4px 14px rgba(107, 79, 16, 0.06);
}

.social-post-media {
  position: relative;
  aspect-ratio: 4/5;
  max-height: 420px;
  background: #1a1a1a;
}

.social-post-media video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.social-post-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social-post-delete {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 5;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.social-post-private-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 5;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  color: #fde68a;
  font-size: 11px;
  font-weight: 700;
}

.social-post-media .play-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.social-post-meta {
  padding: 10px 12px 0;
  font-size: 12px;
  color: #9ca3af;
}

.social-post-actions {
  display: flex;
  gap: 20px;
  padding: 8px 12px;
  font-size: 13px;
  color: #6b7280;
}

.social-post-actions span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.social-post-user {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px 12px;
}

.social-post-user img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.social-post-caption {
  font-size: 14px;
  color: #374151;
  line-height: 1.4;
}

.social-post-translation {
  font-size: 12px;
  color: #60a5fa;
  margin-top: 4px;
}

/* Empty states */
.social-empty-state {
  text-align: center;
  padding: 48px 24px 100px;
  color: #9ca3af;
}

.social-empty-state img,
.social-empty-state .illus {
  width: 160px;
  max-width: 70%;
  margin: 0 auto 16px;
  opacity: 0.85;
}

.social-empty-state p {
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 16px;
}

.social-empty-state .btn-open {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff8c42, #f59e0b);
  color: #fff;
  font-weight: 700;
  border: none;
  text-decoration: none;
}

/* Create post sheet */
.social-create-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: flex-end;
  justify-content: center;
}

.social-create-overlay.is-open {
  display: flex;
}

.social-create-sheet {
  width: 100%;
  max-width: 480px;
  max-height: 92dvh;
  background: #fffdf8;
  border-radius: 20px 20px 0 0;
  padding: 16px 16px calc(20px + env(safe-area-inset-bottom));
  overflow-y: auto;
}

.social-create-sheet h3 {
  margin: 0 0 12px;
  font-size: 18px;
  color: #5c4210;
}

.social-create-sheet textarea {
  width: 100%;
  min-height: 88px;
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: 12px;
  padding: 12px;
  font-size: 15px;
  resize: vertical;
  font-family: inherit;
}

.social-create-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0;
}

.social-create-toolbar button {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(201, 162, 39, 0.35);
  background: #fff;
  font-size: 13px;
  color: #6b4f10;
}

.social-create-visibility {
  display: flex;
  gap: 8px;
  margin: 12px 0;
}

.social-create-visibility label {
  flex: 1;
  text-align: center;
  padding: 10px;
  border-radius: 12px;
  border: 2px solid rgba(201, 162, 39, 0.3);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.social-create-visibility input {
  display: none;
}

.social-create-visibility input:checked + span,
.social-create-visibility label:has(input:checked) {
  border-color: #c9a227;
  background: rgba(201, 162, 39, 0.12);
  color: #a67c1a;
}

.social-create-actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.social-create-actions button {
  flex: 1;
  padding: 14px;
  border-radius: 999px;
  font-weight: 700;
  border: none;
  font-size: 15px;
}

.social-create-actions .cancel {
  background: #f3f4f6;
  color: #6b7280;
}

.social-create-actions .post {
  background: linear-gradient(135deg, #ff8c42, #f59e0b);
  color: #fff;
}

.social-create-preview {
  position: relative;
  margin: 12px 0;
  border-radius: 12px;
  overflow: hidden;
  background: #111;
}

.social-create-preview-clear {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
  margin: 10px 0;
  border-radius: 12px;
  overflow: hidden;
  max-height: 200px;
  display: none;
}

.social-create-preview img {
  width: 100%;
  object-fit: cover;
}

/* Gift sheet hint on video */
.social-gift-sheet-link {
  cursor: pointer;
}

/* Party vs explore separation */
.social-fab-party {
  background: linear-gradient(135deg, #a855f7, #ec4899) !important;
  letter-spacing: 0.05em;
}

.social-start-live {
  z-index: 90;
}

/* Video action column — no overlapping counts */
.social-video-action-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 52px;
  pointer-events: auto;
}
.social-video-action-item button {
  pointer-events: auto;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.social-video-action-item .count {
  margin-top: 0;
  font-size: 11px;
  line-height: 1.2;
  text-align: center;
  min-height: 14px;
}

/* Square post actions */
.social-post-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  padding: 8px 12px;
}
.social-act-btn {
  border: none;
  background: none;
  color: var(--gold-800);
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 4px 0;
}
.social-act-btn i { font-size: 16px; }
.social-act-btn .fa-heart { color: #e11d48; }
.social-post-user { text-decoration: none; color: inherit; display: flex; gap: 10px; padding: 0 12px 16px; }
.social-post-user-name { font-weight: 700; font-size: 14px; }

/* Topics thumbs */
.social-topic-videos .thumb {
  border: none;
  padding: 0;
  cursor: pointer;
}
.social-topic-videos .thumb i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 22px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

/* Broadcast mode picker */
.social-broadcast-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(0, 0, 0, 0.55);
  display: none;
  align-items: flex-end;
  justify-content: center;
}
.social-broadcast-overlay.is-open { display: flex; }
.social-broadcast-sheet {
  width: 100%;
  max-width: 480px;
  background: #fffdf8;
  border-radius: 20px 20px 0 0;
  padding: 20px 16px calc(24px + env(safe-area-inset-bottom));
}
.social-broadcast-sheet h3 { margin: 0 0 6px; font-size: 18px; color: #5c4210; text-align: center; }
.social-broadcast-sheet > p { margin: 0 0 16px; font-size: 13px; color: #8b6914; text-align: center; line-height: 1.45; }
.social-broadcast-options { display: flex; flex-direction: column; gap: 10px; }
.social-broadcast-opt {
  display: flex; align-items: center; gap: 14px; width: 100%;
  padding: 14px 16px; border: 2px solid rgba(201, 162, 39, 0.25);
  border-radius: 14px; background: #fff; cursor: pointer; text-align: left;
}
.social-broadcast-opt strong { display: block; font-size: 15px; color: #5c4210; }
.social-broadcast-opt span { font-size: 12px; color: #8b6914; }
.social-broadcast-opt .ico {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0;
}
.social-broadcast-opt .ico.video { background: linear-gradient(135deg, #ec4899, #8b5cf6); color: #fff; }
.social-broadcast-opt .ico.audio { background: linear-gradient(135deg, #3b82f6, #6366f1); color: #fff; }
.social-broadcast-opt .ico.party { background: linear-gradient(135deg, #f59e0b, #ea580c); color: #fff; }
.social-broadcast-cancel {
  width: 100%; margin-top: 12px; padding: 12px; border: none;
  background: #f3f4f6; border-radius: 12px; font-weight: 600; color: #6b7280; cursor: pointer;
}

/* Comment sheet + toast */
.social-comment-sheet {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: rgba(0,0,0,0.45);
  display: none;
  align-items: flex-end;
}
.social-comment-sheet.open { display: flex; }
.social-comment-panel {
  width: 100%;
  max-height: 70vh;
  background: #fffdf8;
  border-radius: 20px 20px 0 0;
  padding: 16px;
  display: flex;
  flex-direction: column;
}
.social-comment-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.social-comment-list { flex: 1; overflow-y: auto; margin-bottom: 12px; }
.social-comment-item { padding: 8px 0; border-bottom: 1px solid #f3e8c8; font-size: 14px; }
.social-comment-input-row { display: flex; gap: 8px; }
.social-comment-input-row input { flex: 1; border: 1px solid #e8d9a8; border-radius: 999px; padding: 10px 14px; }
.social-comment-input-row button {
  border: none;
  background: linear-gradient(135deg, #e8c56a, #c9a227);
  color: #3d2e08;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 999px;
}
.social-toast {
  position: fixed;
  bottom: calc(var(--social-bottom-nav-h) + 24px);
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: min(340px, calc(100vw - 32px));
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 13px;
  z-index: 400;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
  background: #1a1a1a;
  color: #fff;
}

.social-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.social-toast.is-success {
  background: linear-gradient(135deg, #166534, #15803d);
}

.social-toast.is-error {
  background: linear-gradient(135deg, #991b1b, #b91c1c);
}

.social-toast.is-warning {
  background: linear-gradient(135deg, #92400e, #b45309);
}

.social-toast.is-info {
  background: linear-gradient(135deg, #1e3a5f, #1d4ed8);
}

.social-toast-icon {
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 1px;
}

.social-toast-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.social-toast-title {
  font-size: 13px;
  font-weight: 800;
  display: block;
}

.social-toast-title:empty {
  display: none;
}

.social-toast-msg {
  font-size: 12px;
  line-height: 1.35;
  opacity: 0.95;
}

.social-alert-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.social-alert-modal.open {
  display: flex;
}

.social-alert-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px 20px;
  max-width: 320px;
  width: 100%;
  text-align: center;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.social-alert-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.social-alert-icon.is-error {
  background: #fee2e2;
  color: #dc2626;
}

.social-alert-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  color: var(--gold-800);
}

.social-alert-card p {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.45;
  color: #6b7280;
}

.social-alert-btn {
  width: 100%;
  border: none;
  padding: 12px;
  border-radius: 12px;
  background: linear-gradient(135deg, #e8c56a, #c9a227);
  color: #3d2e08;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
}

.social-follow-sheet {
  position: fixed;
  inset: 0;
  z-index: 450;
  display: none;
  align-items: flex-end;
  background: rgba(0, 0, 0, 0.45);
}

.social-follow-sheet.open {
  display: flex;
}

.social-follow-panel {
  width: 100%;
  max-height: 70vh;
  background: #fff;
  border-radius: 20px 20px 0 0;
  padding: 16px 16px calc(20px + var(--social-safe-bottom));
  display: flex;
  flex-direction: column;
}

.social-follow-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.social-follow-head h3 {
  margin: 0;
  font-size: 18px;
  color: var(--gold-800);
}

.social-follow-head button {
  border: none;
  background: #f3f4f6;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  color: #6b7280;
}

.social-follow-list {
  overflow-y: auto;
  flex: 1;
}

.social-follow-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 4px;
  border-bottom: 1px solid #f3f4f6;
  text-decoration: none;
  color: var(--gold-800);
}

.social-follow-row img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.social-follow-row span {
  flex: 1;
  font-weight: 600;
  font-size: 15px;
}

.social-follow-row .fa-chevron-right {
  color: #d1d5db;
  font-size: 12px;
}

.social-follow-empty {
  text-align: center;
  padding: 32px 16px;
  color: var(--gold-600);
}

.social-follow-empty i {
  font-size: 40px;
  opacity: 0.5;
  margin-bottom: 12px;
}

.social-follow-empty p {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.45;
}

.social-follow-cta {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--orange-cta);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
}

/* Party start banner */
.party-start-banner {
  margin: 0 12px 10px;
  padding: 14px 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f3e8ff, #fce7f3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.party-start-banner strong { color: #6d28d9; font-size: 15px; }
.party-start-banner p { color: #7c3aed; font-size: 12px; margin: 4px 0 0; }
.party-start-banner-btn {
  border: none;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #a855f7, #ec4899);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
}

/* VIP gold theme */
.social-vip-page--gold {
  background: var(--cream-bg) !important;
  background-image: none !important;
  color: var(--gold-800);
}
.social-vip-page--gold .social-bottom-nav { background: #fffdf8; border-top-color: var(--gold-200); }
.social-vip-page--gold .social-bottom-nav a { color: var(--gold-600); }
.social-vip-tabs--gold a { color: var(--gold-600) !important; }
.social-vip-tabs--gold a.active { color: var(--gold-800) !important; border-bottom-color: var(--gold-600) !important; }
.social-vip-tier-tabs--gold a { color: var(--gold-600); }
.social-vip-tier-tabs--gold a.active { background: rgba(201,162,39,0.2); color: var(--gold-800); }
.social-vip-card--gold {
  background: linear-gradient(135deg, #fffbeb, #fef3c7) !important;
  border: 1px solid var(--gold-300) !important;
}
.social-vip-privilege--gold {
  background: #fff !important;
  border: 1px solid var(--gold-200);
  margin: 0 16px 10px;
  border-radius: 14px;
}
.social-vip-privilege--gold h4 { color: var(--gold-800) !important; }
.social-vip-privilege--gold p { color: #8b6914 !important; }
.social-vip-privilege--gold .ico { background: linear-gradient(135deg, #e8c56a, #c9a227) !important; color: #3d2e08 !important; }
.social-vip-cta--gold {
  background: linear-gradient(90deg, #e8c56a, #c9a227) !important;
  color: #3d2e08 !important;
}

/* Rankings gold theme */
.social-rank-page--gold {
  background: var(--cream-bg) !important;
  background-image: none !important;
  color: var(--gold-800);
}
.social-rank-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  padding-top: calc(12px + env(safe-area-inset-top, 0px));
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--cream-bg);
}
.social-rank-back { color: var(--gold-800); font-size: 18px; text-decoration: none; width: 32px; }
.social-rank-main-tabs { display: flex; flex: 1; justify-content: center; gap: 12px; }
.social-rank-main-tab {
  color: var(--gold-600);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding-bottom: 4px;
}
.social-rank-main-tab.active { color: var(--gold-800); border-bottom: 2px solid var(--gold-600); }
.social-rank-page--gold .social-rank-promo {
  background: linear-gradient(90deg, #fef3c7, #fde68a);
  color: var(--gold-800);
  box-shadow: 0 4px 12px rgba(201,162,39,0.15);
}
.social-rank-sub-tab {
  flex-shrink: 0;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--gold-300);
  background: #fff;
  color: var(--gold-700);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}
.social-rank-sub-tab.active {
  background: linear-gradient(135deg, #e8c56a, #c9a227);
  color: #3d2e08;
  border-color: transparent;
}
.social-rank-list { padding: 0 12px 24px; }
.social-rank-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #fff;
  border-radius: 14px;
  margin-bottom: 8px;
  border: 1px solid var(--gold-200);
}
.social-rank-row img { width: 44px; height: 44px; border-radius: 50%; }
.social-rank-row .rank-num { font-weight: 800; color: var(--gold-600); width: 24px; }
.social-rank-row .rank-info { flex: 1; font-size: 14px; }
.social-rank-follow {
  border: none;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--orange-cta);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
}

/* Creator profile */
.creator-hero { text-align: center; padding: 24px 16px; }
.creator-avatar { width: 88px; height: 88px; border-radius: 50%; border: 3px solid var(--gold-400); }
.creator-follow-btn {
  margin-top: 12px;
  border: none;
  padding: 10px 28px;
  border-radius: 999px;
  background: var(--orange-cta);
  color: #fff;
  font-weight: 700;
}
.creator-follow-btn.is-on { background: var(--gold-200); color: var(--gold-800); }
.creator-section-title { padding: 0 16px 8px; font-size: 16px; color: var(--gold-800); }
