/* ========== ROTATION SYSTEM ========== */
.rotation-scoreboard {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 16px 0;
  padding: 20px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.rotation-team {
  flex: 1;
  text-align: center;
}

.rotation-team h4 {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.rotation-score {
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
}

#rot-team-a .rotation-score { color: var(--purple-light); }
#rot-team-b .rotation-score { color: var(--orange); }

.rotation-vs {
  font-size: 18px;
  font-weight: 900;
  color: var(--text-muted);
  padding: 0 8px;
}

.score-controls {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.score-btn-group {
  flex: 1;
  text-align: center;
}

.score-btn-group span {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.btn-score {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}

.score-btn-group:first-child .btn-score {
  background: var(--purple);
  color: white;
}

.score-btn-group:last-child .btn-score {
  background: var(--orange);
  color: white;
}

.btn-score:hover {
  transform: translateY(-2px);
}

/* Rotation history item */
.rotation-round-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius);
  margin-bottom: 8px;
}

.round-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
}

.round-result {
  flex: 1;
  font-size: 13px;
}

.round-score {
  font-weight: 800;
  color: var(--orange);
}

/* ========== PIX PAYMENT ========== */
.pix-card {
  text-align: center;
}

.pix-header {
  margin-bottom: 16px;
}

.pix-qr-icon {
  font-size: 48px;
  color: var(--purple-light);
  margin-bottom: 8px;
}

.pix-qr-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.pix-qr-container canvas {
  background: white;
  border-radius: var(--radius);
  padding: 12px;
}

.pix-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
  color: var(--text-muted);
  font-size: 13px;
}

.pix-divider::before,
.pix-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.pix-copy-group {
  display: flex;
  gap: 8px;
  align-items: stretch;
  width: 100%;
}

.pix-copy-group input {
  flex: 1;
  min-width: 0;
  font-size: 12px;
}

.pix-copy-group .btn-primary {
  width: 48px;
  flex: 0 0 48px;
  padding: 0;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
}

.pix-info {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 16px 0;
}

/* ========== STAT REGISTER EXPANDED ========== */
.stat-register-item {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 10px;
  border: 1px solid var(--border);
}

.stat-player-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.stat-input-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.stat-input-group label {
  font-size: 10px;
  color: var(--text-muted);
  white-space: nowrap;
}

.stat-input-group input {
  width: 44px;
  height: 36px;
  text-align: center;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 700;
  outline: none;
  font-family: inherit;
}

.stat-input-group input:focus {
  border-color: var(--purple);
}

/* ========== STAT VALIDATION ========== */
.stat-validation-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 12px;
}

.stat-validation-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.stat-validation-header h4 { font-size: 14px; }
.stat-validation-header .match-label { font-size: 11px; color: var(--text-muted); }

.stat-validation-details {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.stat-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.stat-chip.positive { background: rgba(0,200,83,0.15); color: var(--green); }
.stat-chip.negative { background: rgba(255,61,61,0.15); color: var(--red); }

/* Chip de checkbox (posições necessárias, etc) */
.chip-check {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  cursor: pointer;
  user-select: none;
  transition: all 0.15s;
}
.chip-check input[type="checkbox"] {
  width: 14px;
  height: 14px;
  margin: 0;
  cursor: pointer;
}
.chip-check:has(input:checked) {
  background: rgba(255,138,0,0.18);
  border-color: var(--orange);
  color: var(--orange);
}

.stat-val-actions {
  display: flex;
  gap: 8px;
}

.stat-val-actions button {
  flex: 1;
}

/* ========== ADMIN BADGES ========== */
.admin-badge {
  background: var(--red);
  color: white;
  font-size: 11px;
  font-weight: 700;
  min-width: 22px;
  height: 22px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
}

.admin-badge:empty { display: none; }

/* ========== RELEASE REQUEST ========== */
.release-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(255,122,0,0.05);
  border: 1px solid rgba(255,122,0,0.2);
  border-radius: var(--radius);
  margin-bottom: 8px;
}

.release-item .player-info { flex: 1; }

/* ========== SCORING TABLE ========== */
.scoring-table {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.score-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 14px;
}

.score-row:last-child { border-bottom: none; }

.highlight-row {
  background: rgba(255,122,0,0.1);
  margin: 4px -20px 0;
  padding: 12px 20px;
  border-radius: 0 0 var(--radius) var(--radius);
  font-weight: 700;
}

/* ========== NOTIFICATIONS ========== */
.notif-item {
  display: flex;
  gap: 12px;
  padding: 14px;
  background: var(--bg-card);
  border-radius: var(--radius);
  margin-bottom: 8px;
  border: 1px solid var(--border);
}

.notif-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.notif-icon.purple { background: rgba(123,44,191,0.2); color: var(--purple-light); }
.notif-icon.orange { background: rgba(255,122,0,0.2); color: var(--orange); }
.notif-icon.green { background: rgba(0,200,83,0.2); color: var(--green); }
.notif-icon.red { background: rgba(255,61,61,0.2); color: var(--red); }

.notif-content h4 { font-size: 13px; font-weight: 600; margin-bottom: 2px; }
.notif-content p { font-size: 12px; color: var(--text-muted); }
.notif-time { font-size: 10px; color: var(--text-muted); margin-top: 4px; }

.notif-dot {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
}

.btn-icon { position: relative; }

/* ========== OFFLINE BADGE ========== */
.offline-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 700;
  color: var(--orange);
  background: rgba(255,122,0,0.15);
  padding: 4px 8px;
  border-radius: 12px;
}

/* ========== BLOCKED ITEMS ========== */
.blocked-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(255,61,61,0.05);
  border: 1px solid rgba(255,61,61,0.2);
  border-radius: var(--radius);
  margin-bottom: 8px;
}

.blocked-item .player-info { flex: 1; }

/* ========== MODAL MENU ========== */
.modal-menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.modal-menu button {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 14px;
  background: rgba(255,255,255,0.03);
  border: none;
  border-radius: var(--radius);
  color: var(--text-primary);
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s;
  font-family: inherit;
}

.modal-menu button:hover { background: rgba(255,255,255,0.08); }
.modal-menu button i { color: var(--purple-light); width: 20px; text-align: center; }

/* ========== ADMIN PAY ========== */
.admin-pay-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius);
  margin-bottom: 8px;
}

.admin-pay-item .player-info { flex: 1; }

.admin-pay-actions {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

/* ========== HINT ========== */
.hint {
  font-size: 12px;
  margin-top: 6px;
}

.hint strong { color: var(--orange); }

/* ========== TEAMS GRID ========== */
.teams-container {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  position: relative;
}

.team-card {
  flex: 1;
  min-width: calc(50% - 4px);
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 14px;
  border: 2px solid transparent;
}

.team-card h3 {
  font-size: 13px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.team-a { border-color: var(--purple); }
.team-a h3 { color: var(--purple-light); }
.team-b { border-color: var(--orange); }
.team-b h3 { color: var(--orange); }
.team-c { border-color: var(--green); }
.team-c h3 { color: var(--green); }
.team-d { border-color: var(--yellow); }
.team-d h3 { color: var(--yellow); }

.team-player {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 0;
  font-size: 12px;
}

.team-player .jersey { font-size: 14px; }

/* ========== LEGAL PAGES ========== */
.legal-content {
  padding-bottom: 40px;
}

.legal-content .legal-updated {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 20px;
  font-style: italic;
}

.legal-content h3 {
  font-size: 15px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 8px;
  color: var(--orange);
}

.legal-content p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.legal-content ul {
  margin: 8px 0 12px 20px;
  padding: 0;
}

.legal-content ul li {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

/* ========== PIX AUTOMATIC PAYMENT ========== */
.btn-pix {
  background: linear-gradient(135deg, #32BCAD, #1EA89A);
  color: white;
  border: none;
  padding: 14px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.1s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(50, 188, 173, 0.3);
}

.btn-pix:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(50, 188, 173, 0.45);
}

.btn-pix:active {
  transform: translateY(0);
}

.pix-modal-content {
  background: var(--bg-dark);
  width: 100%;
  max-width: 420px;
  max-height: 90vh;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 48px 20px 24px;
  overflow-y: auto;
  text-align: center;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--bg-card);
  color: var(--text-secondary);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 2;
  padding: 0;
}

.modal-close:hover {
  background: var(--border);
  color: var(--text-primary);
}

.modal-close:active {
  transform: scale(0.95);
}

.pix-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.pix-state h3 {
  margin: 0;
  font-size: 18px;
}

.pix-modal-icon {
  font-size: 42px;
  color: #32BCAD;
  margin-bottom: 4px;
}

.pix-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid var(--border);
  border-top-color: #32BCAD;
  border-radius: 50%;
  animation: pix-spin 0.9s linear infinite;
  margin: 12px 0;
}

@keyframes pix-spin {
  to { transform: rotate(360deg); }
}

.pix-qr-image {
  width: 220px;
  height: 220px;
  background: white;
  border-radius: var(--radius);
  padding: 10px;
  object-fit: contain;
}

.pix-timer {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 999px;
  margin: 4px 0;
}

.pix-timer.expiring {
  color: var(--orange);
  border-color: var(--orange);
}

.pix-waiting-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 13px;
  margin-top: 8px;
}

.pix-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #32BCAD;
  animation: pix-pulse 1.4s ease-in-out infinite;
}

@keyframes pix-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.5; }
}

.pix-success-icon {
  font-size: 64px;
  color: var(--green);
  animation: pix-pop 0.35s ease-out;
}

.pix-error-icon {
  font-size: 54px;
  color: var(--red);
}

@keyframes pix-pop {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(1); }
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 12px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
}

.btn-secondary:hover {
  background: var(--bg-card);
}

/* ========== STATS BULK BAR ========== */
.stats-bulk-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  position: sticky;
  top: 0;
  z-index: 10;
}

.stats-bulk-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stats-bulk-actions {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.stat-check-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.stat-check-wrap input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--purple);
  cursor: pointer;
  margin: 0;
}

.btn-sm {
  font-size: 12px;
  padding: 8px 12px;
  letter-spacing: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ========== ADMIN ALERT BANNER ========== */
.admin-alert-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: linear-gradient(135deg, rgba(255,122,0,0.12), rgba(255,122,0,0.04));
  border: 1px solid var(--orange);
  border-radius: var(--radius);
  margin-bottom: 12px;
  cursor: pointer;
  transition: transform 0.15s;
}

.admin-alert-banner:active {
  transform: scale(0.99);
}

.admin-alert-banner .aab-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.admin-alert-banner .aab-content {
  flex: 1;
  min-width: 0;
}

.admin-alert-banner .aab-title {
  font-weight: 700;
  font-size: 14px;
  color: var(--text-primary);
}

.admin-alert-banner .aab-text {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 2px;
}

.admin-alert-banner .aab-chevron {
  color: var(--orange);
  font-size: 14px;
}

/* ========== MEMBER BADGES ========== */
.member-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 4px;
  vertical-align: middle;
}

.member-badge.admin {
  background: rgba(255, 122, 0, 0.15);
  color: var(--orange);
  border: 1px solid var(--orange);
}

.member-badge.coadmin {
  background: rgba(123, 44, 191, 0.15);
  color: var(--purple-light);
  border: 1px solid var(--purple-light);
}

/* ========== PERMISSION ROWS ========== */
.perm-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.15s;
  font-size: 13px;
}

.perm-row:hover {
  background: rgba(255, 255, 255, 0.04);
}

.perm-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--purple);
  cursor: pointer;
  margin: 0;
  flex-shrink: 0;
}

.perm-row i {
  color: var(--purple-light);
  width: 16px;
  text-align: center;
}

.perm-row span {
  flex: 1;
}

/* ========== PAYWALL / PRO ========== */
.paywall-hero {
  text-align: center;
  padding: 24px 16px 12px;
}
.paywall-crown {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange) 0%, #FFB800 100%);
  font-size: 32px;
  color: #1a0a00;
  margin-bottom: 16px;
  box-shadow: 0 8px 24px rgba(255,122,0,0.35);
}
.paywall-title {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 6px;
}
.paywall-subtitle {
  color: var(--text-secondary);
  font-size: 14px;
  max-width: 320px;
  margin: 0 auto;
}

.paywall-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 16px;
  margin: 20px 0 24px;
  border: 1px solid var(--border);
}
.paywall-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-primary);
}
.paywall-feature i {
  color: var(--green);
  font-size: 12px;
  flex-shrink: 0;
}

.paywall-section-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
  margin: 0 0 12px;
}

.paywall-plans {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
.paywall-plan {
  position: relative;
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.15s, transform 0.05s;
  color: var(--text-primary);
  font-family: inherit;
}
.paywall-plan:hover { border-color: var(--purple-light); }
.paywall-plan:active { transform: scale(0.99); }
.paywall-plan.paywall-plan-featured {
  border-color: var(--orange);
  background: linear-gradient(180deg, rgba(255,122,0,0.08) 0%, var(--bg-card) 100%);
  padding-top: 24px;
}
.plan-badge {
  position: absolute;
  top: -10px;
  left: 16px;
  background: var(--orange);
  color: #1a0a00;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 999px;
}
.plan-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.plan-name {
  font-size: 16px;
  font-weight: 700;
}
.plan-tag {
  font-size: 11px;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.plan-price { display: flex; align-items: baseline; gap: 6px; }
.plan-price-value {
  font-size: 26px;
  font-weight: 800;
  color: var(--text-primary);
}
.plan-price-period {
  font-size: 13px;
  color: var(--text-secondary);
}
.plan-desc {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

.paywall-coupon { margin-bottom: 16px; }
.paywall-coupon-toggle {
  background: none;
  border: none;
  color: var(--orange);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 8px 0;
  font-family: inherit;
}
.paywall-coupon-box {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}
.paywall-coupon-input {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}
.paywall-coupon-box .btn-primary {
  width: 100%;
}

.paywall-restore {
  width: 100%;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  border-radius: var(--radius);
  padding: 12px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 16px;
  font-family: inherit;
}
.paywall-restore:hover { border-color: var(--purple-light); color: var(--text-primary); }

.paywall-legal {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
  padding: 8px 0 24px;
}

.paywall-already-pro {
  text-align: center;
  padding: 24px;
}
.paywall-success-icon {
  font-size: 64px;
  color: var(--green);
  margin-bottom: 12px;
}

/* Badge "PRO" reutilizável */
.pro-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: linear-gradient(135deg, var(--orange) 0%, #FFB800 100%);
  color: #1a0a00;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 2px 8px;
  border-radius: 999px;
  vertical-align: middle;
  margin-left: 6px;
}
.pro-badge::before { content: "★"; }

/* Item upgrade no perfil */
.profile-upgrade-cta {
  background: linear-gradient(135deg, rgba(255,122,0,0.18) 0%, rgba(123,44,191,0.18) 100%);
  border: 1px solid var(--orange);
  border-radius: var(--radius);
  padding: 16px;
  margin: 12px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  width: 100%;
  text-align: left;
  font-family: inherit;
  color: var(--text-primary);
}
.profile-upgrade-cta i.fa-crown {
  color: var(--orange);
  font-size: 22px;
  flex-shrink: 0;
}
.profile-upgrade-cta-body { flex: 1; }
.profile-upgrade-cta-body strong { display: block; font-size: 14px; }
.profile-upgrade-cta-body span { display: block; font-size: 12px; color: var(--text-secondary); margin-top: 2px; }

/* Lista de cupons admin */
.coupon-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.coupon-item-main { flex: 1; min-width: 0; }
.coupon-code {
  font-family: 'Inter', monospace;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 1px;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 6px;
}
.coupon-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 4px;
  font-size: 11px;
  color: var(--text-muted);
}
.coupon-meta span { background: var(--bg-dark); padding: 2px 6px; border-radius: 4px; }
.coupon-delete {
  background: none;
  border: none;
  color: var(--red);
  font-size: 16px;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}
.coupon-copy {
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 14px;
  padding: 4px;
}

/* Mini badge PRO inline em tabs/botões */
.pro-badge-mini {
  font-size: 8px !important;
  padding: 1px 5px !important;
  margin-left: 4px !important;
  letter-spacing: 0.3px !important;
  vertical-align: middle;
}
.pro-badge-mini::before { content: "" !important; }
