/* Super-Simple WhatsApp & UPI Style Creator Studio Styles */

.creator-studio-view {
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: fadeIn 0.2s ease;
}

/* Hero Earnings Card */
.earnings-hero-card {
  background: linear-gradient(135deg, #0d281e, #111a16);
  border: 1.5px solid rgba(16, 185, 129, 0.4);
  border-radius: var(--radius-xl);
  padding: 22px 20px;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.1);
}

.earnings-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.earnings-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--success);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.earnings-amount {
  font-size: 36px;
  font-weight: 950;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-top: 4px;
}

.balance-badge {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 14px;
  border-radius: var(--radius-md);
  text-align: right;
}

.balance-badge span {
  display: block;
  font-size: 10px;
  color: var(--muted);
}

.balance-badge b {
  font-size: 15px;
  color: #fff;
}

.upi-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.25);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  margin-bottom: 16px;
  color: var(--text-secondary);
}

.upi-info-row b {
  color: #fff;
}

.upi-status {
  color: var(--success);
  font-weight: 800;
  font-size: 11px;
}

.btn-instant-withdraw {
  width: 100%;
  height: 48px;
  background: var(--success);
  color: #032314;
  font-weight: 900;
  font-size: 14px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 4px 18px rgba(16, 185, 129, 0.35);
  transition: transform var(--transition-fast), filter var(--transition-fast);
}

.btn-instant-withdraw:hover:not(:disabled) {
  filter: brightness(1.08);
}

.btn-instant-withdraw:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  box-shadow: none;
}

/* Creator VIP Live Stream On/Off Controller */
.creator-live-ctrl-card {
  background: linear-gradient(135deg, rgba(255, 56, 56, 0.08), rgba(255, 46, 147, 0.05));
  border: 1.5px solid rgba(255, 56, 56, 0.3);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.live-ctrl-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.live-ctrl-header b {
  font-size: 14px;
  color: #fff;
  display: block;
  margin-bottom: 3px;
}

.live-ctrl-header p {
  font-size: 11px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.4;
}

.live-status-pill {
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.live-status-pill.active {
  background: rgba(255, 56, 56, 0.22);
  color: #ff4757;
  border: 1.5px solid var(--red);
  box-shadow: 0 0 10px rgba(255, 56, 56, 0.4);
  animation: pulseLive 1.5s infinite;
}

.live-status-pill.offline {
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-toggle-live {
  width: 100%;
  height: 44px;
  border-radius: var(--radius-md);
  font-weight: 850;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: transform var(--transition-fast), filter var(--transition-fast);
}

.btn-toggle-live:active {
  transform: scale(0.98);
}

.btn-start-live {
  background: linear-gradient(135deg, #ff3838, #ff2e93);
  color: #fff;
  box-shadow: 0 4px 16px rgba(255, 56, 56, 0.4);
}

.btn-start-live:hover {
  filter: brightness(1.1);
}

.btn-stop-live {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.btn-stop-live:hover {
  background: rgba(255, 56, 56, 0.2);
  border-color: var(--red);
  color: #ff4757;
}

/* Quick Post Card (WhatsApp Status Style) */
.quick-post-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px;
}

.quick-post-header h3 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 4px;
}

.quick-post-header p {
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 16px;
}

/* Strict Zero-Nudity Safety Banner */
.safety-policy-banner {
  background: rgba(255, 56, 56, 0.12);
  border: 1.5px dashed var(--red);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
}

.safety-icon {
  font-size: 22px;
  flex-shrink: 0;
}

.safety-policy-banner b {
  font-size: 12px;
  color: var(--red);
  display: block;
}

.safety-policy-banner p {
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.35;
  margin-top: 2px;
}

.policy-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.35;
  cursor: pointer;
  background: var(--panel2);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
}

.policy-checkbox-row input {
  margin-top: 2px;
  accent-color: var(--green);
}

.policy-checkbox-row b {
  color: var(--yellow);
}

.quick-post-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.dash-input {
  width: 100%;
  height: 46px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--panel2);
  color: var(--text);
  padding: 0 14px;
  font-size: 13px;
  outline: none;
  transition: border-color var(--transition-fast);
}

.dash-input:focus {
  border-color: var(--pink);
}

.price-selector-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price-selector-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-secondary);
}

.price-chips {
  display: flex;
  gap: 8px;
}

.price-chip {
  flex: 1;
  background: var(--panel2);
  border: 1px solid var(--line);
  padding: 10px 6px;
  border-radius: var(--radius-md);
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.price-chip input {
  display: none;
}

.price-chip.active {
  border-color: var(--pink);
  background: var(--pink-dark);
  color: #fff;
}

.type-selector-row {
  display: flex;
  gap: 8px;
}

.type-pill {
  flex: 1;
  background: var(--panel2);
  border: 1px solid var(--line);
  padding: 8px 6px;
  border-radius: 8px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  color: var(--text-secondary);
}

.type-pill input {
  display: none;
}

.type-pill.active {
  background: #222735;
  border-color: var(--line-light);
  color: #fff;
}

.btn-publish-drop {
  height: 46px;
  background: var(--pink);
  color: #fff;
  font-weight: 850;
  font-size: 13px;
  border-radius: var(--radius-md);
  margin-top: 4px;
  box-shadow: 0 4px 16px var(--pink-glow);
}

/* Activity Feed */
.activity-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px;
}

.activity-card h3 {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 14px;
}

.activity-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.activity-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: var(--panel2);
  border-radius: var(--radius-md);
}

.activity-icon {
  font-size: 20px;
}

.activity-details {
  flex: 1;
  min-width: 0;
}

.activity-details b {
  font-size: 12px;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.activity-details small {
  color: var(--muted);
  font-size: 10px;
}

.activity-plus {
  color: var(--success);
  font-weight: 850;
  font-size: 13px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   1-ON-1 PRIVATE LIVE RADAR (CREATOR STUDIO)
   ========================================================================== */
.creator-one-on-one-radar-card {
  background: linear-gradient(135deg, #18111e, #14111c);
  border: 1.5px solid rgba(255, 46, 147, 0.4);
  border-radius: var(--radius-xl);
  padding: 20px;
  box-shadow: 0 10px 30px rgba(255, 46, 147, 0.1);
}

.radar-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
  gap: 12px;
}

.radar-title-box b {
  font-size: 15px;
  font-weight: 900;
  color: #fff;
  display: block;
}

.radar-title-box p {
  font-size: 11px;
  color: var(--text-secondary);
  margin-top: 2px;
}

.radar-live-count {
  background: rgba(255, 46, 147, 0.2);
  border: 1px solid var(--pink);
  color: var(--pink);
  font-size: 10px;
  font-weight: 900;
  padding: 4px 10px;
  border-radius: 99px;
  white-space: nowrap;
  box-shadow: 0 0 10px var(--pink-glow);
}

.one-on-one-request-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.empty-requests-notice {
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  padding: 24px 0;
  background: var(--panel2);
  border-radius: var(--radius-md);
  border: 1px dashed var(--line);
}

.one-on-one-request-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--panel2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  gap: 12px;
  transition: border-color 0.15s ease;
}

.one-on-one-request-item:hover {
  border-color: rgba(255, 46, 147, 0.4);
}

.req-left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 1;
}

.req-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff2e93, #ffe600);
  color: #07080e;
  font-size: 16px;
  font-weight: 950;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.req-info {
  min-width: 0;
}

.req-info b {
  font-size: 13px;
  color: #fff;
  font-weight: 900;
  display: block;
}

.req-city {
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
}

.req-note {
  font-size: 11px;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 2px 0 3px;
}

.req-time {
  font-size: 10px;
  color: var(--muted);
  display: block;
}

.req-amount {
  color: var(--yellow);
  font-weight: 850;
}

.req-actions {
  flex-shrink: 0;
}

.btn-accept-call {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #032314;
  font-weight: 950;
  font-size: 12px;
  padding: 9px 14px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
  transition: transform 0.15s ease, filter 0.15s ease;
  white-space: nowrap;
}

.btn-accept-call:hover {
  transform: translateY(-1px);
  filter: brightness(1.1);
}

.btn-accept-call:active {
  transform: scale(0.98);
}

/* ==========================================================================
   SMART FIXED DURATION PRICING SELECTOR (CREATOR STUDIO)
   ========================================================================== */
.smart-pricing-selector-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 10px 0;
}

.price-selector-label {
  font-size: 12px;
  font-weight: 800;
  color: var(--text-secondary);
}

.smart-tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 8px;
}

.smart-tier-card {
  position: relative;
  background: var(--panel2);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  padding: 10px 12px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: all 0.15s ease;
  user-select: none;
}

.smart-tier-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.smart-tier-card:hover {
  border-color: rgba(255, 46, 147, 0.4);
  background: rgba(255, 46, 147, 0.05);
}

.smart-tier-card.active {
  border-color: var(--pink);
  background: rgba(255, 46, 147, 0.12);
  box-shadow: 0 0 16px rgba(255, 46, 147, 0.25);
}

.smart-tier-icon {
  font-size: 18px;
}

.smart-tier-body b {
  display: block;
  font-size: 12px;
  color: #fff;
  font-weight: 900;
}

.smart-tier-body small {
  display: block;
  font-size: 10px;
  color: var(--muted);
  line-height: 1.2;
}

.smart-tier-price {
  margin-top: 4px;
  font-size: 14px;
  font-weight: 950;
  color: var(--yellow);
}

/* ==========================================================================
   CREATOR PROFILE MANAGER & SETTINGS CARD
   ========================================================================== */
.creator-profile-manager-card {
  background: linear-gradient(135deg, #181224, #0e111a);
  border: 1.5px solid rgba(255, 46, 147, 0.45);
  border-radius: var(--radius-xl);
  padding: 20px;
  box-shadow: 0 10px 30px rgba(255, 46, 147, 0.12);
}

.profile-mgr-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  gap: 12px;
  flex-wrap: wrap;
}

.profile-avatar-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.dp-preview-box {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(135deg, var(--pink), var(--yellow));
  box-shadow: 0 0 16px var(--pink-glow);
  flex-shrink: 0;
}

.creator-dp-preview-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #000;
  display: block;
}

.dp-badge {
  position: absolute;
  bottom: -2px;
  right: -2px;
  background: var(--pink);
  color: #fff;
  font-size: 8px;
  font-weight: 950;
  padding: 1px 5px;
  border-radius: 99px;
  border: 1px solid #000;
}

.profile-quick-meta {
  min-width: 0;
}

.profile-name-tag {
  display: flex;
  align-items: center;
  gap: 8px;
}

.profile-name-tag b {
  font-size: 17px;
  font-weight: 950;
  color: #fff;
}

.verified-pill {
  background: rgba(0, 245, 155, 0.15);
  border: 1px solid var(--green);
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
  padding: 2px 7px;
  border-radius: 99px;
}

.profile-niche-tag {
  display: block;
  font-size: 12px;
  color: var(--pink);
  font-weight: 800;
  margin-top: 2px;
}

.profile-city-text {
  font-size: 11px;
  color: var(--muted);
  display: block;
  margin-top: 2px;
}

.btn-preview-profile {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 99px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.15s ease;
}

.btn-preview-profile:hover {
  background: var(--pink);
  border-color: var(--pink);
  box-shadow: 0 0 14px var(--pink-glow);
  transform: translateY(-1px);
}

.creator-profile-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dp-change-bar {
  background: var(--panel2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dp-input-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dp-label {
  font-size: 11px;
  font-weight: 850;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.dp-inputs-flex {
  display: flex;
  gap: 8px;
}

.dp-url-field {
  flex: 1;
}

.btn-gallery-upload {
  background: rgba(255, 46, 147, 0.15);
  border: 1px solid var(--pink);
  color: #fff;
  font-size: 12px;
  font-weight: 850;
  padding: 0 14px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s ease;
}

.btn-gallery-upload:hover {
  background: var(--pink);
}

.preset-avatars-shelf {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.preset-avatars-shelf span {
  font-size: 11px;
  color: var(--muted);
  font-weight: 700;
}

.preset-avatars-row {
  display: flex;
  gap: 6px;
}

.preset-avatar-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.preset-avatar-btn:hover {
  border-color: var(--pink);
  color: var(--pink);
  background: rgba(255, 46, 147, 0.1);
}

.profile-fields-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field-item.full-width {
  grid-column: 1 / -1;
}

.field-label {
  font-size: 11px;
  font-weight: 850;
  color: var(--text-secondary);
}

.dash-select {
  cursor: pointer;
}

.dash-textarea {
  resize: vertical;
  min-height: 54px;
  font-family: inherit;
  line-height: 1.4;
}

.btn-save-profile {
  width: 100%;
  height: 46px;
  background: linear-gradient(135deg, #ff2e93, #ffe600);
  color: #07080e;
  font-weight: 950;
  font-size: 14px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(255, 46, 147, 0.35);
  transition: transform 0.15s ease, filter 0.15s ease;
}

.btn-save-profile:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

/* ==========================================================================
   CREATOR ADMIN CLEARANCE CARD
   ========================================================================== */
.creator-admin-clearance-card {
  background: linear-gradient(135deg, #0f172a, #111e38);
  border: 1.5px solid rgba(59, 130, 246, 0.4);
  border-radius: var(--radius-xl);
  padding: 16px 20px;
  box-shadow: 0 6px 24px rgba(59, 130, 246, 0.12);
}

.clearance-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.clearance-badge-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.clearance-crown {
  font-size: 28px;
  flex-shrink: 0;
}

.clearance-badge-row b {
  font-size: 13px;
  color: #fff;
  display: block;
}

.clearance-email {
  color: #60a5fa;
  font-weight: 950;
}

.clearance-badge-row p {
  font-size: 11px;
  color: var(--admin-muted, #94a3b8);
  margin-top: 2px;
}

.btn-go-admin {
  background: #2563eb;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
  transition: all 0.15s ease;
  display: inline-flex;
  align-items: center;
  border: none;
  cursor: pointer;
}

.btn-go-admin:hover {
  background: #3b82f6;
  transform: translateY(-1px);
}

@media (max-width: 600px) {
  .profile-fields-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   CREATOR LOGIN GATE & AUTH STATUS BAR
   ========================================================================== */
.creator-login-gate-card {
  background: #0e111a;
  border: 1.5px solid rgba(255, 46, 147, 0.45);
  border-radius: var(--radius-xl);
  padding: 34px 26px;
  text-align: center;
  max-width: 440px;
  margin: 24px auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 46, 147, 0.15);
}

.login-gate-shield {
  font-size: 46px;
  margin-bottom: 12px;
}

.creator-login-gate-card h2 {
  font-size: 22px;
  font-weight: 950;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.creator-login-gate-card p {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 22px;
  line-height: 1.5;
}

.creator-login-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}

.login-field-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.login-field-label {
  font-size: 11px;
  font-weight: 850;
  color: var(--text-secondary);
}

.creator-login-input {
  height: 48px;
  background: #141824;
  border: 1.5px solid #252b3d;
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  padding: 0 14px;
  width: 100%;
}

.creator-login-input:focus {
  border-color: var(--pink);
}

.btn-creator-login {
  height: 48px;
  background: linear-gradient(135deg, #ff2e93, #ffe600);
  color: #07080e;
  font-size: 14px;
  font-weight: 950;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(255, 46, 147, 0.4);
  transition: transform 0.15s ease, filter 0.15s ease;
  margin-top: 6px;
}

.btn-creator-login:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

.creator-login-error {
  color: var(--red);
  font-size: 12px;
  font-weight: 850;
  text-align: center;
  margin-top: 8px;
  line-height: 1.4;
}

.creator-login-hint {
  margin-top: 18px;
  font-size: 11px;
  color: var(--muted);
}

.creator-login-hint b {
  color: var(--yellow);
}

.creator-auth-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 46, 147, 0.08);
  border: 1px solid rgba(255, 46, 147, 0.35);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.creator-auth-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-secondary);
}

.creator-auth-info b {
  color: #fff;
}

.auth-dot-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse 1s infinite alternate;
}

.creator-auth-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-top-admin {
  background: #2563eb;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
  padding: 8px 16px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 2px 10px rgba(37, 99, 235, 0.4);
  transition: background 0.15s ease, transform 0.15s ease;
}

.btn-top-admin:hover {
  background: #3b82f6;
  transform: translateY(-1px);
}

.btn-creator-logout {
  background: rgba(255, 255, 255, 0.08);
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.15s ease;
}

.btn-creator-logout:hover {
  color: #fff;
  background: rgba(255, 56, 56, 0.2);
  border-color: var(--red);
}



