/* ========================================================
   INSTAAUDIT - DESIGN SYSTEM & STYLING (SITE DE SORTEIO TCC)
   ======================================================== */

:root {
  --bg-main: #f8f6f0;
  --bg-card: #ffffff;
  --bg-subtle: #f3f1ea;
  --bg-accent-soft: #fbf5ee;
  
  --border-color: #e5e1d5;
  --border-accent: #e28a52;
  --border-dark: #1e1b18;

  --text-main: #1e1b18;
  --text-muted: #6b675e;
  --text-light: #949085;
  --text-terracotta: #bd5e27;

  --accent-terracotta: #bd5e27;
  --accent-gold: #d97706;
  --accent-green: #059669;
  --accent-dark: #121110;

  --font-serif: 'Newsreader', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 14px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

#confettiCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9999;
}

/* ---------------- TOP NAVIGATION ---------------- */
.top-nav {
  border-bottom: 1px solid var(--border-color);
  background: rgba(248, 246, 240, 0.9);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 50;
}

.top-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-badge {
  background: #1e1b18;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 8px;
  border-radius: 4px;
  cursor: pointer;
  user-select: none;
  transition: transform 0.15s ease;
}

.brand-badge:hover {
  transform: scale(1.05);
}

.brand-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.3px;
  color: var(--text-main);
}

.nav-trust-badges {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 12px;
  color: var(--text-muted);
}

.nav-status-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--border-color);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--text-muted);
}

.status-indicator-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-green);
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.15);
}

.status-indicator-dot.busy {
  background: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.25);
  animation: pulseDot 1s infinite alternate;
}

@keyframes pulseDot {
  0% { transform: scale(0.9); }
  100% { transform: scale(1.2); }
}

/* ---------------- MAIN CONTAINER ---------------- */
.main-wrapper {
  max-width: 1140px;
  margin: 36px auto 60px;
  padding: 0 20px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 28px;
  align-items: start;
}

@media (max-width: 900px) {
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------------- CARDS & SECTIONS ---------------- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
}

.section-divider {
  height: 1px;
  background: var(--border-color);
  margin: 28px 0;
}

/* ---------------- STEPS HEADER ---------------- */
.step-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.step-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.step-num {
  font-family: var(--font-serif);
  font-size: 12px;
  color: var(--accent-terracotta);
  border: 1px solid #f0ccb6;
  background: #fdf6f0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}

.step-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: var(--text-light);
  text-transform: uppercase;
}

.step-title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.5px;
  color: var(--text-main);
}

.field-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-light);
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}

/* ---------------- INPUTS & FIELDS ---------------- */
.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrapper input {
  width: 100%;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 13px 40px 13px 14px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-main);
  transition: all 0.2s ease;
}

.input-wrapper input:focus {
  outline: none;
  border-color: var(--text-main);
  box-shadow: 0 0 0 3px rgba(30, 27, 24, 0.06);
}

.input-icon-status {
  position: absolute;
  right: 14px;
  color: var(--accent-green);
  font-size: 14px;
  font-weight: 700;
}

/* ---------------- PARTICIPATION OPTIONS ---------------- */
.participation-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.option-radio-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.option-radio-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.radio-custom {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #d1cdbf;
  margin-top: 2px;
  flex-shrink: 0;
  position: relative;
  transition: all 0.15s ease;
}

.option-radio-card.selected {
  border-color: var(--border-accent);
  background: #fffbf8;
}

.option-radio-card.selected .radio-custom {
  border-color: var(--accent-terracotta);
}

.option-radio-card.selected .radio-custom::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--accent-terracotta);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.option-content {
  flex: 1;
}

.option-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 2px;
}

.opt-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
}

.badge-accent {
  background: #fdf0e6;
  color: var(--accent-terracotta);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.8px;
  padding: 2px 6px;
  border-radius: 4px;
}

.opt-desc {
  font-size: 12px;
  color: var(--text-muted);
}

/* ---------------- DUAL ROW: GANHADORES & EXCLUIR ---------------- */
.rules-dual-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  margin-top: 18px;
}

.stepper-box {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 46px;
}

.btn-step {
  width: 40px;
  height: 100%;
  background: transparent;
  border: none;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.15s;
}

.btn-step:hover {
  background: var(--bg-subtle);
  color: var(--text-main);
}

.stepper-box input {
  flex: 1;
  text-align: center;
  border: none;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-main);
  background: transparent;
}

/* ---------------- ACTION FOOTER ---------------- */
.action-footer {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.btn-main-action {
  width: 100%;
  background: var(--accent-dark);
  color: #fff;
  border: none;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(18, 17, 16, 0.12);
}

.btn-main-action:hover {
  background: #272421;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(18, 17, 16, 0.18);
}

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

.btn-main-action.collecting {
  background: #c2410c;
  cursor: wait;
}

.btn-main-action.ready-to-draw {
  background: var(--accent-terracotta);
  box-shadow: 0 6px 20px rgba(189, 94, 39, 0.3);
}

.btn-main-action.ready-to-draw:hover {
  background: #a94f1d;
}

.arrow-right {
  font-size: 18px;
  transition: transform 0.2s ease;
}

.btn-main-action:hover .arrow-right {
  transform: translateX(4px);
}

.security-disclaimer {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.5;
}

.security-disclaimer strong {
  color: #c2410c;
}

/* ---------------- COLUNA DIREITA: PAINEL DE DADOS ---------------- */
.data-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}

.data-title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.4px;
  color: var(--text-main);
  margin-top: 4px;
}

.pulse-status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent-green);
  box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.15);
}

.pulse-status-dot.active {
  background: #f59e0b;
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.25);
  animation: pulseDot 1s infinite alternate;
}

.ready-status-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.ready-status-box.success {
  background: #eef7f2;
  border-color: #c9e8d7;
}

.ready-status-box.active {
  background: #fffbeb;
  border-color: #fde68a;
}

.check-icon-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #64748b;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.ready-status-box.success .check-icon-circle {
  background: var(--accent-green);
}

.ready-status-box.active .check-icon-circle {
  background: #d97706;
}

.ready-content strong {
  font-size: 13px;
  color: var(--text-main);
  display: block;
  margin-bottom: 2px;
}

.ready-content p {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ---------------- PROGRESS BAR (4-7 MINUTOS) ---------------- */
.extraction-progress-container {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin-bottom: 16px;
}

.progress-info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 11px;
}

.progress-status-label {
  font-weight: 600;
  color: var(--accent-terracotta);
}

.progress-time-remaining {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--text-muted);
}

.progress-bar-track {
  width: 100%;
  height: 8px;
  background: #f1efe9;
  border-radius: 100px;
  overflow: hidden;
  position: relative;
}

.progress-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #bd5e27, #f59e0b);
  border-radius: 100px;
  transition: width 0.4s ease;
}

.progress-stats-sub {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  color: var(--text-light);
  margin-top: 8px;
  font-family: var(--font-mono);
}

.btn-stealth-speedup {
  background: none;
  border: none;
  opacity: 0.25;
  cursor: pointer;
  font-size: 12px;
  transition: opacity 0.2s;
}

.btn-stealth-speedup:hover {
  opacity: 1;
}

/* ---------------- METRICS GRID (86 MIL) ---------------- */
.metrics-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.metric-cell {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 12px;
  text-align: center;
}

.metric-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: var(--text-light);
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}

.metric-value {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--text-main);
}

.metric-cell.main-metric .metric-value {
  color: #121110;
  font-weight: 700;
}

.metric-value.origin-val {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-terracotta);
  margin-top: 5px;
  display: block;
}

.metric-value.audit-status-val {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-green);
  margin-top: 5px;
  display: block;
}

/* ---------------- TERMINAL LOGS ---------------- */
.terminal-audit-box {
  background: #181716;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 16px;
  border: 1px solid #2b2825;
}

.terminal-header {
  background: #242220;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.terminal-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.terminal-dot.red { background: #ef4444; }
.terminal-dot.yellow { background: #f59e0b; }
.terminal-dot.green { background: #10b981; }

.terminal-title {
  font-family: var(--font-mono);
  font-size: 10px;
  color: #a8a29e;
  margin-left: 6px;
}

.terminal-logs {
  padding: 10px 12px;
  max-height: 110px;
  overflow-y: auto;
  font-family: var(--font-mono);
  font-size: 10px;
  line-height: 1.6;
  color: #e7e5e4;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.log-line.text-muted { color: #78716c; }
.log-line.text-info { color: #38bdf8; }
.log-line.text-success { color: #4ade80; }
.log-line.text-warning { color: #fbbf24; }

/* ---------------- COMMENTS PREVIEW LIST ---------------- */
.comments-preview-container {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
}

.comments-preview-header {
  background: #f9f8f4;
  border-bottom: 1px solid var(--border-color);
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.live-blink {
  color: #ef4444;
  font-weight: 800;
  font-size: 9px;
  letter-spacing: 0.5px;
  animation: liveBlinkAnim 1s infinite alternate;
}

@keyframes liveBlinkAnim {
  0% { opacity: 0.4; }
  100% { opacity: 1; }
}

.comments-list-scroll {
  max-height: 170px;
  overflow-y: auto;
  padding: 8px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.empty-placeholder {
  color: #a8a29e;
  font-size: 11px;
  text-align: center;
  padding: 24px 10px;
}

.comment-row-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  padding-bottom: 6px;
  border-bottom: 1px solid #f3f1ea;
  animation: slideFadeIn 0.3s ease;
}

@keyframes slideFadeIn {
  0% { opacity: 0; transform: translateY(-4px); }
  100% { opacity: 1; transform: translateY(0); }
}

.comment-row-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.comment-row-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.comment-row-info {
  flex: 1;
  min-width: 0;
}

.comment-row-user {
  font-weight: 700;
  color: var(--text-main);
  margin-right: 6px;
}

.comment-row-text {
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  max-width: 260px;
  vertical-align: bottom;
}

/* ---------------- DRAW OVERLAY & WINNER REVEAL (SEM ROLETA) ---------------- */
.draw-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(18, 17, 16, 0.92);
  backdrop-filter: blur(14px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.draw-modal-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  max-width: 540px;
  width: 100%;
  padding: 36px 28px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  text-align: center;
  position: relative;
  animation: modalPop 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalPop {
  0% { transform: scale(0.92); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.stage-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--accent-terracotta);
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.stage-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 14px;
}

.spinner-audit-ring {
  width: 50px;
  height: 50px;
  border: 4px solid #fed7aa;
  border-top-color: var(--accent-terracotta);
  border-radius: 50%;
  margin: 16px auto;
  animation: spin 0.7s linear infinite;
}

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

.countdown-big-number {
  font-family: var(--font-serif);
  font-size: 80px;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1;
  margin: 10px 0;
  animation: pulseScale 0.9s infinite alternate;
}

@keyframes pulseScale {
  0% { transform: scale(0.95); }
  100% { transform: scale(1.05); }
}

/* ---------------- WINNER STAGE (PERFIL NILTON KLINGELFUS) ---------------- */
.winner-trophy-badge {
  display: inline-block;
  background: #fef3c7;
  border: 1px solid #fde68a;
  color: #92400e;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 16px;
  box-shadow: 0 0 18px rgba(245, 158, 11, 0.35);
  animation: glowPulse 1.5s infinite alternate;
}

@keyframes glowPulse {
  0% { transform: scale(1); box-shadow: 0 0 10px rgba(245, 158, 11, 0.2); }
  100% { transform: scale(1.04); box-shadow: 0 0 25px rgba(245, 158, 11, 0.5); }
}

.winner-official-card {
  background: #faf8f5;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 22px 18px;
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
}

.winner-avatar-wrap {
  position: relative;
  width: 96px;
  height: 96px;
  margin: 0 auto 10px;
}

.winner-avatar-wrap a {
  display: block;
  width: 100%;
  height: 100%;
}

.winner-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #e1306c;
  box-shadow: 0 0 20px rgba(225, 48, 108, 0.35);
  transition: transform 0.2s ease;
}

.winner-avatar:hover {
  transform: scale(1.06);
}

.winner-verified-check {
  position: absolute;
  bottom: 2px;
  right: 2px;
  background: #0095f6;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}

.winner-profile-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin-bottom: 8px;
}

.winner-realname {
  font-size: 20px;
  font-weight: 700;
  color: #1c1917;
}

.winner-handle-link {
  text-decoration: none;
}

.winner-handle {
  font-size: 14px;
  font-weight: 600;
  color: #c13584;
}

.winner-handle:hover {
  text-decoration: underline;
}

/* STATS PILLS (27 posts, 328 seguidores...) */
.winner-stats-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.stat-pill strong {
  color: var(--text-main);
  font-weight: 700;
}

/* BIO BOX DO PERFIL */
.winner-bio-box {
  background: #f3f0e8;
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 12px;
  color: #44403c;
  line-height: 1.5;
  margin-bottom: 14px;
  text-align: left;
}

.winner-bio-box p {
  margin-bottom: 2px;
}

.winner-bio-box p:last-child {
  margin-bottom: 0;
}

/* COMENTÁRIO PREMIADO */
.winner-comment-bubble {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  margin-bottom: 14px;
  text-align: left;
}

.comment-label-tag {
  font-size: 9px;
  font-weight: 800;
  color: var(--accent-terracotta);
  letter-spacing: 0.8px;
  display: block;
  margin-bottom: 4px;
}

.winner-comment-text {
  font-size: 13px;
  font-style: italic;
  color: var(--text-main);
  line-height: 1.4;
}

/* BOTÃO DE DESTAQUE DO INSTAGRAM */
.winner-instagram-cta {
  margin-bottom: 16px;
}

.btn-instagram-profile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 100px;
  box-shadow: 0 4px 15px rgba(220, 39, 67, 0.35);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-instagram-profile:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(220, 39, 67, 0.5);
  filter: brightness(1.05);
}

.instagram-icon-svg {
  flex-shrink: 0;
}

.winner-metadata-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 8px;
  border-top: 1px solid var(--border-color);
  padding-top: 12px;
  text-align: center;
}

.meta-lbl {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: var(--text-light);
  display: block;
  margin-bottom: 2px;
}

.meta-val {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-main);
}

.code-font {
  font-family: var(--font-mono);
  color: var(--accent-terracotta);
  font-size: 10px;
}

.winner-actions-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.btn-secondary-action {
  background: #fff;
  border: 1px solid var(--border-color);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
}

.btn-export-proof {
  background: var(--accent-dark);
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
}

.btn-export-proof:hover {
  background: #2b2825;
}
