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

body {
  overflow: hidden;
  background: #000;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #fff;
}

#game-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: block;
}

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

#ui-overlay * {
  pointer-events: auto;
}

.hidden {
  display: none !important;
}

/* Loading Screen */
#loading-screen {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at center, #0a0a2e 0%, #000 70%);
  z-index: 100;
}

#loading-screen h1 {
  font-size: 4rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #00d4ff, #7b2ffc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

#loading-screen p {
  font-size: 1.2rem;
  color: #88aacc;
  margin-bottom: 2rem;
}

#loading-bar {
  width: 300px;
  height: 8px;
  background: #1a1a3e;
  border-radius: 4px;
  overflow: hidden;
}

#loading-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #00d4ff, #7b2ffc);
  border-radius: 4px;
  transition: width 0.3s;
}

/* HUD */
#hud {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  pointer-events: none;
}

#hud-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#health-bar {
  display: flex;
  gap: 6px;
}

.health-icon {
  width: 28px;
  height: 28px;
  background: #ff4444;
  clip-path: polygon(50% 0%, 0% 40%, 20% 100%, 50% 80%, 80% 100%, 100% 40%);
  transition: opacity 0.3s;
}

.health-icon.lost {
  opacity: 0.2;
}

#score-display {
  font-size: 1.1rem;
  color: #ffdd44;
  text-shadow: 0 0 10px rgba(255, 221, 68, 0.5);
}

#speed-display {
  font-size: 0.9rem;
  color: #88ccff;
}

#hud-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

#minimap-container {
  width: 180px;
  height: 180px;
  border: 2px solid rgba(0, 212, 255, 0.4);
  border-radius: 50%;
  overflow: hidden;
  background: rgba(0, 0, 20, 0.6);
}

#minimap-canvas {
  width: 100%;
  height: 100%;
}

#planet-indicator {
  font-size: 0.9rem;
  color: #aaccee;
  text-align: right;
}

/* Prompt Overlay */
#prompt-overlay {
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.prompt-text {
  font-size: 1.6rem;
  padding: 15px 30px;
  background: rgba(0, 0, 30, 0.8);
  border: 2px solid rgba(0, 212, 255, 0.6);
  border-radius: 12px;
  animation: prompt-pulse 2s ease-in-out infinite;
}

@keyframes prompt-pulse {
  0%, 100% { border-color: rgba(0, 212, 255, 0.6); box-shadow: 0 0 15px rgba(0, 212, 255, 0.2); }
  50% { border-color: rgba(0, 212, 255, 1); box-shadow: 0 0 30px rgba(0, 212, 255, 0.5); }
}

/* Launch Button */
.launch-prompt {
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}

/* Countdown */
#countdown {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 8rem;
  font-weight: bold;
  color: #ff6600;
  text-shadow: 0 0 40px rgba(255, 102, 0, 0.8);
  z-index: 20;
}

/* Speech Bubbles */
#speech-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.speech-bubble {
  position: absolute;
  max-width: 320px;
  padding: 15px 20px;
  background: rgba(10, 10, 50, 0.92);
  border: 2px solid #00d4ff;
  border-radius: 16px;
  font-size: 1rem;
  line-height: 1.5;
  color: #eef;
  transform: translate(-50%, -100%);
  pointer-events: auto;
  animation: bubble-in 0.3s ease-out;
}

.speech-bubble::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid #00d4ff;
}

.speech-bubble .npc-name {
  font-weight: bold;
  color: #00d4ff;
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.speech-bubble .close-btn {
  position: absolute;
  top: 5px;
  right: 10px;
  cursor: pointer;
  color: #88aacc;
  font-size: 1.2rem;
}

@keyframes bubble-in {
  from { opacity: 0; transform: translate(-50%, -90%) scale(0.8); }
  to { opacity: 1; transform: translate(-50%, -100%) scale(1); }
}

/* Fact Panel */
#fact-panel {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 500px;
  width: 90%;
  padding: 30px;
  background: rgba(5, 5, 40, 0.95);
  border: 2px solid #7b2ffc;
  border-radius: 20px;
  text-align: center;
  z-index: 50;
  animation: panel-in 0.4s ease-out;
}

#fact-panel h2 {
  color: #ffdd44;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

#fact-panel p {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #dde;
}

#fact-panel .close-fact {
  margin-top: 20px;
  padding: 10px 30px;
  background: linear-gradient(135deg, #7b2ffc, #00d4ff);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
}

@keyframes panel-in {
  from { opacity: 0; transform: translate(-50%, -45%) scale(0.9); }
  to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

/* Damage flash */
#damage-flash {
  position: fixed;
  inset: 0;
  background: rgba(255, 0, 0, 0.3);
  pointer-events: none;
  z-index: 5;
  animation: flash-out 0.4s ease-out forwards;
}

@keyframes flash-out {
  from { opacity: 1; }
  to { opacity: 0; }
}

/* Facts collected counter on surface */
#facts-collected {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.2rem;
  color: #ffdd44;
  text-shadow: 0 0 10px rgba(255, 221, 68, 0.5);
  background: rgba(0, 0, 30, 0.7);
  padding: 8px 20px;
  border-radius: 20px;
}

/* Interaction hint */
.interact-hint {
  font-size: 1rem;
  color: #88ffaa;
}

/* Warp indicator */
#warp-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1rem;
  color: #ff88ff;
  text-shadow: 0 0 15px rgba(255, 136, 255, 0.6);
}

/* ===== Hero Page ===== */
#hero-page {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(to bottom, #020420, #1a0a3e, #000);
  overflow: hidden;
}

#hero-page.hero-exit {
  animation: hero-fade-out 0.6s ease-in forwards;
}

@keyframes hero-fade-out {
  to { opacity: 0; transform: scale(1.05); }
}

/* Nebula background */
.hero-nebula {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  pointer-events: none;
}

.hero-nebula-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Twinkling stars */
.twinkle-star {
  position: absolute;
  animation: twinkle 3s ease-in-out infinite;
}

.twinkle-star[data-delay="0"]   { animation-delay: 0s; }
.twinkle-star[data-delay="0.5"] { animation-delay: 0.5s; }
.twinkle-star[data-delay="0.8"] { animation-delay: 0.8s; }
.twinkle-star[data-delay="1"]   { animation-delay: 1s; }
.twinkle-star[data-delay="1.5"] { animation-delay: 1.5s; }
.twinkle-star[data-delay="1.8"] { animation-delay: 1.8s; }
.twinkle-star[data-delay="2"]   { animation-delay: 2s; }
.twinkle-star[data-delay="2.3"] { animation-delay: 2.3s; }

@keyframes twinkle {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.5); }
}

/* Floating planets */
.floating-planet {
  position: absolute;
  border-radius: 50%;
  animation: float-planet 4s ease-in-out infinite;
}

.floating-planet[data-delay="0"]   { animation-delay: 0s; }
.floating-planet[data-delay="0.7"] { animation-delay: 0.7s; }
.floating-planet[data-delay="1"]   { animation-delay: 1s; }
.floating-planet[data-delay="1.5"] { animation-delay: 1.5s; }
.floating-planet[data-delay="2"]   { animation-delay: 2s; }

.floating-planet[data-duration="4"]   { animation-duration: 4s; }
.floating-planet[data-duration="4.5"] { animation-duration: 4.5s; }
.floating-planet[data-duration="5"]   { animation-duration: 5s; }
.floating-planet[data-duration="5.5"] { animation-duration: 5.5s; }
.floating-planet[data-duration="6"]   { animation-duration: 6s; }

.fp-orange { background: linear-gradient(135deg, #ea580c, #b91c1c); opacity: 0.8; box-shadow: 0 0 30px rgba(251, 146, 60, 0.5); }
.fp-blue   { background: linear-gradient(135deg, #3b82f6, #0891b2); opacity: 0.7; box-shadow: 0 0 20px rgba(59, 130, 246, 0.5); }
.fp-purple { background: linear-gradient(135deg, #9333ea, #db2777); opacity: 0.6; box-shadow: 0 0 40px rgba(168, 85, 247, 0.4); }
.fp-yellow { background: linear-gradient(135deg, #eab308, #d97706); opacity: 0.7; box-shadow: 0 0 25px rgba(234, 179, 8, 0.5); }
.fp-green  { background: linear-gradient(135deg, #10b981, #0d9488); opacity: 0.6; box-shadow: 0 0 20px rgba(16, 185, 129, 0.4); }

@keyframes float-planet {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-20px) rotate(5deg); }
  75% { transform: translateY(-20px) rotate(-5deg); }
}

/* Hero content layout */
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  gap: 48px;
}

@media (min-width: 1024px) {
  .hero-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* Left column */
.hero-left {
  flex: 1;
  text-align: center;
}

@media (min-width: 1024px) {
  .hero-left { text-align: left; }
}

/* Entrance animations */
.hero-fade-in {
  animation: hero-slide-in-left 0.8s ease-out both;
}

@keyframes hero-slide-in-left {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

.hero-scale-in {
  animation: hero-scale-up 0.8s ease-out 0.2s both;
}

@keyframes hero-scale-up {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

/* Sparkle icon */
.hero-sparkle {
  display: inline-block;
  margin-bottom: 16px;
  animation: sparkle-wiggle 2s ease-in-out infinite;
}

@keyframes sparkle-wiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(10deg); }
  75% { transform: rotate(-10deg); }
}

/* Subtitle */
.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: linear-gradient(90deg, #67e8f9, #60a5fa, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .hero-subtitle { font-size: 1.875rem; }
}

/* Title */
.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-title-gradient {
  display: block;
  background: linear-gradient(90deg, #67e8f9, #60a5fa, #818cf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (min-width: 768px) {
  .hero-title { font-size: 3.75rem; }
}

@media (min-width: 1024px) {
  .hero-title { font-size: 4.5rem; }
}

/* Description */
.hero-description {
  font-size: 1.25rem;
  color: #cbd5e1;
  margin-bottom: 32px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .hero-description { font-size: 1.5rem; }
}

@media (min-width: 1024px) {
  .hero-description { margin-left: 0; }
}

/* CTA Button */
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #06b6d4, #2563eb);
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  box-shadow: 0 0 30px rgba(6, 182, 212, 0.5);
  transition: transform 0.15s, box-shadow 0.2s, background 0.3s;
  font-family: inherit;
}

.hero-cta:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #22d3ee, #3b82f6);
  box-shadow: 0 0 40px rgba(6, 182, 212, 0.7);
}

.hero-cta:active {
  transform: scale(0.95);
}

/* Feature highlights */
.hero-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .hero-features { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .hero-features { margin-left: 0; }
}

.hero-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: hero-rise 0.6s ease-out both;
}

@media (min-width: 1024px) {
  .hero-feature { align-items: flex-start; }
}

.hero-feature-delay-1 { animation-delay: 0.3s; }
.hero-feature-delay-2 { animation-delay: 0.4s; }
.hero-feature-delay-3 { animation-delay: 0.5s; }

@keyframes hero-rise {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.feature-icon {
  padding: 12px;
  border-radius: 50%;
  margin-bottom: 8px;
}

.feature-icon-cyan   { background: rgba(6, 182, 212, 0.2); border: 1px solid rgba(34, 211, 238, 0.3); }
.feature-icon-blue   { background: rgba(59, 130, 246, 0.2); border: 1px solid rgba(96, 165, 250, 0.3); }
.feature-icon-purple { background: rgba(168, 85, 247, 0.2); border: 1px solid rgba(192, 132, 252, 0.3); }

.hero-feature h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}

.hero-feature p {
  font-size: 0.875rem;
  color: #94a3b8;
}

/* Testimonials */
.hero-testimonials {
  margin-top: 64px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1024px) {
  .hero-testimonials { margin-left: 0; text-align: left; }
}

.testimonials-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #94a3b8;
  margin-bottom: 24px;
  text-align: center;
}

@media (min-width: 1024px) {
  .testimonials-label { text-align: left; }
}

.testimonial {
  padding: 16px;
  border-radius: 16px;
  margin-bottom: 16px;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(8px);
  transition: transform 0.2s, border-color 0.2s;
}

.testimonial:hover {
  transform: scale(1.02);
}

.testimonial-cyan   { border: 1px solid rgba(6, 182, 212, 0.2); box-shadow: 0 0 15px rgba(6, 182, 212, 0.1); }
.testimonial-cyan:hover { border-color: rgba(6, 182, 212, 0.4); }
.testimonial-blue   { border: 1px solid rgba(59, 130, 246, 0.2); box-shadow: 0 0 15px rgba(59, 130, 246, 0.1); }
.testimonial-blue:hover { border-color: rgba(59, 130, 246, 0.4); }
.testimonial-purple { border: 1px solid rgba(168, 85, 247, 0.2); box-shadow: 0 0 15px rgba(168, 85, 247, 0.1); }
.testimonial-purple:hover { border-color: rgba(168, 85, 247, 0.4); }

.testimonial p {
  font-size: 1.125rem;
  color: #e2e8f0;
  font-style: italic;
}

.hero-slide-delay-1 { animation: hero-slide-in 0.5s ease-out 0.6s both; }
.hero-slide-delay-2 { animation: hero-slide-in 0.5s ease-out 0.7s both; }
.hero-slide-delay-3 { animation: hero-slide-in 0.5s ease-out 0.8s both; }

@keyframes hero-slide-in {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Right column - Saturn */
.hero-right {
  flex: 1;
  position: relative;
  max-width: 500px;
  width: 100%;
}

.hero-saturn-wrapper {
  position: relative;
  animation: saturn-float 6s ease-in-out infinite;
}

@keyframes saturn-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-30px) rotate(2deg); }
  66% { transform: translateY(-30px) rotate(-2deg); }
}

.hero-saturn-img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 0 60px rgba(6, 182, 212, 0.3);
}

.hero-saturn-glow {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: linear-gradient(to top, rgba(6, 182, 212, 0.1), transparent, rgba(168, 85, 247, 0.1));
}

/* Galaxy orbit */
.hero-galaxy-orbit {
  position: absolute;
  bottom: -64px;
  left: -64px;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  overflow: hidden;
  opacity: 0.7;
  box-shadow: 0 0 40px rgba(139, 92, 246, 0.4);
  animation: galaxy-spin 30s linear infinite;
}

.hero-galaxy-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll-bounce 1.5s ease-in-out infinite;
}

.scroll-track {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(34, 211, 238, 0.5);
  border-radius: 9999px;
  display: flex;
  justify-content: center;
}

.scroll-dot {
  width: 6px;
  height: 6px;
  background: #22d3ee;
  border-radius: 50%;
  margin-top: 8px;
  animation: scroll-dot-move 1.5s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

@keyframes scroll-dot-move {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(16px); }
}

/* ===== Support Form ===== */
.hero-support-section {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 500px;
  margin: 64px auto 0;
  padding: 0 24px 48px;
  text-align: center;
}

.hero-support-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.hero-support-desc {
  font-size: 1rem;
  color: #94a3b8;
  margin-bottom: 24px;
}

.hero-support-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.support-input {
  width: 100%;
  padding: 12px 16px;
  font-size: 1rem;
  font-family: inherit;
  color: #e2e8f0;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 10px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.support-input::placeholder {
  color: #64748b;
}

.support-input:focus {
  border-color: rgba(0, 212, 255, 0.7);
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.15);
}

.support-textarea {
  resize: vertical;
  min-height: 100px;
}

.support-submit {
  align-self: center;
  margin-top: 4px;
}

.support-status {
  margin-top: 12px;
  font-size: 0.9rem;
  color: #67e8f9;
  min-height: 1.2em;
}

/* Body scrollable when hero is visible */
body.hero-visible {
  overflow-y: auto;
  overflow-x: hidden;
}

/* ===== Touch Controls ===== */
.touch-controls {
  position: fixed;
  inset: 0;
  z-index: 15;
  pointer-events: none;
}

.touch-joystick-base {
  position: absolute;
  bottom: 40px;
  left: 30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(0, 20, 40, 0.5);
  border: 2px solid rgba(0, 212, 255, 0.4);
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.15);
  pointer-events: auto;
  touch-action: none;
}

.touch-joystick-thumb {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.7), rgba(0, 150, 200, 0.4));
  border: 2px solid rgba(0, 212, 255, 0.8);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.touch-look-area {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  pointer-events: auto;
  touch-action: none;
}

.touch-buttons-container {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100px;
  pointer-events: none;
}

.touch-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(0, 20, 40, 0.6);
  border: 2px solid rgba(0, 212, 255, 0.5);
  color: #aaddff;
  font-size: 0.7rem;
  font-weight: 600;
  font-family: inherit;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  pointer-events: auto;
  touch-action: none;
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.15);
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.touch-button.active {
  background: rgba(0, 212, 255, 0.3);
  border-color: rgba(0, 212, 255, 0.9);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.touch-action-button {
  position: absolute;
  right: 20px;
}

.touch-back-button {
  position: absolute;
  top: 20px;
  left: 20px;
  width: auto;
  height: auto;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 0.8rem;
}
