/* 🚀 Hoshina Intro Tour - Galactic Cyber Theme */

.introjs-overlay {
  background: radial-gradient(circle at center, rgba(10, 10, 25, 0.92), rgba(0, 0, 0, 0.98));
  backdrop-filter: blur(8px) saturate(150%);
}

.introjs-tooltip {
  background: rgba(20, 20, 35, 0.9);
  border-radius: 18px;
  border: 1px solid rgba(130, 120, 255, 0.4);
  box-shadow: 0 0 30px rgba(130, 100, 255, 0.5), inset 0 0 25px rgba(40, 40, 80, 0.3);
  color: #d0d0ff;
  font-family: "JetBrains Mono", "Fira Code", monospace;
  font-size: 15px;
  line-height: 1.8;
  padding: 16px;
  animation: cosmicFade .5s ease;
  backdrop-filter: blur(12px) brightness(1.1);
}

@keyframes cosmicFade {
  from { opacity: 0; transform: scale(0.9) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.introjs-tooltip-title {
  font-size: 18px;
  font-weight: bold;
  color: #9fafff;
  text-shadow: 0 0 8px rgba(150, 120, 255, 0.6);
  margin-bottom: 8px;
}

.introjs-arrow {
  border: 12px solid transparent !important;
  filter: drop-shadow(0 0 6px rgba(150, 120, 255, 0.5));
}

.introjs-button {
  background: linear-gradient(120deg, #6d28d9, #3b82f6);
  color: #fff !important;
  border: none;
  border-radius: 14px;
  padding: 8px 16px;
  margin: 3px;
  font-family: "JetBrains Mono", monospace;
  font-weight: 600;
  letter-spacing: .3px;
  transition: all .3s ease;
  box-shadow: 0 0 15px rgba(100, 80, 255, 0.7);
}

.introjs-button:hover {
  background: linear-gradient(120deg, #3b82f6, #6d28d9);
  box-shadow: 0 0 25px rgba(180, 150, 255, 0.9);
  transform: translateY(-2px) scale(1.05);
}

.introjs-prevbutton {
  background: linear-gradient(120deg, #334155, #475569);
}

.introjs-prevbutton:hover {
  background: linear-gradient(120deg, #475569, #334155);
}

html[dir="rtl"] .introjs-tooltip {
  direction: rtl;
  text-align: right;
}
