/* ====== BASE STYLES ====== */
body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  background: #0b0c10;
  color: white;
}

/* ====== POPUP NOTIFICATION ====== */
.notification {
  position: fixed;
  top: 25px;
  left: 20px;
  background: rgba(0, 0, 0, 0.95);
  color: #fff;
  border-left: 4px solid #ff8800; /* changed to match your website color */
  padding: 16px 20px; /* slightly bigger */
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.7);
  font-size: 14px; /* slightly bigger font */
  letter-spacing: 0.3px;
  opacity: 0;
  pointer-events: none;
  z-index: 99999;
  min-width: 280px; /* bigger width */
  max-width: 400px;

  /* Start off-screen for slide effect */
  transform: translateX(-120%);
  transition: all 0.6s ease;
}

/* When shown */
.notification.show {
  opacity: 1;
  transform: translateX(0);
  pointer-events: all;
}

/* Fade-out smoothly */
.notification.hide {
  opacity: 0;
  transform: translateX(-120%);
}

/* Accent styles */
.currency {
  color: #ff8800; /* matching website theme */
  font-weight: 700;
  font-size: 1em;
}

.coin {
  font-weight: 600;
  color: #ff8800;
}

.flag {
  margin-left: 6px;
  font-size: 16px;
}
