:root {
  --bg-primary: #0e0b16;
  --panel-bg: rgba(22, 17, 36, 0.7);
  --panel-bg-solid: #1b142c;
  --panel-border: rgba(255, 182, 211, 0.25);
  --text-main: #fcf8ff;
  --text-muted: #bdaec6;
  
  /* Soft Milky Pastels */
  --accent-pink: #ff9ebb;
  --accent-green: #9eecc8;
  --accent-yellow: #ffe69e;
  --accent-blue: #9edcff;
  --accent-purple: #dfb6ff;
  
  --font-playful: 'Fredoka', system-ui, sans-serif;
  --font-mono: 'Share Tech Mono', monospace, Courier;
  
  --shadow-chunky: 0 8px 0px 0px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 15px rgba(223, 182, 255, 0.2);
  --transition-bouncy: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

body, html {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: var(--bg-primary);
  font-family: var(--font-playful);
  color: var(--text-main);
  user-select: none;
}

/* 3D Canvas Background */
#canvas3d {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  display: block;
}

/* Full UI wrapper */
.ui-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  pointer-events: none; /* Let clicks pass through empty spaces to canvas */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
}

/* Enable pointer events only on interactive elements */
header, .widget-card, footer, .welcome-overlay {
  pointer-events: auto;
}

/* Header styling */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
  background: var(--panel-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 2px solid var(--panel-border);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  margin-bottom: 12px;
  animation: slideDown 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

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

.brand h1 {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: linear-gradient(45deg, var(--accent-pink), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 15px rgba(255, 158, 187, 0.1);
}

.brand .emoji {
  font-size: 1.3rem;
  animation: wobble 3s ease-in-out infinite alternate;
}

.brand .badge {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent-green);
  padding: 2px 6px;
  border-radius: 6px;
  border: 1px solid rgba(158, 236, 200, 0.3);
}

/* Widget Layout System */
.widgets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-bottom: auto;
  align-items: start;
}

/* Card Widget Styles */
.widget-card {
  background: var(--panel-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 2px solid var(--panel-border);
  border-radius: 20px;
  padding: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.15) both;
  transition: border-color 0.3s ease, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.widget-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35), var(--shadow-glow);
}

.widget-card:nth-child(1) { animation-delay: 0.1s; }
.widget-card:nth-child(2) { animation-delay: 0.2s; }
.widget-card:nth-child(3) { animation-delay: 0.3s; }

.widget-header {
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 6px;
}

.widget-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-pink);
  box-shadow: 0 0 8px var(--accent-pink);
}

.gps-dot {
  background-color: var(--accent-blue);
  box-shadow: 0 0 8px var(--accent-blue);
}

.tilt-dot {
  background-color: var(--accent-yellow);
  box-shadow: 0 0 8px var(--accent-yellow);
}

.widget-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.widget-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* User Profile Specifics */
.user-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar-icon {
  font-size: 1.8rem;
  background: rgba(223, 182, 255, 0.15);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: 1.5px dashed var(--accent-purple);
  animation: float 2.5s ease-in-out infinite alternate;
}

.username {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent-pink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 140px;
}

/* Cosmic GPS Specifics */
.mono-text {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: var(--accent-blue);
}

.gps-status {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.gps-color-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
}

.color-swatch {
  width: 24px;
  height: 14px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: var(--accent-blue);
  transition: background-color 0.4s ease;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

/* Gravity Radar (Gyro) Specifics */
.radar-display {
  display: flex;
  align-items: center;
  gap: 12px;
}

.radar-grid {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1.5px dashed rgba(255, 230, 158, 0.3);
  position: relative;
  background: rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.radar-grid::before, .radar-grid::after {
  content: '';
  position: absolute;
  background: rgba(255, 230, 158, 0.15);
}

.radar-grid::before {
  width: 100%;
  height: 1px;
}

.radar-grid::after {
  height: 100%;
  width: 1px;
}

.radar-bubble {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent-yellow);
  box-shadow: 0 0 10px var(--accent-yellow);
  position: absolute;
  left: calc(50% - 7px);
  top: calc(50% - 7px);
  transition: transform 0.15s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.radar-readout {
  color: var(--accent-yellow);
}

.tilt-status {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* Buttons System */
.btn {
  font-family: var(--font-playful);
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  outline: none;
  transition: var(--transition-bouncy);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
}

.btn-pill {
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.8rem;
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.sound-off {
  background: rgba(255, 158, 187, 0.1);
  color: var(--accent-pink);
  border-color: rgba(255, 158, 187, 0.3);
}

.sound-on {
  background: rgba(158, 236, 200, 0.15);
  color: var(--accent-green);
  border-color: rgba(158, 236, 200, 0.4);
  box-shadow: 0 0 12px rgba(158, 236, 200, 0.2);
}

.btn-sm {
  padding: 6px 12px;
  font-size: 0.75rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent-purple);
  border: 1.5px solid rgba(223, 182, 255, 0.2);
}

.btn-sm:hover {
  background: rgba(223, 182, 255, 0.15);
  transform: translateY(-2px);
}

.btn-sm:active {
  transform: translateY(1px);
}

.btn-action {
  flex: 1;
  background: linear-gradient(135deg, var(--accent-pink), var(--accent-purple));
  color: var(--bg-primary);
  padding: 12px 20px;
  border-radius: 16px;
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: var(--shadow-chunky);
}

.btn-action:hover {
  transform: translateY(-3px) scale(1.02);
  filter: brightness(1.05);
}

.btn-action:active {
  transform: translateY(2px);
  box-shadow: 0 3px 0px 0px rgba(0,0,0,0.3);
}

.btn-danger {
  background: rgba(255, 255, 255, 0.08);
  color: #ff8fa3;
  padding: 12px 18px;
  border-radius: 16px;
  font-size: 0.9rem;
  border: 2px solid rgba(255, 143, 163, 0.2);
}

.btn-danger:hover {
  background: rgba(255, 143, 163, 0.12);
  transform: translateY(-2px);
}

.btn-danger:active {
  transform: translateY(1px);
}

/* Control Deck / Bottom Panel */
.control-deck {
  margin-top: 12px;
  background: var(--panel-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 2px solid var(--panel-border);
  border-radius: 24px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.1) both;
  animation-delay: 0.2s;
}

.deck-row {
  display: flex;
  gap: 16px;
}

.actions-row {
  align-items: stretch;
}

.control-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.control-group label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

/* Custom Sliders */
input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  background: transparent;
}

input[type=range]:focus {
  outline: none;
}

input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 8px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

input[type=range]::-webkit-slider-thumb {
  height: 18px;
  width: 18px;
  border-radius: 50%;
  background: var(--accent-pink);
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -5px;
  box-shadow: 0 0 10px rgba(255, 158, 187, 0.4);
  transition: transform 0.1s ease;
}

input[type=range]:active::-webkit-slider-thumb {
  transform: scale(1.3);
  background: var(--accent-purple);
}

/* Welcome Onboarding Overlay */
.welcome-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(14, 11, 22, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.welcome-overlay.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.welcome-box {
  background: var(--panel-bg-solid);
  border: 3px solid var(--panel-border);
  border-radius: 32px;
  padding: 32px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(223, 182, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  animation: popIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.2) both;
}

.welcome-emoji {
  font-size: 3.5rem;
  animation: float 2s ease-in-out infinite alternate;
}

.welcome-box h2 {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(45deg, var(--accent-pink), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.welcome-box p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.tap-prompt {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--accent-yellow);
  font-weight: 600;
  margin-top: 10px;
  animation: blink 1.2s ease-in-out infinite;
}

.btn-start-game {
  background: linear-gradient(135deg, var(--accent-green), var(--accent-blue));
  color: var(--bg-primary);
  width: 100%;
  padding: 16px 24px;
  border-radius: 20px;
  font-size: 1.05rem;
  font-weight: 700;
  box-shadow: var(--shadow-chunky);
  margin-top: 10px;
}

.btn-start-game:hover {
  transform: translateY(-3px) scale(1.02);
  filter: brightness(1.08);
}

.btn-start-game:active {
  transform: translateY(2px);
  box-shadow: 0 3px 0px 0px rgba(0,0,0,0.3);
}

/* Animations */
@keyframes wobble {
  0% { transform: rotate(-8deg) scale(0.95); }
  100% { transform: rotate(8deg) scale(1.05); }
}

@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(-8px) rotate(3deg); }
}

@keyframes blink {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

@keyframes popIn {
  0% { transform: scale(0.85); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

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

@keyframes slideUp {
  0% { transform: translateY(40px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* Top Bar Actions Container */
.top-bar-actions {
  display: flex;
  gap: 8px;
}

.btn-hide {
  background: rgba(223, 182, 255, 0.1);
  color: var(--accent-purple);
  border-color: rgba(223, 182, 255, 0.3);
}

.btn-hide:hover {
  background: rgba(223, 182, 255, 0.18);
  transform: translateY(-2px);
}

/* Floating Show UI button */
.btn-show-ui {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 101; /* Above standard elements, below welcome-overlay if active */
  background: var(--panel-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 2px solid var(--panel-border);
  color: var(--accent-pink);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  pointer-events: none;
  opacity: 0;
  transform: scale(0.8) translateY(-20px);
  transition: opacity 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.2), transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.2), background-color 0.3s ease;
}

.btn-show-ui:hover {
  background: rgba(255, 158, 187, 0.15);
  transform: scale(1.05);
}

.btn-show-ui:active {
  transform: scale(0.95);
}

/* UI Transitions for Hide/Show states */
.top-bar, .widgets-grid, .control-deck {
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.1), opacity 0.5s ease;
}

/* Hidden state overrides */
.ui-container.ui-hidden .top-bar {
  transform: translateY(-150%);
  opacity: 0;
  pointer-events: none;
}

.ui-container.ui-hidden .widgets-grid {
  transform: scale(0.9) translateY(-30px);
  opacity: 0;
  pointer-events: none;
}

.ui-container.ui-hidden .control-deck {
  transform: translateY(150%);
  opacity: 0;
  pointer-events: none;
}

.ui-container.ui-hidden .btn-show-ui {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}

/* Responsive Overrides */
@media (max-width: 600px) {
  .ui-container {
    padding: 10px;
  }

  .top-bar-actions {
    gap: 6px;
  }
  
  .top-bar .btn-pill {
    padding: 8px 12px;
  }
  
  .top-bar .btn-text {
    display: none; /* Hide 'SOUND: ON/OFF' and 'HIDE UI' text labels to keep it compact */
  }

  .btn-show-ui {
    top: 10px;
    right: 10px;
    padding: 10px;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .btn-show-ui .btn-text {
    display: none; /* Only show the flower icon on mobile */
  }
  
  .widgets-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .top-bar {
    padding: 8px 12px;
    border-radius: 14px;
  }
  
  .brand h1 {
    font-size: 0.95rem;
  }
  
  .widget-card {
    padding: 10px;
    border-radius: 14px;
  }
  
  .control-deck {
    border-radius: 18px;
    padding: 12px;
    gap: 10px;
  }
  
  .deck-row {
    gap: 10px;
  }
  
  .btn-action, .btn-danger {
    padding: 10px 12px;
    font-size: 0.85rem;
    border-radius: 12px;
  }
}

/* ==========================================
   9. QUICK-SPAWN EMOJI TRAY & DEPLOY SYSTEM
   ========================================== */

/* Quick-Spawn Emoji Tray */
.emoji-tray-container {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: rgba(255, 255, 255, 0.04);
  padding: 10px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.tray-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent-purple);
  letter-spacing: 0.05em;
}

.emoji-tray {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 2px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.15) transparent;
}

.emoji-tray::-webkit-scrollbar {
  height: 4px;
}

.emoji-tray::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
}

.btn-emoji {
  font-size: 1.4rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-bouncy);
  flex-shrink: 0;
}

.btn-emoji:hover {
  transform: scale(1.2) translateY(-2px);
  background: rgba(223, 182, 255, 0.2);
  border-color: var(--accent-purple);
  box-shadow: 0 0 10px rgba(223, 182, 255, 0.3);
}

.btn-emoji:active {
  transform: scale(0.9);
}

/* Deploy Button Custom Style */
.btn-deploy {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple)) !important;
  color: var(--bg-primary) !important;
  box-shadow: var(--shadow-chunky);
}

.btn-deploy:hover {
  filter: brightness(1.08);
}

/* Deploy Modal & Cloud Terminal Overlay */
.deploy-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 8, 18, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 150;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.deploy-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.deploy-box {
  background: var(--panel-bg-solid);
  border: 2.5px solid var(--panel-border);
  border-radius: 24px;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(255, 158, 187, 0.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.15) both;
  pointer-events: auto;
}

.deploy-header {
  background: rgba(255, 255, 255, 0.03);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 2px solid var(--panel-border);
  position: relative;
}

.deploy-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.deploy-dot.red { background: #ff5f56; }
.deploy-dot.yellow { background: #ffbd2e; }
.deploy-dot.green { background: #27c93f; }

.deploy-title {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-pink);
  margin-left: 4px;
  letter-spacing: 0.05em;
}

.btn-close-deploy {
  position: absolute;
  right: 14px;
  top: calc(50% - 13px);
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.2s ease;
  line-height: 1;
}

.btn-close-deploy:hover {
  color: var(--accent-pink);
}

.deploy-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-height: 480px;
  overflow-y: auto;
}

.deploy-status-badge {
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  background: rgba(158, 236, 200, 0.15);
  color: var(--accent-green);
  padding: 4px 10px;
  border-radius: 6px;
  border: 1.5px solid rgba(158, 236, 200, 0.3);
  letter-spacing: 0.05em;
}

.deploy-log {
  background: rgba(0, 0, 0, 0.35);
  border: 1.5px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 14px;
  font-size: 0.8rem;
  line-height: 1.5;
  height: 160px;
  overflow-y: auto;
  color: var(--accent-blue);
  scrollbar-width: thin;
  font-family: var(--font-mono);
}

.deploy-success-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
  animation: popIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1) both;
}

.success-emoji {
  font-size: 2.8rem;
  animation: wobble 2s ease-in-out infinite alternate;
}

.deploy-success-area h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent-green);
  letter-spacing: 0.05em;
}

.deploy-success-area p {
  font-size: 0.82rem;
  color: var(--text-muted);
  max-width: 380px;
}

.share-box {
  width: 100%;
  display: flex;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  padding: 6px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.share-box input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--accent-pink);
  padding: 4px 8px;
}

.share-note {
  font-size: 0.7rem !important;
  color: var(--accent-purple) !important;
  font-style: italic;
}

