/* VulNova Tutorial Wizard Styles */

/* Overlay for tutorial - blur effect */
.tutorial-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.tutorial-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Spotlight effect for highlighted elements - with border */
.tutorial-spotlight {
  position: relative;
  z-index: 9999 !important;
  box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.6);
  border-radius: 8px;
  border: 3px solid #7c3aed !important;
  animation: tutorial-pulse 2s infinite;
  background: white !important;
  /* Ensure element is not affected by parent blur */
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* Special handling for chatbot button spotlight */
#chatbot-toggle.tutorial-spotlight {
  z-index: 10001 !important;
}

/* Special handling for assets table - limit height to show heading + header + first row */
.bg-white.rounded-xl.shadow.overflow-hidden.tutorial-spotlight {
  max-height: 200px !important;
  overflow: hidden !important;
}

/* Special handling for vulnerabilities table - limit height to show heading + header + few rows */
#vulnerabilities-table.tutorial-spotlight {
  max-height: 250px !important;
  overflow: hidden !important;
}

/* Ensure chatbot container is above overlay and not blurred */
.chatbot-container {
  z-index: 9997 !important;
}

/* When chatbot is being highlighted, bring it above the overlay */
.tutorial-overlay.active ~ .chatbot-container,
.tutorial-overlay.active + * .chatbot-container,
body:has(.tutorial-spotlight#chatbot-toggle) .chatbot-container {
  z-index: 10000 !important;
}

/* Ensure sidebar is above the overlay and not blurred during tutorial */
#sidebar {
  z-index: 9999 !important;
}

/* Sidebar links spotlight - ensure they're visible and not blurred */
#sidebar .tutorial-spotlight,
#sidebar a.tutorial-spotlight,
.sidebar-link.tutorial-spotlight {
  z-index: 10001 !important;
  position: relative !important;
  background: #4f46e5 !important;
  color: white !important;
  border-radius: 8px !important;
  padding: 8px 12px !important;
}

@keyframes tutorial-pulse {
  0%, 100% {
    box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.6), 0 0 0 6px rgba(79, 70, 229, 0.6), 0 0 30px rgba(79, 70, 229, 0.5);
    border-color: #7c3aed !important;
  }
  50% {
    box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.6), 0 0 0 10px rgba(79, 70, 229, 0.3), 0 0 40px rgba(79, 70, 229, 0.4);
    border-color: #4f46e5 !important;
  }
}

/* Tutorial tooltip */
.tutorial-tooltip {
  position: fixed;
  background: white;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  padding: 24px;
  max-width: 400px;
  min-width: 320px;
  z-index: 10000;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.tutorial-tooltip.active {
  opacity: 1;
  transform: translateY(0);
}

/* Tooltip arrow */
.tutorial-tooltip::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background: white;
  transform: rotate(45deg);
}

.tutorial-tooltip.arrow-top::before {
  top: -8px;
  left: 50%;
  margin-left: -8px;
}

.tutorial-tooltip.arrow-bottom::before {
  bottom: -8px;
  left: 50%;
  margin-left: -8px;
}

.tutorial-tooltip.arrow-left::before {
  left: -8px;
  top: 50%;
  margin-top: -8px;
}

.tutorial-tooltip.arrow-right::before {
  right: -8px;
  top: 50%;
  margin-top: -8px;
}

/* Tooltip header */
.tutorial-header {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.tutorial-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  flex-shrink: 0;
}

.tutorial-icon svg {
  width: 24px;
  height: 24px;
  color: white;
}

.tutorial-title {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
}

.tutorial-subtitle {
  font-size: 12px;
  color: #6b7280;
  margin-top: 2px;
}

/* Tooltip content */
.tutorial-content {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 20px;
}

.tutorial-content ul {
  margin: 12px 0;
  padding-left: 20px;
}

.tutorial-content li {
  margin-bottom: 8px;
}

.tutorial-content strong {
  color: #1f2937;
}

/* Progress bar */
.tutorial-progress {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.tutorial-progress-bar {
  flex: 1;
  height: 4px;
  background: #e5e7eb;
  border-radius: 2px;
  overflow: hidden;
  margin-right: 12px;
}

.tutorial-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #4f46e5, #7c3aed);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.tutorial-progress-text {
  font-size: 12px;
  color: #6b7280;
  white-space: nowrap;
}

/* Tooltip buttons */
.tutorial-buttons {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.tutorial-btn {
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.tutorial-btn-skip {
  background: transparent;
  color: #6b7280;
}

.tutorial-btn-skip:hover {
  color: #374151;
  background: #f3f4f6;
}

.tutorial-btn-prev {
  background: #f3f4f6;
  color: #374151;
}

.tutorial-btn-prev:hover {
  background: #e5e7eb;
}

.tutorial-btn-next {
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: white;
}

.tutorial-btn-next:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.4);
}

.tutorial-btn-finish {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
}

.tutorial-btn-finish:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

/* Welcome modal */
.tutorial-welcome-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: white;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  padding: 40px;
  max-width: 500px;
  width: 90%;
  z-index: 10000;
  opacity: 0;
  transition: all 0.3s ease;
}

.tutorial-welcome-modal.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.tutorial-welcome-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.tutorial-welcome-icon svg {
  width: 40px;
  height: 40px;
  color: white;
}

.tutorial-welcome-title {
  font-size: 28px;
  font-weight: 800;
  color: #1f2937;
  text-align: center;
  margin-bottom: 12px;
}

.tutorial-welcome-text {
  font-size: 16px;
  color: #6b7280;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 32px;
}

.tutorial-welcome-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.tutorial-welcome-feature {
  display: flex;
  align-items: center;
  padding: 12px;
  background: #f9fafb;
  border-radius: 10px;
}

.tutorial-welcome-feature-icon {
  width: 36px;
  height: 36px;
  background: #e0e7ff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  flex-shrink: 0;
}

.tutorial-welcome-feature-icon svg {
  width: 18px;
  height: 18px;
  color: #4f46e5;
}

.tutorial-welcome-feature-text {
  font-size: 13px;
  font-weight: 600;
  color: #374151;
}

.tutorial-welcome-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.tutorial-welcome-btn {
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.tutorial-welcome-btn-skip {
  background: #f3f4f6;
  color: #6b7280;
}

.tutorial-welcome-btn-skip:hover {
  background: #e5e7eb;
  color: #374151;
}

.tutorial-welcome-btn-start {
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: white;
}

.tutorial-welcome-btn-start:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(79, 70, 229, 0.4);
}

.tutorial-welcome-btn-demo {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
}

.tutorial-welcome-btn-demo:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}

/* Click hint text in tutorial */
.tutorial-click-hint {
  margin-top: 12px;
  padding: 10px 14px;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border-left: 4px solid #f59e0b;
  border-radius: 6px;
  color: #92400e;
  font-size: 13px;
}

/* Help button (floating) - positioned above chatbot */
.tutorial-help-btn {
  position: fixed;
  bottom: 100px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(79, 70, 229, 0.4);
  z-index: 8999;
  transition: all 0.3s ease;
  border: none;
}

.tutorial-help-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(79, 70, 229, 0.5);
}

.tutorial-help-btn svg {
  width: 24px;
  height: 24px;
  color: white;
}

.tutorial-help-btn-tooltip {
  position: absolute;
  right: 70px;
  background: #1f2937;
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.2s ease;
  pointer-events: none;
}

.tutorial-help-btn:hover .tutorial-help-btn-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Completion celebration */
.tutorial-complete-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: white;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  padding: 48px;
  max-width: 450px;
  width: 90%;
  z-index: 10000;
  opacity: 0;
  transition: all 0.3s ease;
  text-align: center;
}

.tutorial-complete-modal.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.tutorial-complete-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #10b981, #059669);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  animation: tutorial-celebrate 0.5s ease;
}

@keyframes tutorial-celebrate {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.tutorial-complete-icon svg {
  width: 48px;
  height: 48px;
  color: white;
}

.tutorial-complete-title {
  font-size: 28px;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 12px;
}

.tutorial-complete-text {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 32px;
}

.tutorial-complete-btn {
  padding: 14px 40px;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tutorial-complete-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(79, 70, 229, 0.4);
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .tutorial-tooltip {
    max-width: calc(100vw - 32px);
    min-width: auto;
    left: 16px !important;
    right: 16px !important;
  }

  .tutorial-welcome-features {
    grid-template-columns: 1fr;
  }

  .tutorial-welcome-modal,
  .tutorial-complete-modal {
    padding: 24px;
    width: 95%;
  }

  .tutorial-help-btn {
    bottom: 90px;
    right: 16px;
    width: 42px;
    height: 42px;
  }

  .tutorial-nav-popup {
    right: 70px;
    bottom: 90px;
  }
}

/* Navigation popup - appears when user navigates to new page */
.tutorial-nav-popup {
  position: fixed;
  bottom: 160px;
  right: 24px;
  z-index: 9000;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.tutorial-nav-popup.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.tutorial-nav-popup-content {
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 320px;
  border: 1px solid #e5e7eb;
}

.tutorial-nav-popup-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tutorial-nav-popup-icon svg {
  width: 20px;
  height: 20px;
  color: white;
}

.tutorial-nav-popup-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tutorial-nav-popup-text strong {
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
}

.tutorial-nav-popup-text span {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.4;
}

.tutorial-nav-popup-highlight {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: white;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  margin: 0 2px;
}

.tutorial-nav-popup-close {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  background: #f3f4f6;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tutorial-nav-popup-close:hover {
  background: #e5e7eb;
}

.tutorial-nav-popup-close svg {
  width: 14px;
  height: 14px;
  color: #6b7280;
}

.tutorial-nav-popup-arrow {
  position: absolute;
  bottom: -8px;
  right: 30px;
  width: 16px;
  height: 16px;
  background: white;
  border-right: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  transform: rotate(45deg);
}

/* Need Help? Popup Styles */
.need-help-popup {
  position: fixed;
  bottom: 170px;
  right: 24px;
  z-index: 9001;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: all 0.3s ease;
}

.need-help-popup.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.need-help-content {
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
  padding: 20px;
  width: 280px;
  position: relative;
}

.need-help-content::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: 28px;
  width: 16px;
  height: 16px;
  background: white;
  border-right: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transform: rotate(45deg);
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.05);
}

.need-help-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  background: #f3f4f6;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.need-help-close:hover {
  background: #e5e7eb;
}

.need-help-close svg {
  color: #6b7280;
}

.need-help-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.need-help-icon svg {
  color: white;
}

.need-help-title {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 8px 0;
}

.need-help-text {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
  margin: 0 0 20px 0;
}

.need-help-actions {
  display: flex;
  gap: 10px;
}

.need-help-btn-primary {
  flex: 1;
  padding: 10px 16px;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.need-help-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.4);
}

.need-help-btn-secondary {
  flex: 1;
  padding: 10px 16px;
  background: #f3f4f6;
  color: #6b7280;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.need-help-btn-secondary:hover {
  background: #e5e7eb;
  color: #374151;
}

/* Responsive adjustments for Need Help popup */
@media (max-width: 640px) {
  .need-help-popup {
    bottom: 150px;
    right: 16px;
  }

  .need-help-content {
    width: 260px;
    padding: 16px;
  }
}

/* Pointing arrow for chatbot steps */
.tutorial-pointing-arrow {
  animation: tutorial-arrow-bounce 1s ease-in-out infinite;
}

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

.tutorial-pointing-arrow svg path {
  stroke: #7c3aed;
  filter: drop-shadow(0 2px 4px rgba(124, 58, 237, 0.4));
}

/* Ensure table rows are clickable during tutorial */
.tutorial-spotlight tr {
  cursor: pointer !important;
}

/* Fix for center-positioned wizard - no blur on background */
.tutorial-tooltip.active {
  background: white;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* Ensure chatbot stays visible and unblurred during tutorial */
#chatbot-toggle.tutorial-spotlight,
.chatbot-container.tutorial-spotlight {
  z-index: 10001 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* Security tools grid should be visible without blur */
#securityToolsGrid.tutorial-spotlight,
#security.tutorial-spotlight {
  z-index: 10001 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  background: white !important;
}

/* No blur overlay state */
.tutorial-overlay.no-blur {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* Ensure spotlight element content is always readable */
.tutorial-spotlight * {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* Welcome Modal Styles */
.welcome-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 10005;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.welcome-modal-overlay.active {
  opacity: 1;
}

.welcome-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: linear-gradient(135deg, #ffffff 0%, #f8f7ff 100%);
  border-radius: 24px;
  padding: 48px 56px;
  z-index: 10006;
  box-shadow: 0 25px 80px rgba(124, 58, 237, 0.25), 0 10px 30px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-align: center;
  max-width: 520px;
  width: 90%;
  border: 1px solid rgba(124, 58, 237, 0.1);
}

.welcome-modal.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.welcome-modal-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.welcome-logo {
  margin-bottom: 20px;
  animation: welcome-pulse 2s ease-in-out infinite;
}

@keyframes welcome-pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.welcome-logo svg {
  filter: drop-shadow(0 4px 12px rgba(124, 58, 237, 0.3));
}

.welcome-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 16px 0;
  background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.welcome-taglines {
  margin-bottom: 20px;
}

.welcome-taglines p {
  font-size: 18px;
  font-weight: 600;
  color: #4c1d95;
  margin: 4px 0;
  letter-spacing: 0.5px;
}

.welcome-subtitle {
  font-size: 20px;
  font-weight: 600;
  color: #374151;
  margin: 0 0 12px 0;
}

.welcome-description {
  font-size: 16px;
  color: #6b7280;
  margin: 0 0 8px 0;
  font-style: italic;
}

.welcome-pilot {
  font-size: 14px;
  color: #9ca3af;
  margin: 0 0 28px 0;
  line-height: 1.5;
}

.welcome-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

.welcome-start-btn {
  background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
  color: white;
  border: none;
  padding: 16px 48px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
  letter-spacing: 0.5px;
}

.welcome-start-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.5);
  background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
}

.welcome-start-btn:active {
  transform: translateY(0);
}

.welcome-skip-btn {
  background: transparent;
  color: #6b7280;
  border: 2px solid #d1d5db;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.welcome-skip-btn:hover {
  border-color: #9ca3af;
  color: #4b5563;
  background: rgba(156, 163, 175, 0.1);
}

.welcome-skip-btn:active {
  transform: translateY(0);
}

/* Responsive styles for welcome modal */
@media (max-width: 640px) {
  .welcome-modal {
    padding: 32px 24px;
    max-width: 90%;
  }

  .welcome-title {
    font-size: 26px;
  }

  .welcome-taglines p {
    font-size: 16px;
  }

  .welcome-subtitle {
    font-size: 17px;
  }

  .welcome-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .welcome-start-btn {
    padding: 14px 36px;
    font-size: 16px;
  }

  .welcome-skip-btn {
    padding: 12px 28px;
    font-size: 14px;
  }
}
