@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700&family=Exo+2&display=swap');
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Exo 2', sans-serif; background-color: #050510;
  background-image: radial-gradient(circle at 20% 30%, #1a0533, transparent 50%),
                    radial-gradient(circle at 80% 70%, #001a33, transparent 50%);
  min-height: 100vh; display: flex; justify-content: center; align-items: center;
}
#profile-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(200,170,255,0.3);
  border-radius: 20px; padding: 50px 60px; max-width: 520px; width: 90%;
  text-align: center; box-shadow: 0 0 60px rgba(200,170,255,0.1);
}
#explorer-name { font-family: 'Orbitron', sans-serif; font-size: 32px; color: #c8aaff; cursor: pointer; }
.explorer-title { color: #7effd4; font-size: 16px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 30px; }
.explorer-stats { list-style: none; text-align: left; color: #d0d0e8; line-height: 2; margin-bottom: 36px; }
.explorer-stats strong { color: #ffcc66; }
#launch-btn { background: linear-gradient(135deg, #c8aaff, #7effd4); color: #0d0d1a; border: none;
  border-radius: 30px; padding: 14px 36px; font-size: 16px; font-family: 'Orbitron', sans-serif;
  cursor: pointer; transition: transform 0.2s, box-shadow 0.2s; }
#launch-btn:hover { transform: scale(1.05); box-shadow: 0 0 30px rgba(200,170,255,0.5); }
#mission-status { min-height: 24px; font-style: italic; transition: all 0.4s; }
.status-active { color: #7effd4; margin-top: 20px; font-size: 15px; animation: fadeIn 0.5s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }