/* Install prompt modal */

.install-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.install-modal {
  background: #101c22;
  border-radius: 20px;
  max-width: 400px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  border: 1px solid #1f2933;
}

.install-header {
  padding: 24px 24px 16px;
  text-align: center;
  border-bottom: 1px solid #1f2933;
}

.install-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: rgba(19, 164, 236, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.install-icon img {
  width: 28px;
  height: 28px;
  filter: invert(1);
}

.install-title {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.install-subtitle {
  font-size: 14px;
  color: #9ca3af;
  line-height: 1.4;
}

.install-content {
  padding: 24px;
}

.install-section {
  margin-bottom: 24px;
}

.install-section:last-child {
  margin-bottom: 0;
}

.install-section-title {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.install-platform-icon {
  font-size: 18px;
}

.install-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.install-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.install-step-number {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(19, 164, 236, 0.2);
  color: #13a4ec;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.install-step-text {
  flex: 1;
  font-size: 14px;
  color: #d1d5db;
  line-height: 1.5;
  padding-top: 2px;
}

.install-footer {
  padding: 16px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.install-btn {
  width: 100%;
  height: 48px;
  border-radius: 12px;
  border: none;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.install-btn-primary {
  background: #13a4ec;
  color: #ffffff;
}

.install-btn-primary:active {
  transform: scale(0.98);
}

.install-btn-secondary {
  background: transparent;
  color: #9ca3af;
  border: 1px solid #1f2933;
}

.install-btn-secondary:active {
  background: rgba(255, 255, 255, 0.05);
}