/* ========================================
   RESET & BASE STYLES
   ======================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: linear-gradient(180deg, #1A1A2E 0%, #16213E 100%);
  color: #FFFFFF;
  overflow: hidden;
  height: 100vh;
  width: 100vw;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
}

/* ========================================
   MAIN CONTAINER
   ======================================== */

.feedback-container {
  max-width: 500px;
  margin: 0 auto;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ========================================
   BUSINESS HEADER
   ======================================== */

.business-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(22, 33, 62, 0.8);
  backdrop-filter: blur(10px);
  flex-shrink: 0;
}

.business-logo {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.05);
}

.business-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.business-info {
  flex: 1;
  min-width: 0;
}

.business-name {
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 4px;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.business-context {
  font-size: 14px;
  color: #B0B0B0;
  line-height: 1.3;
}

/* ========================================
   SWIPE ZONE
   ======================================== */

.swipe-zone {
  position: relative;
  flex: 1;
  overflow: hidden;
  touch-action: none;
  user-select: none;
}

.swipe-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(26, 26, 46, 1), rgba(22, 33, 62, 1));
  transition: background 0.3s ease-out;
  z-index: 1;
}

/* Zone Labels (Top and Bottom) */
.zone-label {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  opacity: 0.3;
  transition: opacity 0.3s ease;
  z-index: 2;
  pointer-events: none;
}

.zone-positive {
  top: 40px;
}

.zone-negative {
  bottom: 40px;
}

.zone-emoji {
  font-size: 48px;
  display: block;
  margin-bottom: 8px;
  line-height: 1;
}

.zone-text {
  font-size: 18px;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: 2px;
}

/* Center Swipe Indicator */
.swipe-indicator {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  border-radius: 60px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 3px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: grab;
  touch-action: none;
  z-index: 10;
  transition: transform 0.1s ease-out;
  will-change: transform;
}

.swipe-indicator.active {
  cursor: grabbing;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* Idle pulse animation */
.swipe-indicator.idle-pulse {
  animation: idlePulse 2s ease-in-out infinite;
}

@keyframes idlePulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05);
    opacity: 1;
  }
}

.indicator-emoji {
  font-size: 80px;
  line-height: 1;
  transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.indicator-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease, box-shadow 0.3s ease;
  pointer-events: none;
}

/* Particle Canvas */
.particle-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
}

/* Sentiment Label (appears while dragging) */
.sentiment-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% - 100px));
  font-size: 20px;
  font-weight: 600;
  color: #FFFFFF;
  text-align: center;
  opacity: 0;
  transition: opacity 0.2s ease;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
  z-index: 11;
  white-space: nowrap;
  pointer-events: none;
}

/* Threshold Line */
.threshold-line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 3px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 9;
  pointer-events: none;
}

/* ========================================
   INSTRUCTIONS PANEL
   ======================================== */

.instructions-panel {
  padding: 20px;
  text-align: center;
  flex-shrink: 0;
}

.instruction-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 12px;
  opacity: 0.7;
  color: #B0B0B0;
}

.gesture-animation {
  width: 100%;
  height: 100%;
  animation: gestureFloat 2s ease-in-out infinite;
}

@keyframes gestureFloat {
  0%, 100% {
    transform: translateY(0px);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-15px);
    opacity: 1;
  }
}

.instruction-text {
  font-size: 16px;
  color: #B0B0B0;
  line-height: 1.5;
  margin-bottom: 8px;
}

.instruction-highlight {
  color: #FFFFFF;
  font-weight: 600;
}

.instruction-subtext {
  font-size: 14px;
  color: #6B6B6B;
  font-style: italic;
}

/* ========================================
   SUBMITTING OVERLAY
   ======================================== */

.submitting-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 26, 46, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.submitting-content {
  text-align: center;
}

.spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-top-color: #4CAF50;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.submitting-content p {
  font-size: 18px;
  color: #FFFFFF;
}

/* ========================================
   THANK YOU SCREEN
   ======================================== */

.thank-you-screen {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, #1A1A2E 0%, #16213E 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.thank-you-screen.visible {
  opacity: 1;
}

.thank-you-content {
  text-align: center;
  padding: 40px;
  max-width: 500px;
  animation: slideUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.success-checkmark {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: #4CAF50;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  color: white;
  animation: scaleIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes scaleIn {
  from { transform: scale(0); }
  to { transform: scale(1); }
}

.thank-you-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.sentiment-emoji-large {
  font-size: 80px;
  margin: 20px 0;
  line-height: 1;
}

.thank-you-content > p {
  font-size: 18px;
  color: #B0B0B0;
  margin-bottom: 40px;
  line-height: 1.6;
}

.optional-actions {
  margin-top: 40px;
}

.optional-actions p {
  font-size: 16px;
  color: #B0B0B0;
  margin-bottom: 20px;
}

.voice-note-btn,
.skip-btn {
  display: block;
  width: 100%;
  padding: 16px;
  margin: 10px 0;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.voice-note-btn {
  background: #4CAF50;
  color: white;
}

.voice-note-btn:hover {
  background: #45a049;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(76, 175, 80, 0.4);
}

.skip-btn {
  background: rgba(255, 255, 255, 0.1);
  color: #B0B0B0;
}

.skip-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
   ======================================== */

@media (max-height: 600px) {
  .business-header {
    padding: 15px;
  }
  
  .swipe-indicator {
    width: 100px;
    height: 100px;
  }
  
  .indicator-emoji {
    font-size: 60px;
  }
  
  .zone-emoji {
    font-size: 36px;
  }
  
  .instructions-panel {
    padding: 15px;
  }
}

/* ========================================
   SCALE UI CONTAINER
   ======================================== */

.scale-ui-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 24px 20px;
  overflow-y: auto;
}

.scale-ui {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.scale-ui-prompt {
  font-size: 20px;
  font-weight: 600;
  color: #FFFFFF;
  text-align: center;
  line-height: 1.4;
}

.scale-ui-hint {
  font-size: 14px;
  color: #6B6B6B;
  font-style: italic;
  text-align: center;
}

/* ========================================
   STAR RATING
   ======================================== */

.star-row {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.star-btn {
  background: none;
  border: none;
  font-size: 52px;
  color: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  padding: 4px;
  transition: color 0.15s ease, transform 0.15s ease;
  line-height: 1;
  -webkit-tap-highlight-color: transparent;
}

.star-btn:hover,
.star-btn--lit {
  color: #FFD700;
  transform: scale(1.15);
}

.star-btn:active {
  transform: scale(0.95);
}

/* ========================================
   BUTTON GRID (Satisfaction, Custom)
   ======================================== */

.scale-btn-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.scale-option-btn {
  width: 100%;
  padding: 18px 24px;
  background: rgba(255, 255, 255, 0.07);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  color: #FFFFFF;
  font-size: 17px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}

.scale-option-btn:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.35);
}

.scale-option-btn:active {
  transform: scale(0.97);
  background: rgba(76, 175, 80, 0.3);
  border-color: #4CAF50;
}

/* ========================================
   NPS SCALE
   ======================================== */

.nps-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.nps-btn {
  width: 52px;
  height: 52px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.15s ease;
  -webkit-tap-highlight-color: transparent;
  flex-shrink: 0;
}

.nps-btn--detractor { border-color: rgba(244, 67, 54, 0.4); }
.nps-btn--passive   { border-color: rgba(255, 193, 7, 0.4); }
.nps-btn--promoter  { border-color: rgba(76, 175, 80, 0.4); }

.nps-btn--detractor:hover { background: rgba(244, 67, 54, 0.3); }
.nps-btn--passive:hover   { background: rgba(255, 193, 7, 0.3); }
.nps-btn--promoter:hover  { background: rgba(76, 175, 80, 0.3); }

.nps-btn:active { transform: scale(0.93); }

.nps-labels {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-size: 13px;
  color: #6B6B6B;
  padding: 0 4px;
}

@media (max-width: 380px) {
  .nps-btn { width: 44px; height: 44px; font-size: 15px; }
  .nps-row { gap: 4px; }
}

/* ========================================
   EMOJI 5 SELECTOR
   ======================================== */

.emoji5-row {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.emoji5-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  width: 72px;
  height: 72px;
  font-size: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  line-height: 1;
}

.emoji5-btn:hover {
  transform: scale(1.2);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
}

.emoji5-btn:active {
  transform: scale(0.95);
}

/* ========================================
   VOICE NOTE UI
   ======================================== */

@keyframes vnSlideUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes vnPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.25); }
}

@keyframes vnSpin {
  to { transform: rotate(360deg); }
}

@keyframes vnBounceIn {
  0%   { opacity: 0; transform: scale(0.4); }
  60%  { transform: scale(1.15); }
  100% { opacity: 1; transform: scale(1); }
}

.vn-recording-wrapper,
.vn-recorded-wrapper,
.vn-uploading-wrapper,
.vn-done-wrapper,
.vn-error-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 8px 0;
  animation: vnSlideUp 0.25s ease;
}

.vn-pulse-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #e53935;
  animation: vnPulse 1.2s ease-in-out infinite;
}

.vn-recording-label {
  color: #e53935;
  font-weight: 600;
  font-size: 0.95rem;
}

.vn-timer {
  font-size: 1.5rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: rgba(255, 255, 255, 0.9);
}

.vn-progress-bar-track {
  width: 200px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.15);
  overflow: hidden;
}

.vn-progress-bar-fill {
  height: 100%;
  border-radius: 2px;
  background: #e53935;
  transition: width 1s linear;
}

.vn-stop-btn {
  padding: 12px 32px;
  border-radius: 50px;
  border: none;
  background: #e53935;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}
.vn-stop-btn:hover { background: #c62828; }
.vn-stop-btn:active { transform: scale(0.97); }

.vn-recorded-label {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.vn-action-row {
  display: flex;
  gap: 12px;
}

.vn-rerecord-btn {
  padding: 12px 24px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.vn-rerecord-btn:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.06);
}

.vn-submit-btn {
  padding: 12px 24px;
  border-radius: 50px;
  border: none;
  background: #43a047;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}
.vn-submit-btn:hover { background: #2e7d32; }
.vn-submit-btn:active { transform: scale(0.97); }

.vn-delete-btn {
  border-color: rgba(239, 68, 68, 0.4) !important;
  color: #ef4444 !important;
}
.vn-delete-btn:hover {
  background: rgba(239, 68, 68, 0.12) !important;
  border-color: #ef4444 !important;
}

.vn-uploading-spinner {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.15);
  border-top-color: #fff;
  animation: vnSpin 0.8s linear infinite;
}

.vn-done-checkmark {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #43a047;
  color: #fff;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: vnBounceIn 0.4s ease;
}

.vn-done-label {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.vn-transcription-text {
  margin: 0;
  padding: 10px 14px;
  border-left: 3px solid #43a047;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  max-width: 280px;
  text-align: left;
  line-height: 1.5;
}

.vn-error-text {
  color: #e57373;
  font-weight: 600;
}

.vn-error-subtext {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  text-align: center;
  max-width: 260px;
}

.vn-dismiss-btn {
  padding: 10px 24px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  cursor: pointer;
  transition: border-color 0.2s ease;
}
.vn-dismiss-btn:hover { border-color: rgba(255, 255, 255, 0.5); }

/* Transcription review / edit screen */
.vn-confirm-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  animation: vnSlideUp 0.25s ease;
  width: 100%;
}

.vn-confirm-label {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 0.95rem;
}

.vn-confirm-hint {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
}

.vn-textarea {
  width: 100%;
  max-width: 300px;
  min-height: 90px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  line-height: 1.5;
  resize: vertical;
  outline: none;
  font-family: inherit;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}
.vn-textarea:focus { border-color: rgba(255, 255, 255, 0.45); }
.vn-textarea::placeholder { color: rgba(255, 255, 255, 0.3); }

/* Deletion confirmation popup */
@keyframes vnPopupIn {
  from { opacity: 0; transform: translateY(20px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes vnPopupOut {
  to { opacity: 0; transform: translateY(10px) scale(0.97); }
}

.vn-popup-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 48px;
  z-index: 9999;
  pointer-events: none;
}

.vn-popup-fade-out .vn-popup-card {
  animation: vnPopupOut 0.3s ease forwards;
}

.vn-popup-card {
  pointer-events: all;
  background: rgba(30, 30, 30, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-width: 240px;
  max-width: 300px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  animation: vnPopupIn 0.3s ease;
}

.vn-popup-icon {
  font-size: 2rem;
  line-height: 1;
}

.vn-popup-message {
  margin: 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  line-height: 1.5;
}

.vn-popup-close {
  margin-top: 4px;
  padding: 8px 28px;
  border-radius: 50px;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}
.vn-popup-close:hover { background: rgba(255, 255, 255, 0.2); }

/* ================================================
   REVIEW BOOSTER PANEL
   ================================================ */

.review-booster-panel {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.review-booster-panel.visible {
  transform: translateY(0);
}

.booster-content {
  background: linear-gradient(180deg, #1E2A4A 0%, #16213E 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: none;
  border-radius: 20px 20px 0 0;
  padding: 28px 24px 36px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.5);
}

.booster-header {
  text-align: center;
  margin-bottom: 20px;
}

.booster-icon {
  font-size: 36px;
  display: block;
  margin-bottom: 8px;
}

.booster-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.booster-subtext {
  font-size: 14px;
  color: #B0B0B0;
  line-height: 1.5;
}

.booster-platforms {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.booster-platform-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.booster-platform-btn:active {
  background: rgba(255, 255, 255, 0.14);
}

.booster-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 24px 0;
  margin-bottom: 16px;
}

.booster-spinner {
  width: 32px;
  height: 32px;
  border: 3px solid rgba(76, 175, 80, 0.2);
  border-top-color: #4CAF50;
  border-radius: 50%;
  animation: spin-booster 0.8s linear infinite;
}

@keyframes spin-booster {
  to { transform: rotate(360deg); }
}

.booster-loading p {
  color: #B0B0B0;
  font-size: 14px;
}

.booster-draft {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.draft-label {
  font-size: 13px;
  color: #B0B0B0;
}

.review-draft-textarea {
  width: 100%;
  padding: 12px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  resize: vertical;
  font-family: inherit;
  min-height: 96px;
}

.review-draft-textarea:focus {
  outline: none;
  border-color: rgba(76, 175, 80, 0.5);
}

.booster-btn-primary {
  width: 100%;
  padding: 14px;
  background: #4CAF50;
  border: none;
  border-radius: 12px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.booster-btn-primary:active {
  background: #45a049;
}

.booster-btn-secondary {
  width: 100%;
  padding: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: #B0B0B0;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s;
}

.booster-btn-secondary:active {
  background: rgba(255, 255, 255, 0.12);
}

.booster-dismiss {
  display: block;
  width: 100%;
  padding: 10px;
  background: none;
  border: none;
  color: #6B6B6B;
  font-size: 13px;
  cursor: pointer;
  text-align: center;
  margin-top: 4px;
}

.booster-dismiss:active {
  color: #B0B0B0;
}